Mise à jour de 'configure.sh'

This commit is contained in:
Neiviv-ui 2021-06-22 22:17:17 +02:00
parent 91aa9b4dee
commit 7369d51017
1 changed files with 4 additions and 11 deletions

View File

@ -115,14 +115,6 @@ mkdir build
PREFIX="$(pwd)"
cd build
# Since the __ANDROID_API__ flag is hardcoded as 24 in clang, and <stdio.h>
# doesn't prototype some functions when this flag is too low, fixes it's
# version by checking system's properties so as to prevent from missing prototypes
# of existing functions such as fgets_unlocked (only if API >= 28)
# See the following issues :
# * https://github.com/termux/termux-packages/issues/6176
# * https://github.com/termux/termux-packages/issues/2469
echo "$TAG Configuring binutils..."
if command -v termux-setup-storage >/dev/null 2>&1; then
@ -134,9 +126,10 @@ if command -v termux-setup-storage >/dev/null 2>&1; then
# * https://github.com/termux/termux-packages/issues/6176
# * https://github.com/termux/termux-packages/issues/2469
export CFLAGS="-D__ANDROID_API__=$(getprop ro.build.version.sdk) -g -O2" \
CXXFLAGS="-D__ANDROID_API__=$(getprop ro.build.version.sdk) -g -O2"
export \
CFLAGS = "-D__ANDROID_API__=$(getprop ro.build.version.sdk) -g -O2" \
CXXFLAGS = "-D__ANDROID_API__=$(getprop ro.build.version.sdk) -g -O2"
fi
run_quietly giteapc-configure.log \
../binutils-$VERSION/configure --prefix="$PREFIX" --target=sh3eb-elf --with-multilib-list=m3,m4-nofpu --program-prefix=sh-elf- --enable-libssp --enable-lto
../binutils-$VERSION/configure --prefix="$PREFIX" --target=sh3eb-elf --with-multilib-list=m3,m4-nofpu --program-prefix=sh-elf- --enable-libssp --enable-lto