From cdffd529471b538f75a201002eb6a3bf1335483a Mon Sep 17 00:00:00 2001 From: Eric Fiselier Date: Sat, 14 Jan 2017 01:58:01 +0000 Subject: [PATCH] Don't force use of lld in tests on Windows git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@291987 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/libcxx/test/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/libcxx/test/config.py b/test/libcxx/test/config.py index bf17ab2f1..3c00a8b95 100644 --- a/test/libcxx/test/config.py +++ b/test/libcxx/test/config.py @@ -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(';')