[libcxx-commits] [libcxx] fda692b - [libc++] Remove outdated setting of LIBCXX_CXX_ABI_LIBRARY_PATH (#100631)
via libcxx-commits
libcxx-commits at lists.llvm.org
Fri Jul 26 07:54:50 PDT 2024
Author: Louis Dionne
Date: 2024-07-26T10:54:47-04:00
New Revision: fda692beab2963fd4659dcef0d129a1ff1bde17f
URL: https://github.com/llvm/llvm-project/commit/fda692beab2963fd4659dcef0d129a1ff1bde17f
DIFF: https://github.com/llvm/llvm-project/commit/fda692beab2963fd4659dcef0d129a1ff1bde17f.diff
LOG: [libc++] Remove outdated setting of LIBCXX_CXX_ABI_LIBRARY_PATH (#100631)
LIBCXX_CXX_ABI_LIBRARY_PATH is used to determine the path of the ABI
library in use. It shouldn't be necessary to set it explicitly in order
to run the tests, since the test suite has its own configuration
mechanism.
Added:
Modified:
libcxx/test/CMakeLists.txt
Removed:
################################################################################
diff --git a/libcxx/test/CMakeLists.txt b/libcxx/test/CMakeLists.txt
index f8e186c59150a..7440ffa749e69 100644
--- a/libcxx/test/CMakeLists.txt
+++ b/libcxx/test/CMakeLists.txt
@@ -1,12 +1,6 @@
include(HandleLitArguments)
add_subdirectory(tools)
-# By default, libcxx and libcxxabi share a library directory.
-if (NOT LIBCXX_CXX_ABI_LIBRARY_PATH)
- set(LIBCXX_CXX_ABI_LIBRARY_PATH "${LIBCXX_LIBRARY_DIR}" CACHE PATH
- "The path to libc++abi library.")
-endif()
-
set(AUTO_GEN_COMMENT "## Autogenerated by libcxx configuration.\n# Do not edit!")
set(SERIALIZED_LIT_PARAMS "# Lit parameters serialized here for llvm-lit to pick them up\n")
More information about the libcxx-commits
mailing list