forked from pool/llvm17
b497fbd409
- Initial release based on version 17.0.1. * For details, see the release notes: - https://releases.llvm.org/17.0.1/docs/ReleaseNotes.html - https://releases.llvm.org/17.0.1/tools/clang/docs/ReleaseNotes.html - https://releases.llvm.org/17.0.1/tools/clang/tools/extra/docs/ReleaseNotes.html - https://releases.llvm.org/17.0.1/projects/libcxx/docs/ReleaseNotes.html - https://releases.llvm.org/17.0.1/tools/lld/docs/ReleaseNotes.html - Rebase patches: * libcxx-test-library-path.patch * llvm_build_tablegen_component_as_shared_library.patch * llvm-do-not-install-static-libraries.patch * llvm-normally-versioned-libllvm.patch * llvm-remove-clang-only-flags.patch * opt-viewer-Find-style-css-in-usr-share.patch - Simplify check-no-llvm-exegesis.patch by removing test directory. - Drop patches that have landed upstream: * openmp-drop-rpath.patch - Add openmp-dont-run-gpu-arch.patch: the binaries are not available in our build, and neither are the toolchains they test for (NV CUDA and AMD HSA). OBS-URL: https://build.opensuse.org/request/show/1112838 OBS-URL: https://build.opensuse.org/package/show/devel:tools:compiler/llvm17?expand=0&rev=1
59 lines
1.4 KiB
Diff
59 lines
1.4 KiB
Diff
diff --git a/clang-tools-extra/clang-include-fixer/plugin/CMakeLists.txt b/clang-tools-extra/clang-include-fixer/plugin/CMakeLists.txt
|
|
index 6d0328ed831..d531e44743a 100644
|
|
--- a/clang-tools-extra/clang-include-fixer/plugin/CMakeLists.txt
|
|
+++ b/clang-tools-extra/clang-include-fixer/plugin/CMakeLists.txt
|
|
@@ -2,15 +2,18 @@ add_clang_library(clangIncludeFixerPlugin
|
|
IncludeFixerPlugin.cpp
|
|
|
|
LINK_LIBS
|
|
+ clangIncludeFixer
|
|
+ ${LLVM_PTHREAD_LIB}
|
|
+
|
|
+ DEPENDS
|
|
+ omp_gen
|
|
+ )
|
|
+clang_target_link_libraries(clangIncludeFixerPlugin
|
|
+ PRIVATE
|
|
clangAST
|
|
clangBasic
|
|
clangFrontend
|
|
- clangIncludeFixer
|
|
clangParse
|
|
clangSema
|
|
clangTooling
|
|
- ${LLVM_PTHREAD_LIB}
|
|
-
|
|
- DEPENDS
|
|
- omp_gen
|
|
)
|
|
diff --git a/clang-tools-extra/clangd/refactor/tweaks/CMakeLists.txt b/clang-tools-extra/clangd/refactor/tweaks/CMakeLists.txt
|
|
index 8f708cacfdf..b08e9cee954 100644
|
|
--- a/clang-tools-extra/clangd/refactor/tweaks/CMakeLists.txt
|
|
+++ b/clang-tools-extra/clangd/refactor/tweaks/CMakeLists.txt
|
|
@@ -31,17 +31,20 @@ add_clang_library(clangDaemonTweaks OBJECT
|
|
SwapIfBranches.cpp
|
|
|
|
LINK_LIBS
|
|
- clangAST
|
|
- clangBasic
|
|
clangDaemon
|
|
clangdSupport
|
|
+
|
|
+ DEPENDS
|
|
+ omp_gen
|
|
+ )
|
|
+
|
|
+clang_target_link_libraries(clangDaemonTweaks INTERFACE
|
|
+ clangAST
|
|
+ clangBasic
|
|
clangFormat
|
|
clangLex
|
|
clangSema
|
|
clangToolingCore
|
|
clangToolingRefactoring
|
|
clangToolingSyntax
|
|
-
|
|
- DEPENDS
|
|
- omp_gen
|
|
)
|