forked from OSchip/llvm-project
1285e4d60e
This patch re-commits a previous attempt to support building libc++ w/o an ABI library. That patch was originally reverted because: 1) It forgot to teach the test suite about "default" ABI libraries. 2) Some LLVM builders don't clear the CMake cache between builds. The previous patch caused those builders to fail since their old cache entry for LIBCXX_CXX_ABI="" is no longer valid. The updated patch addresses both issues. It works around (2) by adding a hack to force the builders to update their cache entries. The hack will be removed shortly once all LLVM builders have run. Original commit message ----------------------- Typically libc++ uses libc++abi or libcxxrt to provide the ABI and runtime bits of the C++ STL. However we also support building w/o an ABI library entirely. This patch fixes building libc++ w/o an ABI library (and incorporates the `~type_info()` fix in D28211). The main changes in this patch are: 1) Add `-DLIBCXX_CXX_ABI=default` instead of using the empty string to mean "default". 2) Fix CMake bits which treated "none" as "default" on OS X. 3) Teach the source files to respect `-D_LIBCPP_BUILDING_HAS_NO_ABI_LIBRARY`. 4) Define ~type_info() when _LIBCPP_BUILDING_HAS_NO_ABI_LIBRARY is defined. Unfortunately this patch doesn't help clean up the macro mess that we use to configure for different ABI libraries. llvm-svn: 290849 |
||
---|---|---|
.. | ||
3.9 | ||
CHANGELOG.TXT | ||
CMakeLists.txt | ||
README.TXT | ||
x86_64-apple-darwin16.0.0.abilist | ||
x86_64-unknown-linux-gnu.abilist |
README.TXT
This directory contains abi lists representing the symbols exported by the libc++ library. The lists are generated using sym_extract.py. Every time a symbol is added or removed from the libc++ library each of the lists *MUST* be updated to reflect the changes. TODO Add more documentation about generating and using the lists. TODO Add more documentation about the build configuration the lists are generated against.