[libcxx-commits] [PATCH] D113467: [libcxx] Add a dependency on unwind in cxx_static, if LIBCXXABI_USE_LLVM_UNWINDER is set
Louis Dionne via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Nov 9 05:24:56 PST 2021
ldionne requested changes to this revision.
ldionne added inline comments.
This revision now requires changes to proceed.
================
Comment at: libcxx/src/CMakeLists.txt:289-294
+ if (LIBCXXABI_USE_LLVM_UNWINDER)
+ # If we intend to use the just-built unwinder, add a dependency so that it
+ # gets built, even if we technically aren't going to link it in at this
+ # stage.
+ add_dependencies(cxx_static unwind)
+ endif()
----------------
Should we put that dependency on `check-cxx` instead? We could add it to `cxx-test-depends`.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D113467/new/
https://reviews.llvm.org/D113467
More information about the libcxx-commits
mailing list