env/hardening: disable PIE generally for MIPS.

PIE is currently broken in MIPS.
This commit is contained in:
Juan RP 2016-04-26 09:41:28 +02:00
parent c85787ebf9
commit d55d16482d
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ case "$XBPS_TARGET_MACHINE" in
CFLAGS+=" -fno-stack-protector"
CXXFLAGS+=" -fno-stack-protector"
;;
mips-musl|mipsel-musl) # PIE support broken
mips*) # PIE support broken
nopie=yes
;;
esac