Switch back to -Os instead of -Oz for arm
Seems that there are still issues (segfault on ruby at least).
This commit is contained in:
parent
11c765d731
commit
2811236000
@ -613,7 +613,11 @@ termux_step_setup_toolchain() {
|
||||
if [ -n "$TERMUX_DEBUG" ]; then
|
||||
CFLAGS+=" -g3 -O1 -fstack-protector --param ssp-buffer-size=4 -D_FORTIFY_SOURCE=2"
|
||||
else
|
||||
CFLAGS+=" -Oz"
|
||||
if [ $TERMUX_ARCH = arm ]; then
|
||||
CFLAGS+=" -Os"
|
||||
else
|
||||
CFLAGS+=" -Oz"
|
||||
fi
|
||||
fi
|
||||
|
||||
export CXXFLAGS="$CFLAGS"
|
||||
|
Loading…
Reference in New Issue
Block a user