r192075 broke the buildbot at

http://lab.llvm.org:8013/builders/libcxx_clang-x86_64-darwin11-RA

lit.py: <string>:230: note: inferred use_system_lib as: False
lit.py: <string>:247: fatal: C++ ABI setting None unsupported for tests

cxx_abi is geting set to None, and the lit script errors out shortly after
that.  This patch changes the default of cxx_abi from None to 'libcxxabi'.
This is likely not the right way to fix this problem.  However it gets the
buildbot running again.  Improvements to this fix are welcome.

llvm-svn: 192609
This commit is contained in:
Howard Hinnant 2013-10-14 18:02:02 +00:00
parent 5cb7f4e3f2
commit 58af7e177c

View File

@ -234,7 +234,7 @@ link_flags_str = lit_config.params.get('link_flags', None)
if link_flags_str is None:
link_flags_str = getattr(config, 'link_flags', None)
if link_flags_str is None:
cxx_abi = getattr(config, 'cxx_abi', None)
cxx_abi = getattr(config, 'cxx_abi', 'libcxxabi')
if cxx_abi == 'libstdc++':
link_flags += ['-lstdc++']
elif cxx_abi == 'libsupc++':