[compiler-rt] [compiler-rt] Use installed libc++(abi) for tests instead of build tree (PR #115077)
Vincent Lee via llvm-commits
llvm-commits at lists.llvm.org
Thu Nov 7 11:37:29 PST 2024
================
@@ -680,15 +680,16 @@ macro(add_custom_libcxx name prefix)
ExternalProject_Add(${name}
DEPENDS ${name}-clobber ${LIBCXX_DEPS}
- PREFIX ${CMAKE_CURRENT_BINARY_DIR}/${name}
+ PREFIX ${prefix}
SOURCE_DIR ${LLVM_MAIN_SRC_DIR}/../runtimes
- BINARY_DIR ${prefix}
+ BINARY_DIR ${prefix}/build
----------------
thevinster wrote:
So adding the `/build` suffix is intended then? We're seeing issues where certain C++ headers aren't found and it looks like someone else has commented the same as well.
https://github.com/llvm/llvm-project/pull/115077
More information about the llvm-commits
mailing list