2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-02 14:02:27 +00:00

gcc: Skip bootstrap if we are able

This commit is contained in:
Dylan Araps 2020-05-11 10:15:00 +03:00
parent 5a446e4997
commit d7d9eae4e8
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E

View File

@ -12,6 +12,16 @@ sed -i 's/lib64/lib/' gcc/gcc/config/i386/linux64.h
mkdir -p gcc-build
cd gcc-build
# Grab the system's GCC version.
IFS=. read -r gcc_version _ 2>/dev/null \
< "$KISS_ROOT/var/db/kiss/installed/gcc/version"
# Skip the bootstrap process if we are able.
case $gcc_version in 10)
printf '%s\n' "Minor version difference, disabling bootstrap."
bootstrap=--disable-bootstrap
esac
export libat_cv_have_ifunc=no
../gcc/configure \
@ -38,7 +48,8 @@ export libat_cv_have_ifunc=no
--enable-languages=c,c++ \
--without-included-gettext \
--with-system-zlib \
--build=x86_64-pc-linux-musl
--build=x86_64-pc-linux-musl \
"${bootstrap:---enable-bootstrap}"
make
make DESTDIR="$1" install