[libcxx-commits] [libcxx] r353321 - Revert "[libc++] Only add dylib-related features when using the system's libc++"

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Wed Feb 6 10:33:02 PST 2019


Author: ldionne
Date: Wed Feb  6 10:33:02 2019
New Revision: 353321

URL: http://llvm.org/viewvc/llvm-project?rev=353321&view=rev
Log:
Revert "[libc++] Only add dylib-related features when using the system's libc++"

This reverts r353319, which broke our internal CI.

Modified:
    libcxx/trunk/utils/libcxx/test/config.py

Modified: libcxx/trunk/utils/libcxx/test/config.py
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/utils/libcxx/test/config.py?rev=353321&r1=353320&r2=353321&view=diff
==============================================================================
--- libcxx/trunk/utils/libcxx/test/config.py (original)
+++ libcxx/trunk/utils/libcxx/test/config.py Wed Feb  6 10:33:02 2019
@@ -1145,7 +1145,7 @@ class Configuration(object):
 
         # Throwing bad_optional_access, bad_variant_access and bad_any_cast is
         # supported starting in macosx10.14.
-        if self.get_lit_conf('use_system_cxx_lib') and name == 'macosx' and version in ('10.%s' % v for v in range(7, 14)):
+        if name == 'macosx' and version in ('10.%s' % v for v in range(7, 14)):
             self.config.available_features.add('dylib-has-no-bad_optional_access')
             self.lit_config.note("throwing bad_optional_access is not supported by the deployment target")
 




More information about the libcxx-commits mailing list