diff options
author | Louis Dionne <ldionne@apple.com> | 2019-02-06 18:33:02 +0000 |
---|---|---|
committer | Louis Dionne <ldionne@apple.com> | 2019-02-06 18:33:02 +0000 |
commit | feeedafd28b913fbabc43ccc37c5c0b449a11863 (patch) | |
tree | ae72c2945b2c8197451ed1caf6d677b4be940286 | |
parent | 16471947f51917474d8b9b827a517c4aedaace6b (diff) | |
download | bcm5719-llvm-feeedafd28b913fbabc43ccc37c5c0b449a11863.tar.gz bcm5719-llvm-feeedafd28b913fbabc43ccc37c5c0b449a11863.zip |
Revert "[libc++] Only add dylib-related features when using the system's libc++"
This reverts r353319, which broke our internal CI.
llvm-svn: 353321
-rw-r--r-- | libcxx/utils/libcxx/test/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/utils/libcxx/test/config.py b/libcxx/utils/libcxx/test/config.py index f086e6630b1..5c7f4c3670a 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") |