mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-06-14 20:00:43 +00:00
Do not enable Thin on armhf for now
This commit is contained in:
parent
18ae2a6976
commit
e2976a2e23
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,4 +1,8 @@
|
|||||||
llvm-toolchain-8 (1:8.0.1~+rc2-1~exp2) UNRELEASED; urgency=medium
|
llvm-toolchain-8 (1:8.0.1~+rc2-1~exp2) experimental; urgency=medium
|
||||||
|
|
||||||
|
[ Gianfranco Costamagna ]
|
||||||
|
* Enable thinlto everywhere except armhf
|
||||||
|
* Drop wrong exit 1 from testsuite
|
||||||
|
|
||||||
[ Andreas Beckmann ]
|
[ Andreas Beckmann ]
|
||||||
* For now, lld doesn't generate shared libs. Removing the files
|
* For now, lld doesn't generate shared libs. Removing the files
|
||||||
|
3
debian/rules
vendored
3
debian/rules
vendored
@ -227,9 +227,12 @@ THIN_UNSUPPORTED_DISTRO := stretch xenial trusty
|
|||||||
ifeq (,$(filter $(DISTRO), $(THIN_UNSUPPORTED_DISTRO)))
|
ifeq (,$(filter $(DISTRO), $(THIN_UNSUPPORTED_DISTRO)))
|
||||||
# Only enable it for archs supporting gold
|
# Only enable it for archs supporting gold
|
||||||
ifneq (,$(filter $(DEB_HOST_ARCH),$(BINUTILS_GOLD_ARCHS)))
|
ifneq (,$(filter $(DEB_HOST_ARCH),$(BINUTILS_GOLD_ARCHS)))
|
||||||
|
# armhf is not yet quite ready for Thin, it FTBFS
|
||||||
|
ifeq (,$(filter $(DEB_HOST_ARCH), armhf))
|
||||||
CMAKE_EXTRA += -DLLVM_ENABLE_LTO="Thin"
|
CMAKE_EXTRA += -DLLVM_ENABLE_LTO="Thin"
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
DH_OPTIONS=
|
DH_OPTIONS=
|
||||||
OCAML_ENABLE= no
|
OCAML_ENABLE= no
|
||||||
|
Loading…
Reference in New Issue
Block a user