- Update to version 12.0.0.
* For details, see the release notes:
- https://releases.llvm.org/12.0.0/docs/ReleaseNotes.html
- https://releases.llvm.org/12.0.0/tools/clang/docs/ReleaseNotes.html
- https://releases.llvm.org/12.0.0/tools/clang/tools/extra/docs/ReleaseNotes.html
- https://releases.llvm.org/12.0.0/projects/libcxx/docs/ReleaseNotes.html
- https://releases.llvm.org/12.0.0/tools/lld/docs/ReleaseNotes.html
- Rebase patches:
* assume-opensuse.patch
* lldb-cmake.patch
* llvm-better-detect-64bit-atomics-support.patch
* llvm-do-not-install-static-libraries.patch
* llvm_build_tablegen_component_as_shared_library.patch
- Drop patches that have landed upstream:
* Fix-missing-include.patch
- Always use ld.bfd for stage 1, use lld for stage 2 where we use
ThinLTO and where it's supported, gold where lld doesn't work,
and ld.bfd where we don't use ThinLTO. (boo#1181621)
- Add lld-no-version-on-undefined-weak-lazy-symbols.patch to fix a
bug in lld that made libLLVM.so contain a corrupt symbol version.
- Add clangd-cmake-non-standard-layout.patch to fix build in our
non-monorepo layout.
OBS-URL: https://build.opensuse.org/request/show/886367
OBS-URL: https://build.opensuse.org/package/show/devel:tools:compiler/llvm12?expand=0&rev=1
49 lines
1.3 KiB
Diff
49 lines
1.3 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
|
|
@@ -27,10 +27,13 @@ add_clang_library(clangDaemonTweaks OBJECT
|
|
SwapIfBranches.cpp
|
|
|
|
LINK_LIBS
|
|
- clangAST
|
|
- clangBasic
|
|
clangDaemon
|
|
clangdSupport
|
|
+ )
|
|
+
|
|
+clang_target_link_libraries(clangDaemonTweaks INTERFACE
|
|
+ clangAST
|
|
+ clangBasic
|
|
clangFormat
|
|
clangLex
|
|
clangToolingCore
|