summaryrefslogtreecommitdiff
path: root/polly/test
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2022-08-20 18:11:58 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2022-08-24 10:14:05 -0400
commitad8c34bc3089d847a09bb740f7a58c96073e0959 (patch)
treec6f6eb4a8e721925e87a1e6647a9fb3d26d2bf65 /polly/test
parent8e29f3f1c35a88f00a0290b0280468d04932eeb5 (diff)
downloadllvm-ad8c34bc3089d847a09bb740f7a58c96073e0959.tar.gz
[CMake] Avoid `LLVM_BINARY_DIR` when other more specific variable are better-suited
A simple sed doing these substitutions: - `${LLVM_BINARY_DIR}/(\$\{CMAKE_CFG_INTDIR}/)?lib(${LLVM_LIBDIR_SUFFIX})?\>` -> `${LLVM_LIBRARY_DIR}` - `${LLVM_BINARY_DIR}/(\$\{CMAKE_CFG_INTDIR}/)?bin\>` -> `${LLVM_TOOLS_BINARY_DIR}` where `\>` means "word boundary". The only manual modifications were reverting changes in - `compiler-rt/cmake/Modules/CompilerRTUtils.cmake - `runtimes/CMakeLists.txt` because these were "entry points" where we wanted to tread carefully not not introduce a "loop" which would end with an undefined variable being expanded to nothing. This hopefully increases readability overall, and also decreases the usages of `LLVM_LIBDIR_SUFFIX`, preparing us for D130586. Reviewed By: sebastian-ne Differential Revision: https://reviews.llvm.org/D132316
Diffstat (limited to 'polly/test')
-rw-r--r--polly/test/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/polly/test/CMakeLists.txt b/polly/test/CMakeLists.txt
index 358d7a561225..91923ef9f039 100644
--- a/polly/test/CMakeLists.txt
+++ b/polly/test/CMakeLists.txt
@@ -46,7 +46,7 @@ endif ()
set(LLVM_BINARY_DIR "${LLVM_BINARY_DIR}")
set(LLVM_TOOLS_DIR "${LLVM_TOOLS_BINARY_DIR}")
-set(LLVM_LIBS_DIR "${LLVM_BINARY_DIR}/lib${LLVM_LIBDIR_SUFFIX}")
+set(LLVM_LIBS_DIR "${LLVM_LIBRARY_DIR}")
if (CMAKE_LIBRARY_OUTPUT_DIRECTORY)
set(POLLY_LIB_DIR ${CMAKE_LIBRARY_OUTPUT_DIRECTORY})
else()