Use -Oz instead of -Os for clang
This commit is contained in:
parent
c3f11ac209
commit
fc53670f9b
@ -571,7 +571,12 @@ 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+=" -Os"
|
||||
if [ "$TERMUX_PKG_CLANG" = "no" ]; then
|
||||
CFLAGS+=" -Os"
|
||||
else
|
||||
# -Oz seems good for clang, see https://github.com/android-ndk/ndk/issues/133
|
||||
CFLAGS+=" -Oz"
|
||||
fi
|
||||
fi
|
||||
|
||||
export CXXFLAGS="$CFLAGS"
|
||||
|
Loading…
x
Reference in New Issue
Block a user