diff options
author | Nikolas Klauser <nikolasklauser@berlin.de> | 2023-04-16 22:31:25 +0200 |
---|---|---|
committer | Nikolas Klauser <nikolasklauser@berlin.de> | 2023-04-21 05:31:07 +0200 |
commit | 7d98590b3a23645584779a1036d319082f3be7c9 (patch) | |
tree | 139f9744beb4f9c843c5c8cd48e39f10aaa1dcff /libcxxabi | |
parent | 0304aa25e0be5f322a76d16c6b6069eb9e153430 (diff) | |
download | llvm-7d98590b3a23645584779a1036d319082f3be7c9.zip llvm-7d98590b3a23645584779a1036d319082f3be7c9.tar.gz llvm-7d98590b3a23645584779a1036d319082f3be7c9.tar.bz2 |
[libc++][PSTL] Remove current integration
We decided to go a different route. To make the switch easier, rip out the old integration first and build on a clean base.
Reviewed By: ldionne, #libc, #libc_abi
Spies: arichardson, libcxx-commits
Differential Revision: https://reviews.llvm.org/D148480
Diffstat (limited to 'libcxxabi')
-rw-r--r-- | libcxxabi/src/CMakeLists.txt | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/libcxxabi/src/CMakeLists.txt b/libcxxabi/src/CMakeLists.txt index 4c27a25..54002ba 100644 --- a/libcxxabi/src/CMakeLists.txt +++ b/libcxxabi/src/CMakeLists.txt @@ -154,10 +154,6 @@ if (LLVM_ENABLE_MODULES) string(REPLACE "-Wl,-z,defs" "" CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS}") endif() -if (NOT TARGET pstl::ParallelSTL) - message(STATUS "Could not find ParallelSTL, libc++abi will not attempt to use it but the build may fail if the libc++ in use needs it to be available.") -endif() - include(WarningFlags) # Build the shared library. @@ -208,9 +204,6 @@ if (LIBCXXABI_ENABLE_SHARED) target_link_libraries(cxxabi_shared PUBLIC cxxabi_shared_objects PRIVATE ${LIBCXXABI_SHARED_LIBRARIES} ${LIBCXXABI_LIBRARIES}) - if (TARGET pstl::ParallelSTL) - target_link_libraries(cxxabi_shared PUBLIC pstl::ParallelSTL) - endif() list(APPEND LIBCXXABI_BUILD_TARGETS "cxxabi_shared") if (LIBCXXABI_INSTALL_SHARED_LIBRARY) @@ -294,9 +287,6 @@ if (LIBCXXABI_ENABLE_STATIC) target_link_libraries(cxxabi_static PUBLIC cxxabi_static_objects PRIVATE ${LIBCXXABI_STATIC_LIBRARIES} ${LIBCXXABI_LIBRARIES}) - if (TARGET pstl::ParallelSTL) - target_link_libraries(cxxabi_static PUBLIC pstl::ParallelSTL) - endif() list(APPEND LIBCXXABI_BUILD_TARGETS "cxxabi_static") if (LIBCXXABI_INSTALL_STATIC_LIBRARY) |