From 71b52152a93342fedf1f3b25f3830b9c17b958d9 Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Mon, 14 Oct 2013 18:02:02 +0000 Subject: [PATCH] r192075 broke the buildbot at http://lab.llvm.org:8013/builders/libcxx_clang-x86_64-darwin11-RA lit.py: :230: note: inferred use_system_lib as: False lit.py: :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. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@192609 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/lit.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/lit.cfg b/test/lit.cfg index b07046b4..aa454397 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -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++':