2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-07 08:22:28 +00:00
repo/core/gcc/build

57 lines
1.2 KiB
Plaintext
Raw Normal View History

2019-06-17 14:27:17 +00:00
#!/bin/sh -e
# Build must happen outside of gcc source.
2019-06-17 17:50:37 +00:00
mkdir -p gcc-build
2019-06-21 11:25:22 +00:00
cd gcc-build
2019-06-17 14:27:17 +00:00
export libat_cv_have_ifunc=no
machine=$(gcc -dumpmachine)
2019-06-17 14:27:17 +00:00
2019-07-12 07:22:13 +00:00
# Unset CFLAGS/CXXFLAGS to make 'gcc' build as generic.
unset CFLAGS CXXFLAGS
2019-06-17 17:46:58 +00:00
../gcc/configure \
--prefix=/usr \
2019-07-12 07:22:13 +00:00
--disable-bootstrap \
2019-06-17 17:46:58 +00:00
--disable-multilib \
--disable-symvers \
--disable-libmpx \
--disable-libmudflap \
--disable-libsanitizer \
--disable-nls \
--disable-werror \
--disable-fixed-point \
--disable-libstdcxx-pch \
--enable-checking=release \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--with-system-zlib \
--enable-__cxa_atexit \
--enable-default-pie \
--enable-default-ssp \
--enable-shared \
--enable-threads \
--enable-tls \
--enable-languages=c,c++ \
2019-07-12 08:15:53 +00:00
--build="$machine" \
--with-tune=generic \
--with-arch=x86-64 \
--with-cpu-64=generic
2019-06-17 14:27:17 +00:00
make BOOT_CFLAGS='-O'
make DESTDIR="$1" install
2019-06-18 18:00:16 +00:00
2019-07-12 07:22:13 +00:00
# Save 35MB.
find "$1" -name libgtkpeer.a -delete
find "$1" -name libgjsmalsa.a -delete
find "$1" -name libgij.a -delete
2019-06-18 18:00:16 +00:00
# Remove all info files.
rm -rf "$1/usr/share/info"
2019-06-19 04:43:03 +00:00
# Some legacy programs will expect cc
2019-06-19 04:53:01 +00:00
ln -s gcc "$1/usr/bin/cc"
# POSIX compliance.
install -Dm755 ../c99 "$1/usr/bin/c99"