Use -Oz instead of -Os for clang

This commit is contained in:
Fredrik Fornwall 2017-08-20 11:36:38 +02:00
parent c3f11ac209
commit fc53670f9b

View File

@ -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"