mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-06-15 16:47:40 +00:00
Disable LIBCXX_USE_COMPILER_RT on s390x, armel and x32 as it fails. See bug 52022
This commit is contained in:
parent
a112c44b6d
commit
b092faff78
2
debian/changelog
vendored
2
debian/changelog
vendored
@ -2,7 +2,7 @@ llvm-toolchain-snapshot (1:14~++20211002060945+9452ec722ce0-1~exp1) experimental
|
|||||||
|
|
||||||
* The triple change has been reverted. Keep it in Debian bring-back-triple-linux.diff
|
* The triple change has been reverted. Keep it in Debian bring-back-triple-linux.diff
|
||||||
* Fix the "all" build
|
* Fix the "all" build
|
||||||
* Disable LIBCXX_USE_COMPILER_RT on s390x as it fails. See bug 52022
|
* Disable LIBCXX_USE_COMPILER_RT on s390x, armel and x32 as it fails. See bug 52022
|
||||||
* Adjust the libomp_start_tool visibility on armhf
|
* Adjust the libomp_start_tool visibility on armhf
|
||||||
* Be more flexible to install libomptarget-*.bc
|
* Be more flexible to install libomptarget-*.bc
|
||||||
(ex: libomptarget-new-nvptx-*.bc are new)
|
(ex: libomptarget-new-nvptx-*.bc are new)
|
||||||
|
5
debian/rules
vendored
5
debian/rules
vendored
@ -56,6 +56,11 @@ ifneq (,$(filter $(DEB_HOST_ARCH),s390x))
|
|||||||
LIBCXX_USE_COMPILER_RT := OFF
|
LIBCXX_USE_COMPILER_RT := OFF
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifneq (,$(filter $(DEB_HOST_ARCH),armel x32))
|
||||||
|
# See https://bugs.llvm.org/show_bug.cgi?id=52022
|
||||||
|
LIBCXX_USE_COMPILER_RT := OFF
|
||||||
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter $(DEB_HOST_ARCH),i386 armel mips mipsel powerpc powerpcspe riscv64))
|
ifneq (,$(filter $(DEB_HOST_ARCH),i386 armel mips mipsel powerpc powerpcspe riscv64))
|
||||||
CMAKE_EXTRA += -DLIBOMP_LIBFLAGS="-latomic" -DCMAKE_SHARED_LINKER_FLAGS="-latomic"
|
CMAKE_EXTRA += -DLIBOMP_LIBFLAGS="-latomic" -DCMAKE_SHARED_LINKER_FLAGS="-latomic"
|
||||||
endif
|
endif
|
||||||
|
Loading…
Reference in New Issue
Block a user