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

64 lines
1.5 KiB
Plaintext
Raw Normal View History

2019-06-17 14:27:17 +00:00
#!/bin/sh -e
2019-07-14 23:54:58 +00:00
# Make sure gmp is built with generic options.
2020-03-19 06:26:47 +00:00
cp gcc/gmp/configfsf.guess gcc/gmp/config.guess
cp gcc/gmp/configfsf.sub gcc/gmp/config.sub
2019-07-15 03:02:52 +00:00
# Use lib not lib64 by default.
sed -i '/m64=/s/lib64/lib/' gcc/gcc/config/i386/t-linux64
2019-09-07 17:31:35 +00:00
sed -i 's/lib64/lib/' gcc/gcc/config/i386/linux64.h
2019-07-14 23:54:58 +00:00
2019-06-17 14:27:17 +00:00
# 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
2019-07-13 08:57:51 +00:00
../gcc/configure \
2019-06-17 17:46:58 +00:00
--prefix=/usr \
2020-05-08 08:52:08 +00:00
--libexecdir=/usr/lib \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
2019-07-13 07:23:32 +00:00
--disable-multilib \
2019-06-17 17:46:58 +00:00
--disable-symvers \
--disable-libmpx \
--disable-libmudflap \
--disable-libsanitizer \
--disable-werror \
--disable-fixed-point \
--disable-libstdcxx-pch \
2020-03-03 18:57:12 +00:00
--disable-nls \
2019-06-17 17:46:58 +00:00
--enable-checking=release \
--enable-__cxa_atexit \
--enable-default-pie \
--enable-default-ssp \
--enable-shared \
--enable-threads \
--enable-tls \
2019-07-13 15:30:27 +00:00
--enable-languages=c,c++ \
2020-05-08 08:52:08 +00:00
--without-included-gettext \
--with-system-zlib \
2020-05-08 06:41:35 +00:00
--build=x86_64-pc-linux-musl
2019-06-17 14:27:17 +00:00
2019-07-13 07:14:38 +00:00
make
2019-06-17 14:27:17 +00:00
make DESTDIR="$1" install
2019-06-18 18:00:16 +00:00
2019-07-12 07:22:13 +00:00
# Save 35MB.
2020-03-27 09:51:24 +00:00
find "$1" -name libgtkpeer.a -exec rm -f {} +
find "$1" -name libgjsmalsa.a -exec rm -f {} +
find "$1" -name libgij.a -exec rm -f {} +
2019-07-12 07:22:13 +00:00
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"
2020-02-15 19:53:33 +00:00
# Symlink for LTO.
{
mkdir -p "$1/usr/lib/bfd-plugins"
2020-05-08 10:31:17 +00:00
ln -s /usr/lib/gcc/x86_64-pc-linux-musl/10.1.0/liblto_plugin.so \
2020-02-15 19:53:33 +00:00
"$1/usr/lib/bfd-plugins/liblto_plugin.so"
}