summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouis Dionne <ldionne@apple.com>2019-02-06 18:33:02 +0000
committerLouis Dionne <ldionne@apple.com>2019-02-06 18:33:02 +0000
commit11b7c528853da85df5ca3dc17a230adeb9ca753c (patch)
tree8d36aecdc961871f9e24cb2013aa7bdccbc51e4f
parent8fb436e97ec2cdd0e0550f54bd7789fde6cb26a3 (diff)
downloadlibcxx-11b7c528853da85df5ca3dc17a230adeb9ca753c.tar.gz
Revert "[libc++] Only add dylib-related features when using the system's libc++"
This reverts r353319, which broke our internal CI. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@353321 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--utils/libcxx/test/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/libcxx/test/config.py b/utils/libcxx/test/config.py
index f086e6630..5c7f4c367 100644
--- a/utils/libcxx/test/config.py
+++ b/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")