Browse Source

Use -Os instead of -Oz for 32-bit arm

android-5
Fredrik Fornwall 7 years ago
parent
commit
49c62a86db
  1. 10
      build-package.sh
  2. 5
      packages/espeak/build.sh
  3. 8
      packages/ruby/build.sh
  4. 2
      packages/texlive-bin/build.sh

10
build-package.sh

@ -574,8 +574,14 @@ termux_step_setup_toolchain() {
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"
# -Oz seems good for clang, see https://github.com/android-ndk/ndk/issues/133.
# However, on arm it has a lot of issues such as #1520, #1680, #1765 and
# https://bugs.llvm.org/show_bug.cgi?id=35379, so use so use -Os there for now:
if [ $TERMUX_ARCH = arm ]; then
CFLAGS+=" -Os"
else
CFLAGS+=" -Oz"
fi
fi
fi

5
packages/espeak/build.sh

@ -27,11 +27,6 @@ termux_step_host_build() {
make install
}
termux_step_pre_configure() {
# Oz flag causes problems. See https://github.com/termux/termux-packages/issues/1680:
CFLAGS=${CFLAGS/Oz/O2}
}
termux_step_make() {
# Prevent caching of host build:
rm -Rf $TERMUX_PKG_HOSTBUILD_DIR

8
packages/ruby/build.sh

@ -17,14 +17,6 @@ TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" rb_cv_type_deprecated=x"
# getresuid(2) does not work on ChromeOS - https://github.com/termux/termux-app/issues/147:
# TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" ac_cv_func_getresuid=no"
termux_step_pre_configure() {
# This exception is to avoid a broken ruby on 32-bit arm
# with NDK r15c and ruby 2.4.2 - see #1520.
if [ "$TERMUX_ARCH" = arm ]; then
CFLAGS=${CFLAGS/Oz/O1}
fi
}
termux_step_make_install () {
make install
make uninstall # remove possible remains to get fresh timestamps

2
packages/texlive-bin/build.sh

@ -123,8 +123,6 @@ opt/texlive/${TERMUX_PKG_VERSION:0:4}/texmf-dist/scripts/checkcites/checkcites.l
termux_step_pre_configure() {
# When building against libicu 59.1 or later we need c++11:
CXXFLAGS+=" -std=c++11"
# Oz flag causes problems. See https://github.com/termux/termux-packages/issues/1765:
CFLAGS=${CFLAGS/Oz/O3}
}
termux_step_post_make_install () {

Loading…
Cancel
Save