You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
435 B
12 lines
435 B
RUN: %build -n --mode=compile --verbose --arch=64 --compiler=/path/to/my/clang \
|
|
RUN: -o foo foobar.c | FileCheck %s --check-prefix=CHECK-CLANG
|
|
RUN: %build -n --mode=compile --verbose --arch=64 \
|
|
RUN: --compiler=/path/to/my/x64/cl.exe -o foo foobar.c | \
|
|
RUN: FileCheck %s --check-prefix=CHECK-MSVC
|
|
|
|
CHECK-CLANG: Command Line: /path/to/my/clang
|
|
CHECK-SAME: -o
|
|
|
|
CHECK-MSVC: Command Line: /path/to/my/x64/cl.exe
|
|
CHECK-SAME: /Fo
|