mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-15 11:10:08 -07:00
78 lines
2.0 KiB
Bash
Executable File
78 lines
2.0 KiB
Bash
Executable File
#!/bin/sh -e
|
|
|
|
patch -p1 < firefox-fix.patch
|
|
|
|
# Make sure gmp is built with generic options.
|
|
cp gcc/gmp/configfsf.guess gcc/gmp/config.guess
|
|
cp gcc/gmp/configfsf.sub gcc/gmp/config.sub
|
|
|
|
# Use lib not lib64 by default.
|
|
sed '/m64=/s/lib64/lib/' gcc/gcc/config/i386/t-linux64 > _
|
|
mv -f _ gcc/gcc/config/i386/t-linux64
|
|
sed 's/lib64/lib/' gcc/gcc/config/i386/linux64.h > _
|
|
mv -f _ gcc/gcc/config/i386/linux64.h
|
|
|
|
# Build must happen outside of gcc source.
|
|
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" || gcc_version=null
|
|
|
|
# Skip the bootstrap process if we are able.
|
|
case $2 in "$gcc_version"*)
|
|
printf '%s\n' "Minor version difference, disabling bootstrap."
|
|
bootstrap=--disable-bootstrap
|
|
esac
|
|
|
|
export libat_cv_have_ifunc=no
|
|
|
|
../gcc/configure \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--disable-multilib \
|
|
--disable-symvers \
|
|
--disable-libmpx \
|
|
--disable-libmudflap \
|
|
--disable-libsanitizer \
|
|
--disable-werror \
|
|
--disable-fixed-point \
|
|
--disable-libstdcxx-pch \
|
|
--disable-nls \
|
|
--enable-checking=release \
|
|
--enable-__cxa_atexit \
|
|
--enable-default-pie \
|
|
--enable-default-ssp \
|
|
--enable-shared \
|
|
--enable-threads \
|
|
--enable-tls \
|
|
--enable-initfini-array \
|
|
--enable-languages=c,c++ \
|
|
--without-included-gettext \
|
|
--with-zstd=no \
|
|
--with-system-zlib \
|
|
--build=x86_64-pc-linux-musl \
|
|
"${bootstrap:---enable-bootstrap}"
|
|
|
|
make
|
|
make DESTDIR="$1" install
|
|
|
|
# Save 35MB.
|
|
find "$1" -name libgtkpeer.a -exec rm -f {} +
|
|
find "$1" -name libgjsmalsa.a -exec rm -f {} +
|
|
find "$1" -name libgij.a -exec rm -f {} +
|
|
|
|
ln -sf gcc "$1/usr/bin/cc"
|
|
cp -f ../c99 "$1/usr/bin"
|
|
|
|
# Symlink for LTO.
|
|
{
|
|
mkdir -p "$1/usr/lib/bfd-plugins"
|
|
|
|
ln -s "/usr/lib/gcc/x86_64-pc-linux-musl/$2/liblto_plugin.so" \
|
|
"$1/usr/lib/bfd-plugins/liblto_plugin.so"
|
|
}
|