mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-07-27 13:27:05 +00:00
Hopefully the mips* build is fixed
This commit is contained in:
parent
da042a5363
commit
b53344eb7f
1
debian/changelog
vendored
1
debian/changelog
vendored
@ -2,6 +2,7 @@ llvm-toolchain-3.8 (1:3.8.1-5) UNRELEASED; urgency=medium
|
||||
|
||||
* Try to fix mips64el build, by enabling the same
|
||||
packages as the mips and mipsel versions
|
||||
* Link mips* with latomic.
|
||||
* Disable lldb on sparc64 (Closes: #832371)
|
||||
* Hopefully fix the FTBFS on armel
|
||||
|
||||
|
19
debian/patches/lldb-link-atomic-cmake.patch
vendored
Normal file
19
debian/patches/lldb-link-atomic-cmake.patch
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
Description: Link with -latomic when mips* processor is detected
|
||||
Author: Gianfranco Costamagna <locutusofborg@debian.org>
|
||||
Last-Update: 2016-07-27
|
||||
|
||||
--- llvm-toolchain-3.8-3.8.1.orig/lldb/cmake/LLDBDependencies.cmake
|
||||
+++ llvm-toolchain-3.8-3.8.1/lldb/cmake/LLDBDependencies.cmake
|
||||
@@ -172,6 +172,12 @@ if (LLVM_BUILD_STATIC)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
+if(CMAKE_HOST_SYSTEM_PROCESSOR MATCHES "mips" OR
|
||||
+ CMAKE_HOST_SYSTEM_PROCESSOR MATCHES "mipsel" OR
|
||||
+ CMAKE_HOST_SYSTEM_PROCESSOR MATCHES "mips64el")
|
||||
+ list(APPEND LLDB_SYSTEM_LIBS atomic)
|
||||
+endif()
|
||||
+
|
||||
set( LLVM_LINK_COMPONENTS
|
||||
${LLVM_TARGETS_TO_BUILD}
|
||||
interpreter
|
1
debian/patches/series
vendored
1
debian/patches/series
vendored
@ -41,3 +41,4 @@ llvm25468-lldb-swig-format-security.diff
|
||||
llvm26003-sanitizer-check-env.diff
|
||||
scan-view-fix-path.diff
|
||||
mips-fpxx-enable.diff
|
||||
lldb-link-atomic-cmake.patch
|
||||
|
Loading…
Reference in New Issue
Block a user