[libcxx-commits] [PATCH] D68343: [libc++] Move the linker script generation step to CMake
Petr Hosek via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Oct 9 15:34:17 PDT 2019
phosek added a comment.
This seems to have broke our build, I checked the generated linker script and it has the following format:
INPUT(libc++.so.2 -lunwind_shared -lcxxabi_shared)
libunwind and libc++abi dependencies are incorrect, it should be:
INPUT(libc++.so.2 -lunwind -lc++abi)
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D68343/new/
https://reviews.llvm.org/D68343
More information about the libcxx-commits
mailing list