OSDN Git Service

[libc++] Include <__config_site> from <__config>
authorLouis Dionne <ldionne@apple.com>
Fri, 26 Jun 2020 16:08:59 +0000 (12:08 -0400)
committerLouis Dionne <ldionne@apple.com>
Wed, 21 Oct 2020 12:46:57 +0000 (08:46 -0400)
commit1e46d1aa3f9b618e8db32af5c855fbc386a950aa
tree50523d30a094f58360514253396a068ea7ccc7ce
parent1606755da0e4fb362c88fdf02373f0dc3e4eef8f
[libc++] Include <__config_site> from <__config>

Prior to this patch, we would generate a fancy <__config> header by
concatenating <__config_site> and <__config>. This complexifies the
build system and also increases the difference between what's tested
and what's actually installed.

This patch removes that complexity and instead simply installs <__config_site>
alongside the libc++ headers. <__config_site> is then included by <__config>,
which is much simpler. Doing this also opens the door to having different
<__config_site> headers depending on the target, which was impossible before.

It does change the workflow for testing header-only changes to libc++.
Previously, we would run `lit` against the headers in libcxx/include.
After this patch, we run it against a fake installation root of the
headers (containing a proper <__config_site> header). This makes use
closer to testing what we actually install, which is good, however it
does mean that we have to update that root before testing header changes.
Thus, we now need to run `ninja check-cxx-deps` before running `lit` by
hand.

Differential Revision: https://reviews.llvm.org/D89041
libcxx/CMakeLists.txt
libcxx/docs/TestingLibcxx.rst
libcxx/include/CMakeLists.txt
libcxx/include/__config
libcxx/test/configs/legacy.cfg.in
libcxx/utils/libcxx/test/config.py
libcxxabi/src/CMakeLists.txt