- add libcxx-use-shlex-quote.patch to fix build with python 3.13 - Use correct LLVM_HOST_TRIPLE for riscv64 - Rebase llvm-do-not-install-static-libraries.patch. - Add upstream patch to export compiler-rt FuzzedDataProvider header, * compiler-rt-move-fdp.patch - Drop llvm5-devel-static. llvm5-devel contains shared library with - Package libLLVMFuzzer - Use gcc6 on SLE12 - Package license & credits * See - Enable BPF for all arches bsc#1026191 - libc++ must depend on libc++abi - Disable libcxx/lldb/openmp for SLE fate#319582 - Update rpmlintrc to whitelist libLTO.so - Re-enable glibc-2.23 patch for Tumbleweed - Add glibc-2.23-libcxx.patch to fix test failures with glibc 2.23 - Remove FFI support because its fragile - Enable OpenMP for x86, x86_64, ppc64 and ppc64le - Enable all targets on x86, x86_64 - fix build on s390x (one typo in ifarch and one change in filelist) - Add llvm-fix-parsearmarch.patch to fix parsing armv{6,7}hl archs. - Rename llvm-remove-werror-date-time.patch to - Require llvm-clang not just clang - Add libcxxabi-exceptions.patch to fix libcxxabi exception handling - Remove asan-disable-hugemalloctest.patch and - build compiler-rt on ppc64 (don't delete it) - complete ifarchs for s390 - Remove non-existing doc subpackage - Update to r196371 from release_34 branch OBS-URL: https://build.opensuse.org/request/show/1225866 OBS-URL: https://build.opensuse.org/package/show/devel:tools:compiler/llvm18?expand=0&rev=35
63 lines
1.5 KiB
Diff
63 lines
1.5 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,16 +2,19 @@ add_clang_library(clangIncludeFixerPlugin
|
|
IncludeFixerPlugin.cpp
|
|
|
|
LINK_LIBS
|
|
+ clangIncludeFixer
|
|
+ ${LLVM_PTHREAD_LIB}
|
|
+
|
|
+ DEPENDS
|
|
+ omp_gen
|
|
+ ClangDriverOptions
|
|
+ )
|
|
+clang_target_link_libraries(clangIncludeFixerPlugin
|
|
+ PRIVATE
|
|
clangAST
|
|
clangBasic
|
|
clangFrontend
|
|
- clangIncludeFixer
|
|
clangParse
|
|
clangSema
|
|
clangTooling
|
|
- ${LLVM_PTHREAD_LIB}
|
|
-
|
|
- DEPENDS
|
|
- omp_gen
|
|
- ClangDriverOptions
|
|
)
|
|
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
|
|
@@ -32,18 +32,21 @@ add_clang_library(clangDaemonTweaks OBJECT
|
|
SwapIfBranches.cpp
|
|
|
|
LINK_LIBS
|
|
- clangAST
|
|
- clangBasic
|
|
clangDaemon
|
|
clangdSupport
|
|
+
|
|
+ DEPENDS
|
|
+ omp_gen
|
|
+ ClangDriverOptions
|
|
+ )
|
|
+
|
|
+clang_target_link_libraries(clangDaemonTweaks INTERFACE
|
|
+ clangAST
|
|
+ clangBasic
|
|
clangFormat
|
|
clangLex
|
|
clangSema
|
|
clangToolingCore
|
|
clangToolingRefactoring
|
|
clangToolingSyntax
|
|
-
|
|
- DEPENDS
|
|
- omp_gen
|
|
- ClangDriverOptions
|
|
)
|