diff options
author | Zach van Rijn <me@zv.io> | 2022-01-11 21:15:51 +0000 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2022-05-01 17:05:44 -0500 |
commit | dcdcbc210b327185fc9e79abc0ca0e8f3026a5c5 (patch) | |
tree | 4ed411ca68faa2feb4307d443c81e4752652ecc0 | |
parent | dacbd300cf451c07f4195083f52356e1ad4b8219 (diff) | |
download | packages-dcdcbc210b327185fc9e79abc0ca0e8f3026a5c5.tar.gz packages-dcdcbc210b327185fc9e79abc0ca0e8f3026a5c5.tar.bz2 packages-dcdcbc210b327185fc9e79abc0ca0e8f3026a5c5.tar.xz packages-dcdcbc210b327185fc9e79abc0ca0e8f3026a5c5.zip |
system/gcc: allow textrels for 32-bit ppc. fixes #453.
-rw-r--r-- | system/gcc/APKBUILD | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/system/gcc/APKBUILD b/system/gcc/APKBUILD index b22b88753..5c36d2c61 100644 --- a/system/gcc/APKBUILD +++ b/system/gcc/APKBUILD @@ -94,6 +94,7 @@ fi case "$CTARGET_ARCH" in arm*) LIBITM=false ;; m68k) options="$options textrels" ;; +ppc) options="$options textrels" ;; esac # Fortran uses libquadmath if toolchain has __float128 |