mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-23 05:52:40 +00:00
Get the LLVMC tests working with clang++ by removing the problematic CXXFLAG in lit.
llvm-svn: 95318
This commit is contained in:
parent
37e451649c
commit
707c8c5e00
@ -114,6 +114,11 @@ for sub in ['llvmgcc', 'llvmgxx', 'compile_cxx', 'compile_c',
|
||||
if sub in ('llvmgcc', 'llvmgxx'):
|
||||
config.substitutions.append(('%' + sub,
|
||||
site_exp[sub] + ' -emit-llvm -w'))
|
||||
# FIXME: This is a hack to avoid LLVMC tests failing due to a clang driver
|
||||
# warning when passing in "-fexceptions -fno-exceptions".
|
||||
elif sub == 'compile_cxx':
|
||||
config.substitutions.append(('%' + sub,
|
||||
site_exp[sub].replace('-fno-exceptions', '')))
|
||||
else:
|
||||
config.substitutions.append(('%' + sub, site_exp[sub]))
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user