Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [libc++] Fix linker script generation | Petr Hosek | 2019-10-11 | 1 | -1/+3 |
| | | | | | | | | | | Handle the case when libc++abi and libunwind are being built together with libc++ in the runtimes build. This logic was used in the previous implementation but dropped in r374116. Differential Revision: https://reviews.llvm.org/D68791 llvm-svn: 374510 | ||||
* | [libc++] Workaround old versions of CMake that don't understand list(JOIN) | Louis Dionne | 2019-10-08 | 1 | -1/+1 |
| | | | | llvm-svn: 374120 | ||||
* | [libc++] Move the linker script generation step to CMake | Louis Dionne | 2019-10-08 | 1 | -0/+50 |
Summary: This allows the linker script generation to query CMake properties (specifically the dependencies of libc++.so) instead of having to carry these dependencies around manually in global variables. Notice the removal of the LIBCXX_INTERFACE_LIBRARIES global variable. Reviewers: phosek, EricWF Subscribers: mgorny, christof, jkorous, dexonsmith, libcxx-commits Tags: #libc Differential Revision: https://reviews.llvm.org/D68343 llvm-svn: 374116 |