Don't force use of lld in tests on Windows

llvm-svn: 291987
This commit is contained in:
Eric Fiselier 2017-01-14 01:58:01 +00:00
parent a595b7f0f9
commit e3061a4065
1 changed files with 1 additions and 1 deletions

View File

@ -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(';')