Skip to content

Commit 2049fe5

Browse files
committedMar 19, 2021
[WoA][MSVC] Use default linker setting in MSVC-compatible driver [take 2]
At the moment "link.exe" is hard-coded as default linker in MSVC.cpp, so there's no way to use LLD as default linker for MSVC driver. This patch adds checking of CLANG_DEFAULT_LINKER to MSVC.cpp and updates unit-tests that expect link.exe linker to explicitly select it via -fuse-ld=link, so that buildbots and other builds that set -DCLANG_DEFAULT_LINKER=foobar don't fail these tests. This is a squash of - https://reviews.llvm.org/D98493 (MSVC.cpp change) and - https://reviews.llvm.org/D98862 (unit-tests change) Reviewed By: maxim-kuvyrkov Differential Revision: https://reviews.llvm.org/D98935
1 parent 04790d9 commit 2049fe5

File tree

7 files changed

+27
-23
lines changed

7 files changed

+27
-23
lines changed
 

‎clang/lib/Driver/ToolChains/MSVC.cpp

+5-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#include "Darwin.h"
1212
#include "clang/Basic/CharInfo.h"
1313
#include "clang/Basic/Version.h"
14+
#include "clang/Config/config.h"
1415
#include "clang/Driver/Compilation.h"
1516
#include "clang/Driver/Driver.h"
1617
#include "clang/Driver/DriverDiagnostic.h"
@@ -577,7 +578,10 @@ void visualstudio::Linker::ConstructJob(Compilation &C, const JobAction &JA,
577578
// translate 'lld' into 'lld-link', and in the case of the regular msvc
578579
// linker, we need to use a special search algorithm.
579580
llvm::SmallString<128> linkPath;
580-
StringRef Linker = Args.getLastArgValue(options::OPT_fuse_ld_EQ, "link");
581+
StringRef Linker
582+
= Args.getLastArgValue(options::OPT_fuse_ld_EQ, CLANG_DEFAULT_LINKER);
583+
if (Linker.empty())
584+
Linker = "link";
581585
if (Linker.equals_lower("lld"))
582586
Linker = "lld-link";
583587

‎clang/test/Driver/Xlinker-args.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
// LINUX: "--no-demangle" "-e" "_start" "one" "two" "three" "four" "-z" "five" "-r" {{.*}} "-T" "a.lds"
1818

1919
// Check that we forward '-Xlinker' and '-Wl,' on Windows.
20-
// RUN: %clang -target i686-pc-win32 -### \
20+
// RUN: %clang -target i686-pc-win32 -fuse-ld=link -### \
2121
// RUN: -Xlinker one -Wl,two %s 2>&1 | \
2222
// RUN: FileCheck -check-prefix=WIN %s
2323
// WIN: link.exe

‎clang/test/Driver/cl-inputs.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -50,16 +50,16 @@
5050
// RUN: %clang_cl -### /Tc - 2>&1 | FileCheck -check-prefix=STDINTc %s
5151
// STDINTc: "-x" "c"
5252

53-
// RUN: env LIB=%S/Inputs/cl-libs %clang_cl -### -- %s cl-test.lib 2>&1 | FileCheck -check-prefix=LIBINPUT %s
53+
// RUN: env LIB=%S/Inputs/cl-libs %clang_cl -fuse-ld=link -### -- %s cl-test.lib 2>&1 | FileCheck -check-prefix=LIBINPUT %s
5454
// LIBINPUT: link.exe"
5555
// LIBINPUT: "cl-test.lib"
5656

57-
// RUN: env LIB=%S/Inputs/cl-libs %clang_cl -### -- %s cl-test2.lib 2>&1 | FileCheck -check-prefix=LIBINPUT2 %s
57+
// RUN: env LIB=%S/Inputs/cl-libs %clang_cl -fuse-ld=link -### -- %s cl-test2.lib 2>&1 | FileCheck -check-prefix=LIBINPUT2 %s
5858
// LIBINPUT2: error: no such file or directory: 'cl-test2.lib'
5959
// LIBINPUT2: link.exe"
6060
// LIBINPUT2-NOT: "cl-test2.lib"
6161

62-
// RUN: %clang_cl -### -- %s /nonexisting.lib 2>&1 | FileCheck -check-prefix=LIBINPUT3 %s
62+
// RUN: %clang_cl -fuse-ld=link -### -- %s /nonexisting.lib 2>&1 | FileCheck -check-prefix=LIBINPUT3 %s
6363
// LIBINPUT3: error: no such file or directory: '/nonexisting.lib'
6464
// LIBINPUT3: link.exe"
6565
// LIBINPUT3-NOT: "/nonexisting.lib"

‎clang/test/Driver/cl-link-at-file.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
// RUN: echo /link bar.lib baz.lib > %t.args
99
// RUN: touch %t.obj
10-
// RUN: %clang_cl -### @%t.args -- %t.obj 2>&1 | FileCheck %s -check-prefix=ARGS
10+
// RUN: %clang_cl -fuse-ld=link -### @%t.args -- %t.obj 2>&1 | FileCheck %s -check-prefix=ARGS
1111
// If the "/link" option captures all remaining args beyond its response file,
1212
// it will also capture "--" and our input argument. In this case, Clang will
1313
// be clueless and will emit "argument unused" warnings. If PR17239 is properly

‎clang/test/Driver/cl-link.c

+11-11
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
// be interpreted as a command-line option, e.g. on Mac where %s is commonly
33
// under /Users.
44

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
77
// LINK: link.exe
88
// LINK: "foo"
99
// LINK: "bar"
1010
// LINK: "baz"
1111

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
1313
// ASAN: link.exe
1414
// ASAN: "-debug"
1515
// ASAN: "-incremental:no"
@@ -19,7 +19,7 @@
1919
// ASAN: "-wholearchive:{{.*}}clang_rt.asan_cxx-i386.lib"
2020
// ASAN: "{{.*}}cl-link{{.*}}.obj"
2121

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
2323
// ASAN-MD: link.exe
2424
// ASAN-MD: "-debug"
2525
// ASAN-MD: "-incremental:no"
@@ -29,27 +29,27 @@
2929
// ASAN-MD: "-wholearchive:{{.*}}clang_rt.asan_dynamic_runtime_thunk-i386.lib"
3030
// ASAN-MD: "{{.*}}cl-link{{.*}}.obj"
3131

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
3434
// DLL: link.exe
3535
// "-dll"
3636

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
3939
// ASAN-DLL: link.exe
4040
// ASAN-DLL: "-dll"
4141
// ASAN-DLL: "-debug"
4242
// ASAN-DLL: "-incremental:no"
4343
// ASAN-DLL: "{{.*}}clang_rt.asan_dll_thunk-i386.lib"
4444
// ASAN-DLL: "{{.*}}cl-link{{.*}}.obj"
4545

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
4747
// DEBUG: link.exe
4848
// DEBUG: "-debug"
4949

5050
// 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
5353
// NONEXISTENT-NOT: no such file
5454
// NONEXISTENT: link.exe
5555
// NONEXISTENT: "/libpath:somepath"

‎clang/test/Driver/msvc-link.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
// RUN: %clang -target i686-pc-windows-msvc -### %s 2>&1 | FileCheck --check-prefix=BASIC %s
1+
// RUN: %clang -target i686-pc-windows-msvc -fuse-ld=link -### %s 2>&1 | FileCheck --check-prefix=BASIC %s
22
// BASIC: link.exe"
33
// BASIC: "-out:a.exe"
44
// BASIC: "-defaultlib:libcmt"
55
// BASIC: "-defaultlib:oldnames"
66
// BASIC: "-nologo"
77
// BASIC-NOT: "-Brepro"
88

9-
// RUN: %clang -target i686-pc-windows-msvc -shared -o a.dll -### %s 2>&1 | FileCheck --check-prefix=DLL %s
9+
// RUN: %clang -target i686-pc-windows-msvc -shared -o a.dll -fuse-ld=link -### %s 2>&1 | FileCheck --check-prefix=DLL %s
1010
// DLL: link.exe"
1111
// DLL: "-out:a.dll"
1212
// DLL: "-defaultlib:libcmt"
@@ -19,13 +19,13 @@
1919
// LIBPATH: "-libpath:/usr/lib"
2020
// LIBPATH: "-nologo"
2121

22-
// RUN: %clang_cl /Brepro -### -- %s 2>&1 | FileCheck --check-prefix=REPRO %s
22+
// RUN: %clang_cl /Brepro -fuse-ld=link -### -- %s 2>&1 | FileCheck --check-prefix=REPRO %s
2323
// REPRO: link.exe"
2424
// REPRO: "-out:msvc-link.exe"
2525
// REPRO: "-nologo"
2626
// REPRO: "-Brepro"
2727

28-
// RUN: %clang_cl /Brepro- -### -- %s 2>&1 | FileCheck --check-prefix=NOREPRO %s
28+
// RUN: %clang_cl /Brepro- -fuse-ld=link -### -- %s 2>&1 | FileCheck --check-prefix=NOREPRO %s
2929
// NOREPRO: link.exe"
3030
// NOREPRO: "-out:msvc-link.exe"
3131
// NOREPRO: "-nologo"

‎clang/test/OpenMP/linking.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
// CHECK-LD-OVERRIDE-64: "-lgomp" "-lrt"
8282
// CHECK-LD-OVERRIDE-64: "-lpthread" "-lc"
8383
//
84-
// RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
84+
// RUN: %clang -no-canonical-prefixes -fuse-ld=link %s -### -o %t.o 2>&1 \
8585
// RUN: -fopenmp=libomp -target x86_64-msvc-win32 -rtlib=platform \
8686
// RUN: | FileCheck --check-prefix=CHECK-MSVC-LINK-64 %s
8787
// CHECK-MSVC-LINK-64: link.exe
@@ -95,7 +95,7 @@
9595
// SIMD-ONLY11-NOT: libomp
9696
// SIMD-ONLY11-NOT: libgomp
9797
//
98-
// RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
98+
// RUN: %clang -no-canonical-prefixes %s -fuse-ld=link -### -o %t.o 2>&1 \
9999
// RUN: -fopenmp=libiomp5 -target x86_64-msvc-win32 -rtlib=platform \
100100
// RUN: | FileCheck --check-prefix=CHECK-MSVC-ILINK-64 %s
101101

0 commit comments

Comments
 (0)
Please sign in to comment.