diff options
author | Nils Andreas Svee <me@lochnair.net> | 2017-12-10 01:18:09 +0100 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2017-12-11 09:01:08 +0200 |
commit | ae2509ae4bd6bc210bd61584e4ce94925458b658 (patch) | |
tree | 565e6bd510e5936b88f0335b16a7f7ac87f556e4 /main/gcc | |
parent | 2baf4807188617d1957dcbcadc1d60e6a6465af2 (diff) | |
download | aports-ae2509ae4bd6bc210bd61584e4ce94925458b658.tar.bz2 aports-ae2509ae4bd6bc210bd61584e4ce94925458b658.tar.xz |
main/gcc: disable libitm on mips archs, as it causes compilation to fail
Diffstat (limited to 'main/gcc')
-rw-r--r-- | main/gcc/APKBUILD | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/main/gcc/APKBUILD b/main/gcc/APKBUILD index ea3b5b6a7d..f452f7c35c 100644 --- a/main/gcc/APKBUILD +++ b/main/gcc/APKBUILD @@ -95,6 +95,7 @@ fi # libitm has TEXTRELs in ARM build, so disable for now case "$CTARGET_ARCH" in arm*) LIBITM=false ;; +mips*) LIBITM=false ;; esac # Fortran uses libquadmath if toolchain has __float128 |