Fix the FTBFS on mips (introduced by my previous change)

This commit is contained in:
Sylvestre Ledru 2019-04-02 11:57:49 +02:00
parent 795b5b2ae3
commit c27a5a490e
2 changed files with 7 additions and 1 deletions

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
llvm-toolchain-8 (1:8-3) unstable; urgency=medium
* Fix the FTBFS on mips (introduced by my previous change)
-- Sylvestre Ledru <sylvestre@debian.org> Tue, 02 Apr 2019 11:57:08 +0200
llvm-toolchain-8 (1:8-2) unstable; urgency=medium
* Fix the search path on mips64el (which is causing the stage2

2
debian/rules vendored
View File

@ -96,7 +96,7 @@ ifneq (,$(findstring $(DEB_HOST_ARCH),armhf))
CMAKE_EXTRA += -DLLVM_HOST_TRIPLE=armv7l-unknown-linux-gnueabihf
endif
ifneq (,$(findstring $(DEB_HOST_ARCH),mips64el))
ifneq (,$(filter $(DEB_HOST_ARCH),mips64el))
# avoid an issue with search path on mips64el
# https://bugs.llvm.org/show_bug.cgi?id=41204
CMAKE_EXTRA += -DLLVM_HOST_TRIPLE=mips64el-linux-gnuabi64