8a40ab05bb
- New package based on version 18.1.0. * For details, see the release notes: - https://releases.llvm.org/18.1.0/docs/ReleaseNotes.html - https://releases.llvm.org/18.1.0/tools/clang/docs/ReleaseNotes.html - https://releases.llvm.org/18.1.0/tools/clang/tools/extra/docs/ReleaseNotes.html - https://releases.llvm.org/18.1.0/projects/libcxx/docs/ReleaseNotes.html - https://releases.llvm.org/18.1.0/tools/lld/docs/ReleaseNotes.html * New LLVM tool: llvm-readtapi, LLVM TAPI file reader and transformer. * Removed LLVM tools: llvm-tapi-diff, llvm-remark-size-diff. * New LLDB tool: lldb-dap debug adapter. * Removed LLDB tool: lldb-vscode. - Rename libomp-devel symbolic name to libomp-devel-provider. We want to introduce a metapackage named libomp-devel. - Rebase patches: * assume-opensuse.patch * link-clang-tools-extra-shared.patch * llvm_build_tablegen_component_as_shared_library.patch * llvm-do-not-install-static-libraries.patch * llvm-fix-find-gcc5-install.patch * llvm-normally-versioned-libllvm.patch * llvm-suse-implicit-gnu.patch - Add patches to fix tests: * clang-fix-modules-test-riscv.patch * clang-fix-openmp-test-non-x86.patch * clang-fix-openmp-test.patch * llvm-fix-cov-test-i586.patch - Add llvm-Remove-RC-suffix.patch to remove the "rc" suffix from library SO names. Upstream seems to have forgotten that. - Restructure version macros in specfile for new versioning scheme. - Fix packaging of ld.lld as ld alternative. OBS-URL: https://build.opensuse.org/request/show/1156665 OBS-URL: https://build.opensuse.org/package/show/devel:tools:compiler/llvm18?expand=0&rev=1
68 lines
3.1 KiB
Diff
68 lines
3.1 KiB
Diff
Before llvm4, both major and minor version updates of llvm were regularly
|
|
breaking API. Because of that, the libLLVM library was named in following
|
|
format: libLLVM-${major}-${minor}.so
|
|
|
|
(https://bugs.llvm.org/show_bug.cgi?id=25059)
|
|
(https://reviews.llvm.org/D13841)
|
|
|
|
The package containing this library was called libLLVM${major}_${minor} which
|
|
follows our guidelines.
|
|
|
|
Since llvm4, llvm decided to follow semantic versioning and only break API if
|
|
the major version was increased. In addition they do not intend to ever have
|
|
minor version other than 0.
|
|
(http://blog.llvm.org/2016/12/llvms-new-versioning-scheme.html)
|
|
|
|
The package was renamed to libLLVM${major}, which no longer follows the naming
|
|
guidelines, but since the package contained multiple libraries, it was not
|
|
detected.
|
|
|
|
Since bnc#1049703 the libLLVM${major} package contains only the
|
|
libLLVM-${major}-${minor}.so library and no others. This triggers the
|
|
shlib-policy-name-error check in our packaging system.
|
|
|
|
Because the reasons for using the libLLVM-${major}-${minor}.so format are no
|
|
longer valid, lets revert back to libLLVM.so.${major}.${minor}.${version}
|
|
format. That way the package name matches our guidelines.
|
|
|
|
With llvm18, the minor version is now always 1 for releases, and upstream
|
|
decided to rename the library to libLLVM.so.${major}.${minor}, but keep the
|
|
old name as symbolic link for backwards compatibility. That is of course
|
|
not relevant for us.
|
|
|
|
Index: llvm-8.0.0rc3.src/tools/llvm-config/llvm-config.cpp
|
|
===================================================================
|
|
--- llvm-8.0.0rc3.src.orig/tools/llvm-config/llvm-config.cpp
|
|
+++ llvm-8.0.0rc3.src/tools/llvm-config/llvm-config.cpp
|
|
@@ -380,7 +380,6 @@ int main(int argc, char **argv) {
|
|
} else {
|
|
// default to the unix values:
|
|
SharedExt = "so";
|
|
- SharedVersionedExt = LLVM_DYLIB_VERSION ".so";
|
|
StaticExt = "a";
|
|
StaticDir = SharedDir = ActiveLibDir;
|
|
StaticPrefix = SharedPrefix = "lib";
|
|
@@ -393,7 +392,7 @@ int main(int argc, char **argv) {
|
|
|
|
bool DyLibExists = false;
|
|
const std::string DyLibName =
|
|
- (SharedPrefix + "LLVM-" + SharedVersionedExt).str();
|
|
+ (SharedPrefix + "LLVM." + SharedExt).str();
|
|
|
|
// If LLVM_LINK_DYLIB is ON, the single shared library will be returned
|
|
// for "--libs", etc, if they exist. This behaviour can be overridden with
|
|
Index: llvm-18.1.0rc4.src/tools/llvm-shlib/CMakeLists.txt
|
|
===================================================================
|
|
--- llvm-18.1.0rc4.src.orig/tools/llvm-shlib/CMakeLists.txt
|
|
+++ llvm-18.1.0rc4.src/tools/llvm-shlib/CMakeLists.txt
|
|
@@ -34,9 +34,6 @@ if(LLVM_BUILD_LLVM_DYLIB)
|
|
set(INSTALL_WITH_TOOLCHAIN INSTALL_WITH_TOOLCHAIN)
|
|
endif()
|
|
add_llvm_library(LLVM SHARED DISABLE_LLVM_LINK_LLVM_DYLIB OUTPUT_NAME LLVM ${INSTALL_WITH_TOOLCHAIN} ${SOURCES})
|
|
- # Add symlink for backwards compatibility with old library name
|
|
- get_target_property(LLVM_DYLIB_SOVERSION LLVM SOVERSION)
|
|
- llvm_install_library_symlink(LLVM-${LLVM_VERSION_MAJOR}${LLVM_VERSION_SUFFIX} LLVM SHARED COMPONENT LLVM SOVERSION ${LLVM_DYLIB_SOVERSION})
|
|
|
|
list(REMOVE_DUPLICATES LIB_NAMES)
|
|
if("${CMAKE_SYSTEM_NAME}" STREQUAL "Darwin")
|