diff options
author | Shoaib Meenai <smeenai@fb.com> | 2017-10-09 19:25:17 +0000 |
---|---|---|
committer | Shoaib Meenai <smeenai@fb.com> | 2017-10-09 19:25:17 +0000 |
commit | 492d7134f3bdd76415d8e7b20a4f1c9a42b85e44 (patch) | |
tree | 27a915541601915c1d3750813fb945ad776f5f6c /libcxx/utils | |
parent | 6ab4d075ff40675af20ffc4124d1dc03609518fe (diff) | |
download | bcm5719-llvm-492d7134f3bdd76415d8e7b20a4f1c9a42b85e44.tar.gz bcm5719-llvm-492d7134f3bdd76415d8e7b20a4f1c9a42b85e44.zip |
[libc++] Support Microsoft ABI without vcruntime headers
The vcruntime headers are hairy and clash with both libc++ headers
themselves and other libraries. libc++ normally deals with the clashes
by deferring to the vcruntime headers and silencing its own definitions,
but for clients which don't want to depend on vcruntime headers, it's
desirable to support the opposite, i.e. have libc++ provide its own
definitions.
Certain operator new/delete replacement scenarios are not currently
supported in this mode, which requires some tests to be marked XFAIL.
The added documentation has more details.
Differential Revision: https://reviews.llvm.org/D38522
llvm-svn: 315234
Diffstat (limited to 'libcxx/utils')
-rw-r--r-- | libcxx/utils/libcxx/test/config.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libcxx/utils/libcxx/test/config.py b/libcxx/utils/libcxx/test/config.py index 6f88a3540a1..67927c9125a 100644 --- a/libcxx/utils/libcxx/test/config.py +++ b/libcxx/utils/libcxx/test/config.py @@ -668,6 +668,9 @@ class Configuration(object): self.config.available_features.add('libcpp-abi-version-v%s' % feature_macros[m]) continue + if m == '_LIBCPP_NO_VCRUNTIME': + self.config.available_features.add('libcpp-no-vcruntime') + continue assert m.startswith('_LIBCPP_HAS_') or m.startswith('_LIBCPP_ABI_') m = m.lower()[1:].replace('_', '-') self.config.available_features.add(m) |