Skip to content

Commit 2fb1c10

Browse files
committedAug 4, 2023
cmake: add missing dependencies on ClangDriverOptions tablegen
The modules build trips over this frequently because there is no textual include of the tablegen output, but the module includes it. Differential revision: https://reviews.llvm.org/D157119
1 parent 4185656 commit 2fb1c10

File tree

54 files changed

+70
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+70
-0
lines changed
 

‎clang-tools-extra/clang-apply-replacements/CMakeLists.txt

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ set(LLVM_LINK_COMPONENTS
44

55
add_clang_library(clangApplyReplacements
66
lib/Tooling/ApplyReplacements.cpp
7+
8+
DEPENDS
9+
ClangDriverOptions
710
)
811

912
clang_target_link_libraries(clangApplyReplacements

‎clang-tools-extra/clang-change-namespace/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ add_clang_library(clangChangeNamespace
88

99
DEPENDS
1010
omp_gen
11+
ClangDriverOptions
1112
)
1213

1314
clang_target_link_libraries(clangChangeNamespace

0 commit comments

Comments
 (0)
Please sign in to comment.