File: toolchain-msvc.test

package info (click to toggle)
swiftlang 6.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,519,992 kB
  • sloc: cpp: 9,107,863; ansic: 2,040,022; asm: 1,135,751; python: 296,500; objc: 82,456; f90: 60,502; lisp: 34,951; pascal: 19,946; sh: 18,133; perl: 7,482; ml: 4,937; javascript: 4,117; makefile: 3,840; awk: 3,535; xml: 914; fortran: 619; cs: 573; ruby: 573
file content (62 lines) | stat: -rw-r--r-- 2,440 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
REQUIRES: system-windows, msvc

RUN: %build -n --verbose --arch=32 --compiler=msvc --mode=compile-and-link -o %t/foo.exe foobar.c \
RUN:    | FileCheck --check-prefix=32BIT %s

RUN: %build -n --verbose --arch=64 --compiler=msvc --mode=compile-and-link -o %t/foo.exe foobar.c \
RUN:    | FileCheck --check-prefix=64BIT %s

32BIT: Script Arguments:
32BIT:   Arch: 32
32BIT:   Compiler: msvc
32BIT:   Outdir: {{.*}}
32BIT:   Output: {{.*}}toolchain-msvc.test.tmp\foo.exe
32BIT:   Nodefaultlib: False
32BIT:   Opt: none
32BIT:   Mode: compile
32BIT:   Clean: True
32BIT:   Verbose: True
32BIT:   Dryrun: True
32BIT:   Inputs: foobar.c
32BIT: Cleaning {{.*}}toolchain-msvc.test.tmp\foobar.ilk
32BIT: Cleaning {{.*}}toolchain-msvc.test.tmp\foo.exe-foobar.obj
32BIT: Cleaning {{.*}}toolchain-msvc.test.tmp\foo.pdb
32BIT: Cleaning {{.*}}toolchain-msvc.test.tmp\foo.exe
32BIT: compiling foobar.c -> foo.exe-foobar.obj
32BIT:   Command Line: {{.*}}\{{[Hh]ost[Xx](64|86)}}\{{(x86|arm)}}\cl.{{EXE|exe}}
32BIT: linking foo.exe-foobar.obj -> foo.exe
32BIT:   Command Line: {{.*}}\{{[Hh]ost[Xx](64|86)}}\{{(x86|arm)}}\link.{{EXE|exe}}
32BIT:   Env
32BIT:     LIB = {{.*}}\ATLMFC\lib\{{(x86|arm)}}
32BIT:           {{.*}}\lib\{{(x86|arm)}}
32BIT:           {{.*}}\ucrt\{{(x86|arm)}}
32BIT:           {{.*}}\um\{{(x86|arm)}}
32BIT:     PATH = {{.*}}\bin\{{[Hh]ost[Xx](64|86)}}\{{(x86|x64)}}


64BIT: Script Arguments:
64BIT:   Arch: 64
64BIT:   Compiler: msvc
64BIT:   Outdir: {{.*}}
64BIT:   Output: {{.*}}toolchain-msvc.test.tmp\foo.exe
64BIT:   Nodefaultlib: False
64BIT:   Opt: none
64BIT:   Mode: compile
64BIT:   Clean: True
64BIT:   Verbose: True
64BIT:   Dryrun: True
64BIT:   Inputs: foobar.c
64BIT: Cleaning {{.*}}toolchain-msvc.test.tmp\foobar.ilk
64BIT: Cleaning {{.*}}toolchain-msvc.test.tmp\foo.exe-foobar.obj
64BIT: Cleaning {{.*}}toolchain-msvc.test.tmp\foo.pdb
64BIT: Cleaning {{.*}}toolchain-msvc.test.tmp\foo.exe
64BIT: compiling foobar.c -> foo.exe-foobar.obj
64BIT:   Command Line: {{.*}}\{{[Hh]ost[Xx](64|86)}}\{{(x64|arm64)}}\cl.{{EXE|exe}}
64BIT: linking foo.exe-foobar.obj -> foo.exe
64BIT:   Command Line: {{.*}}\{{[Hh]ost[Xx](64|86)}}\{{(x64|arm64)}}\link.{{EXE|exe}}
64BIT:   Env
64BIT:     LIB = {{.*}}\ATLMFC\lib\{{(x64|arm64)}}
64BIT:           {{.*}}\lib\{{(x64|arm64)}}
64BIT:           {{.*}}\ucrt\{{(x64|arm64)}}
64BIT:           {{.*}}\um\{{(x64|arm64)}}
64BIT:     PATH = {{.*}}\bin\{{[Hh]ost[Xx](64|86)}}\{{(x86|x64)}}