[clang] 0f8b995 - [clang] Fix linking to LLVMTestingAnnotations in standalone build
Michał Górny via cfe-commits
cfe-commits at lists.llvm.org
Tue Jan 24 04:21:49 PST 2023
Author: Michał Górny
Date: 2023-01-24T13:21:24+01:00
New Revision: 0f8b995b63620c3eb57610f958f66691d38d7185
URL: https://github.com/llvm/llvm-project/commit/0f8b995b63620c3eb57610f958f66691d38d7185
DIFF: https://github.com/llvm/llvm-project/commit/0f8b995b63620c3eb57610f958f66691d38d7185.diff
LOG: [clang] Fix linking to LLVMTestingAnnotations in standalone build
The LLVMTestingAnnotations library that is now used by unittests
is not installed as part of LLVM. In order to make it possible to build
unittests when performing the standalone build of clang, build
the library from LLVM sources locally. This mirrors the existing logic
for LLVMTestingSupport.
Differential Revision: https://reviews.llvm.org/D142449
Added:
Modified:
clang/unittests/CMakeLists.txt
Removed:
################################################################################
diff --git a/clang/unittests/CMakeLists.txt b/clang/unittests/CMakeLists.txt
index cffd4756616a2..f4e4f585bdd80 100644
--- a/clang/unittests/CMakeLists.txt
+++ b/clang/unittests/CMakeLists.txt
@@ -2,7 +2,12 @@ add_custom_target(ClangUnitTests)
set_target_properties(ClangUnitTests PROPERTIES FOLDER "Clang tests")
if(CLANG_BUILT_STANDALONE)
- # LLVMTestingSupport library is needed for some of the unittests.
+ # LLVMTesting* libraries are needed for some of the unittests.
+ if (EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Testing/Annotations
+ AND NOT TARGET LLVMTestingAnnotations)
+ add_subdirectory(${LLVM_MAIN_SRC_DIR}/lib/Testing/Annotations
+ lib/Testing/Annotations)
+ endif()
if (EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Testing/Support
AND NOT TARGET LLVMTestingSupport)
add_subdirectory(${LLVM_MAIN_SRC_DIR}/lib/Testing/Support
More information about the cfe-commits
mailing list