Browse Source

Always use -Oz optimization level

emacs-27
Fredrik Fornwall 6 years ago
parent
commit
32de55cece
  1. 1
      packages/ruby/build.sh
  2. 8
      packages/scrypt/build.sh
  3. 6
      scripts/build/termux_step_setup_toolchain.sh

1
packages/ruby/build.sh

@ -23,7 +23,6 @@ termux_step_pre_configure() {
if [ "$TERMUX_ARCH_BITS" = 32 ]; then
# process.c:function timetick2integer: error: undefined reference to '__mulodi4'
TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" rb_cv_builtin___builtin_mul_overflow=no"
CFLAGS="${CFLAGS/-Os/-Oz}"
fi
}

8
packages/scrypt/build.sh

@ -2,13 +2,7 @@ TERMUX_PKG_HOMEPAGE=https://www.tarsnap.com/scrypt.html
TERMUX_PKG_DESCRIPTION="scrypt KDF library and file encryption tool"
TERMUX_PKG_LICENSE="BSD 2-Clause"
TERMUX_PKG_VERSION=1.2.1
TERMUX_PKG_REVISION=2
TERMUX_PKG_REVISION=3
TERMUX_PKG_SRCURL=https://www.tarsnap.com/scrypt/scrypt-1.2.1.tgz
TERMUX_PKG_SHA256=4621f5e7da2f802e20850436219370092e9fcda93bd598f6d4236cce33f4c577
TERMUX_PKG_DEPENDS="openssl"
termux_step_pre_configure() {
# Work around miscompilation on at least aarch64 with -Oz,
# see https://github.com/termux/termux-packages/issues/3260:
export CFLAGS=${CFLAGS/-Oz/-Os}
}

6
scripts/build/termux_step_setup_toolchain.sh

@ -47,11 +47,7 @@ termux_step_setup_toolchain() {
if [ -n "$TERMUX_DEBUG" ]; then
CFLAGS+=" -g3 -O1 -fstack-protector --param ssp-buffer-size=4 -D_FORTIFY_SOURCE=2"
else
if [ $TERMUX_ARCH = arm ]; then
CFLAGS+=" -Os"
else
CFLAGS+=" -Oz"
fi
CFLAGS+=" -Oz"
fi
export CXXFLAGS="$CFLAGS"

Loading…
Cancel
Save