From feeedafd28b913fbabc43ccc37c5c0b449a11863 Mon Sep 17 00:00:00 2001 From: Louis Dionne Date: Wed, 6 Feb 2019 18:33:02 +0000 Subject: [PATCH] Revert "[libc++] Only add dylib-related features when using the system's libc++" This reverts r353319, which broke our internal CI. llvm-svn: 353321 --- libcxx/utils/libcxx/test/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcxx/utils/libcxx/test/config.py b/libcxx/utils/libcxx/test/config.py index f086e6630b17..5c7f4c3670aa 100644 --- a/libcxx/utils/libcxx/test/config.py +++ b/libcxx/utils/libcxx/test/config.py @@ -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")