Files
clang-p2996/lldb/lit/BuildScript/toolchain-msvc.test
Zachary Turner cb6788d7b3 [build.py] A few general improvements.
This makes -mode=compile support multiple inputs (and hence
multiple outputs).

It also makes the value of -arch for compiling inferiors default
to the architecture that LLDB is built in.  This can still be
overridden however.

Differential Revision: https://reviews.llvm.org/D55230

llvm-svn: 348305
2018-12-04 21:48:27 +00:00

63 lines
2.1 KiB
Plaintext

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=X86 %s
RUN: %build -n --verbose --arch=64 --compiler=msvc --mode=compile-and-link -o %t/foo.exe foobar.c \
RUN: | FileCheck --check-prefix=X64 %s
X86: Script Arguments:
X86: Arch: 32
X86: Compiler: msvc
X86: Outdir: {{.*}}
X86: Output: {{.*}}toolchain-msvc.test.tmp\foo.exe
X86: Nodefaultlib: False
X86: Opt: none
X86: Mode: compile
X86: Clean: True
X86: Verbose: True
X86: Dryrun: True
X86: Inputs: foobar.c
X86: Cleaning {{.*}}toolchain-msvc.test.tmp\foobar.ilk
X86: Cleaning {{.*}}toolchain-msvc.test.tmp\foobar.obj
X86: Cleaning {{.*}}toolchain-msvc.test.tmp\foo.pdb
X86: Cleaning {{.*}}toolchain-msvc.test.tmp\foo.exe
X86: compiling foobar.c -> foobar.obj
X86: Command Line: {{.*}}\{{[Hh]ost[Xx]64}}\x86\cl.exe
X86: linking foobar.obj -> foo.exe
X86: Command Line: {{.*}}\{{[Hh]ost[Xx]64}}\x86\link.exe
X86: Env
X86: LIB = {{.*}}\ATLMFC\lib\x86
X86: {{.*}}\lib\x86
X86: {{.*}}\ucrt\x86
X86: {{.*}}\um\x86
X86: PATH = {{.*}}\bin\{{[Hh]ost[Xx]64}}\x64
X64: Script Arguments:
X64: Arch: 64
X64: Compiler: msvc
X64: Outdir: {{.*}}
X64: Output: {{.*}}toolchain-msvc.test.tmp\foo.exe
X64: Nodefaultlib: False
X64: Opt: none
X64: Mode: compile
X64: Clean: True
X64: Verbose: True
X64: Dryrun: True
X64: Inputs: foobar.c
X64: Cleaning {{.*}}toolchain-msvc.test.tmp\foobar.ilk
X64: Cleaning {{.*}}toolchain-msvc.test.tmp\foobar.obj
X64: Cleaning {{.*}}toolchain-msvc.test.tmp\foo.pdb
X64: Cleaning {{.*}}toolchain-msvc.test.tmp\foo.exe
X64: compiling foobar.c -> foobar.obj
X64: Command Line: {{.*}}\{{[Hh]ost[Xx]64}}\x64\cl.exe
X64: linking foobar.obj -> foo.exe
X64: Command Line: {{.*}}\{{[Hh]ost[Xx]64}}\x64\link.exe
X64: Env
X64: LIB = {{.*}}\ATLMFC\lib\x64
X64: {{.*}}\lib\x64
X64: {{.*}}\ucrt\x64
X64: {{.*}}\um\x64
X64: PATH = {{.*}}\bin\{{[Hh]ost[Xx]64}}\x64