mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-07-29 17:49:16 +00:00
Hopefully fix the FTBFS on armel
This commit is contained in:
parent
4007a1cf0d
commit
da042a5363
1
debian/changelog
vendored
1
debian/changelog
vendored
@ -3,6 +3,7 @@ llvm-toolchain-3.8 (1:3.8.1-5) UNRELEASED; urgency=medium
|
|||||||
* Try to fix mips64el build, by enabling the same
|
* Try to fix mips64el build, by enabling the same
|
||||||
packages as the mips and mipsel versions
|
packages as the mips and mipsel versions
|
||||||
* Disable lldb on sparc64 (Closes: #832371)
|
* Disable lldb on sparc64 (Closes: #832371)
|
||||||
|
* Hopefully fix the FTBFS on armel
|
||||||
|
|
||||||
-- Gianfranco Costamagna <locutusofborg@debian.org> Fri, 22 Jul 2016 18:40:42 +0200
|
-- Gianfranco Costamagna <locutusofborg@debian.org> Fri, 22 Jul 2016 18:40:42 +0200
|
||||||
|
|
||||||
|
3
debian/rules
vendored
3
debian/rules
vendored
@ -58,6 +58,9 @@ endif
|
|||||||
opt_flags = -g -O2
|
opt_flags = -g -O2
|
||||||
ifneq (,$(findstring $(DEB_HOST_ARCH),armel))
|
ifneq (,$(findstring $(DEB_HOST_ARCH),armel))
|
||||||
opt_flags += -marm
|
opt_flags += -marm
|
||||||
|
# 3.8 fails to build, disable the compiler_rt builtins
|
||||||
|
# See http://lists.llvm.org/pipermail/llvm-dev/2016-May/099761.html
|
||||||
|
CMAKE_EXTRA += -DCOMPILER_RT_BUILD_BUILTINS=OFF
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(shell dpkg --compare-versions $(shell dpkg-query -W -f '$${Version}' g++-$(GCC_VERSION)) ge 4.8-20121128-1~ ; echo $$?),0)
|
ifeq ($(shell dpkg --compare-versions $(shell dpkg-query -W -f '$${Version}' g++-$(GCC_VERSION)) ge 4.8-20121128-1~ ; echo $$?),0)
|
||||||
|
Loading…
Reference in New Issue
Block a user