|
2 | 2 | // be interpreted as a command-line option, e.g. on Mac where %s is commonly
|
3 | 3 | // under /Users.
|
4 | 4 |
|
5 |
| -// RUN: %clang_cl /Tc%s -### /link foo bar baz 2>&1 | FileCheck --check-prefix=LINK %s |
6 |
| -// RUN: %clang_cl /Tc%s -### /linkfoo bar baz 2>&1 | FileCheck --check-prefix=LINK %s |
| 5 | +// RUN: %clang_cl /Tc%s -fuse-ld=link -### /link foo bar baz 2>&1 | FileCheck --check-prefix=LINK %s |
| 6 | +// RUN: %clang_cl /Tc%s -fuse-ld=link -### /linkfoo bar baz 2>&1 | FileCheck --check-prefix=LINK %s |
7 | 7 | // LINK: link.exe
|
8 | 8 | // LINK: "foo"
|
9 | 9 | // LINK: "bar"
|
10 | 10 | // LINK: "baz"
|
11 | 11 |
|
12 |
| -// RUN: %clang_cl -m32 -arch:IA32 --target=i386-pc-win32 /Tc%s -### -fsanitize=address 2>&1 | FileCheck --check-prefix=ASAN %s |
| 12 | +// RUN: %clang_cl -m32 -arch:IA32 --target=i386-pc-win32 /Tc%s -fuse-ld=link -### -fsanitize=address 2>&1 | FileCheck --check-prefix=ASAN %s |
13 | 13 | // ASAN: link.exe
|
14 | 14 | // ASAN: "-debug"
|
15 | 15 | // ASAN: "-incremental:no"
|
|
19 | 19 | // ASAN: "-wholearchive:{{.*}}clang_rt.asan_cxx-i386.lib"
|
20 | 20 | // ASAN: "{{.*}}cl-link{{.*}}.obj"
|
21 | 21 |
|
22 |
| -// RUN: %clang_cl -m32 -arch:IA32 --target=i386-pc-win32 /MD /Tc%s -### -fsanitize=address 2>&1 | FileCheck --check-prefix=ASAN-MD %s |
| 22 | +// RUN: %clang_cl -m32 -arch:IA32 --target=i386-pc-win32 /MD /Tc%s -fuse-ld=link -### -fsanitize=address 2>&1 | FileCheck --check-prefix=ASAN-MD %s |
23 | 23 | // ASAN-MD: link.exe
|
24 | 24 | // ASAN-MD: "-debug"
|
25 | 25 | // ASAN-MD: "-incremental:no"
|
|
29 | 29 | // ASAN-MD: "-wholearchive:{{.*}}clang_rt.asan_dynamic_runtime_thunk-i386.lib"
|
30 | 30 | // ASAN-MD: "{{.*}}cl-link{{.*}}.obj"
|
31 | 31 |
|
32 |
| -// RUN: %clang_cl /LD -### /Tc%s 2>&1 | FileCheck --check-prefix=DLL %s |
33 |
| -// RUN: %clang_cl /LDd -### /Tc%s 2>&1 | FileCheck --check-prefix=DLL %s |
| 32 | +// RUN: %clang_cl /LD -fuse-ld=link -### /Tc%s 2>&1 | FileCheck --check-prefix=DLL %s |
| 33 | +// RUN: %clang_cl /LDd -fuse-ld=link -### /Tc%s 2>&1 | FileCheck --check-prefix=DLL %s |
34 | 34 | // DLL: link.exe
|
35 | 35 | // "-dll"
|
36 | 36 |
|
37 |
| -// RUN: %clang_cl -m32 -arch:IA32 --target=i386-pc-win32 /LD /Tc%s -### -fsanitize=address 2>&1 | FileCheck --check-prefix=ASAN-DLL %s |
38 |
| -// RUN: %clang_cl -m32 -arch:IA32 --target=i386-pc-win32 /LDd /Tc%s -### -fsanitize=address 2>&1 | FileCheck --check-prefix=ASAN-DLL %s |
| 37 | +// RUN: %clang_cl -m32 -arch:IA32 --target=i386-pc-win32 /LD /Tc%s -fuse-ld=link -### -fsanitize=address 2>&1 | FileCheck --check-prefix=ASAN-DLL %s |
| 38 | +// RUN: %clang_cl -m32 -arch:IA32 --target=i386-pc-win32 /LDd /Tc%s -fuse-ld=link -### -fsanitize=address 2>&1 | FileCheck --check-prefix=ASAN-DLL %s |
39 | 39 | // ASAN-DLL: link.exe
|
40 | 40 | // ASAN-DLL: "-dll"
|
41 | 41 | // ASAN-DLL: "-debug"
|
42 | 42 | // ASAN-DLL: "-incremental:no"
|
43 | 43 | // ASAN-DLL: "{{.*}}clang_rt.asan_dll_thunk-i386.lib"
|
44 | 44 | // ASAN-DLL: "{{.*}}cl-link{{.*}}.obj"
|
45 | 45 |
|
46 |
| -// RUN: %clang_cl /Zi /Tc%s -### 2>&1 | FileCheck --check-prefix=DEBUG %s |
| 46 | +// RUN: %clang_cl /Zi /Tc%s -fuse-ld=link -### 2>&1 | FileCheck --check-prefix=DEBUG %s |
47 | 47 | // DEBUG: link.exe
|
48 | 48 | // DEBUG: "-debug"
|
49 | 49 |
|
50 | 50 | // PR27234
|
51 |
| -// RUN: %clang_cl /Tc%s nonexistent.obj -### /link /libpath:somepath 2>&1 | FileCheck --check-prefix=NONEXISTENT %s |
52 |
| -// RUN: %clang_cl /Tc%s nonexistent.lib -### /link /libpath:somepath 2>&1 | FileCheck --check-prefix=NONEXISTENT %s |
| 51 | +// RUN: %clang_cl /Tc%s nonexistent.obj -fuse-ld=link -### /link /libpath:somepath 2>&1 | FileCheck --check-prefix=NONEXISTENT %s |
| 52 | +// RUN: %clang_cl /Tc%s nonexistent.lib -fuse-ld=link -### /link /libpath:somepath 2>&1 | FileCheck --check-prefix=NONEXISTENT %s |
53 | 53 | // NONEXISTENT-NOT: no such file
|
54 | 54 | // NONEXISTENT: link.exe
|
55 | 55 | // NONEXISTENT: "/libpath:somepath"
|
|
0 commit comments