env/hardening: disable PIE generally for MIPS.
PIE is currently broken in MIPS.
This commit is contained in:
parent
c85787ebf9
commit
d55d16482d
|
@ -9,7 +9,7 @@ case "$XBPS_TARGET_MACHINE" in
|
||||||
CFLAGS+=" -fno-stack-protector"
|
CFLAGS+=" -fno-stack-protector"
|
||||||
CXXFLAGS+=" -fno-stack-protector"
|
CXXFLAGS+=" -fno-stack-protector"
|
||||||
;;
|
;;
|
||||||
mips-musl|mipsel-musl) # PIE support broken
|
mips*) # PIE support broken
|
||||||
nopie=yes
|
nopie=yes
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
Loading…
Reference in New Issue