[clang] 221f15f - [Clang] - Add libclangSerialization to clang driver unittests (#109329)
via cfe-commits
cfe-commits at lists.llvm.org
Thu Sep 19 14:51:13 PDT 2024
Author: Pranav Bhandarkar
Date: 2024-09-19T16:51:08-05:00
New Revision: 221f15fc145d46289781206f241ae564cd9510f0
URL: https://github.com/llvm/llvm-project/commit/221f15fc145d46289781206f241ae564cd9510f0
DIFF: https://github.com/llvm/llvm-project/commit/221f15fc145d46289781206f241ae564cd9510f0.diff
LOG: [Clang] - Add libclangSerialization to clang driver unittests (#109329)
This PR is a fix for issue
[#109328](https://github.com/llvm/llvm-project/issues/109328).
libclangSerializaton.so is needed for building clang driver unittests
after
https://github.com/llvm/llvm-project/pull/76838 was merged. Needed for
builds with `BUILD_SHARED_LIBS=ON`
Added:
Modified:
clang/unittests/Driver/CMakeLists.txt
Removed:
################################################################################
diff --git a/clang/unittests/Driver/CMakeLists.txt b/clang/unittests/Driver/CMakeLists.txt
index 752037f78fb147..efdd07ea238890 100644
--- a/clang/unittests/Driver/CMakeLists.txt
+++ b/clang/unittests/Driver/CMakeLists.txt
@@ -22,4 +22,5 @@ clang_target_link_libraries(ClangDriverTests
clangDriver
clangBasic
clangFrontend # For TextDiagnosticPrinter.
+ clangSerialization
)
More information about the cfe-commits
mailing list