From: Fredrik Fornwall Date: Fri, 9 Feb 2018 00:22:17 +0000 (+0100) Subject: libmpfr: Build with gcc for i686 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/termux-packages/commitdiff_plain/2b47a36017aa4bea49e1eb2233f2805a970b6e3c?ds=inline libmpfr: Build with gcc for i686 This works around a clang internal failure. --- diff --git a/packages/libmpfr/build.sh b/packages/libmpfr/build.sh index cfb416e5..9bd9f771 100755 --- a/packages/libmpfr/build.sh +++ b/packages/libmpfr/build.sh @@ -5,3 +5,7 @@ TERMUX_PKG_VERSION=4.0.1 TERMUX_PKG_SRCURL=https://mirrors.kernel.org/gnu/mpfr/mpfr-${TERMUX_PKG_VERSION}.tar.xz TERMUX_PKG_SHA256=67874a60826303ee2fb6affc6dc0ddd3e749e9bfcb4c8655e3953d0458a6e16e TERMUX_PKG_EXTRA_CONFIGURE_ARGS="ac_cv_header_locale_h=no" +if [ $TERMUX_ARCH = i686 ]; then + # Avoid clang bug with NDK r16: + TERMUX_PKG_CLANG=no +fi