[libcxx] r291987 - Don't force use of lld in tests on Windows
Eric Fiselier via cfe-commits
cfe-commits at lists.llvm.org
Fri Jan 13 17:58:02 PST 2017
Author: ericwf
Date: Fri Jan 13 19:58:01 2017
New Revision: 291987
URL: http://llvm.org/viewvc/llvm-project?rev=291987&view=rev
Log:
Don't force use of lld in tests on Windows
Modified:
libcxx/trunk/test/libcxx/test/config.py
Modified: libcxx/trunk/test/libcxx/test/config.py
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/test/config.py?rev=291987&r1=291986&r2=291987&view=diff
==============================================================================
--- libcxx/trunk/test/libcxx/test/config.py (original)
+++ libcxx/trunk/test/libcxx/test/config.py Fri Jan 13 19:58:01 2017
@@ -219,7 +219,7 @@ class Configuration(object):
# FIXME: don't hardcode the target
flags = ['--target=i686-pc-windows']
compile_flags = []
- link_flags = ['-fuse-ld=lld']
+ link_flags = []
if 'INCLUDE' in os.environ:
compile_flags += ['-isystem %s' % p.strip()
for p in os.environ['INCLUDE'].split(';')
More information about the cfe-commits
mailing list