diff options
| author | Peter Collingbourne <peter@pcc.me.uk> | 2015-08-06 18:37:54 +0000 |
|---|---|---|
| committer | Peter Collingbourne <peter@pcc.me.uk> | 2015-08-06 18:37:54 +0000 |
| commit | 01101b7b5f215e40af0ad71495b32bb8508f4f07 (patch) | |
| tree | 6e1783b1e04d663883f40ecd5db3a073661640f9 /compiler-rt/test | |
| parent | 4c96a5ef1c3cc45105b3b4ea21bb0835f721bb5f (diff) | |
| download | bcm5719-llvm-01101b7b5f215e40af0ad71495b32bb8508f4f07.tar.gz bcm5719-llvm-01101b7b5f215e40af0ad71495b32bb8508f4f07.zip | |
test: Use lld-link instead of lld-link2 as the LTO linker on Windows.
The old COFF linker has been removed and lld-link now refers to the new linker.
llvm-svn: 244243
Diffstat (limited to 'compiler-rt/test')
| -rw-r--r-- | compiler-rt/test/lit.common.cfg | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/test/lit.common.cfg b/compiler-rt/test/lit.common.cfg index a204348e495..074865d19f4 100644 --- a/compiler-rt/test/lit.common.cfg +++ b/compiler-rt/test/lit.common.cfg @@ -125,7 +125,7 @@ def is_linux_lto_supported(): return True def is_windows_lto_supported(): - return os.path.exists(os.path.join(config.llvm_tools_dir, 'lld-link2.exe')) + return os.path.exists(os.path.join(config.llvm_tools_dir, 'lld-link.exe')) if config.host_os == 'Darwin' and is_darwin_lto_supported(): config.lto_supported = True @@ -138,7 +138,7 @@ elif config.host_os == 'Linux' and is_linux_lto_supported(): elif config.host_os == 'Windows' and is_windows_lto_supported(): config.lto_supported = True config.lto_launch = [] - config.lto_flags = ["-fuse-ld=lld-link2"] + config.lto_flags = ["-fuse-ld=lld"] else: config.lto_supported = False |

