testing: Move gcc to core

This commit is contained in:
Dylan Araps 2020-05-08 09:41:52 +03:00
parent 6dd1eb9076
commit a8cc76095d
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
6 changed files with 0 additions and 80 deletions

View File

@ -1,63 +0,0 @@
#!/bin/sh -e
# 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 -i '/m64=/s/lib64/lib/' gcc/gcc/config/i386/t-linux64
sed -i 's/lib64/lib/' gcc/gcc/config/i386/linux64.h
# Build must happen outside of gcc source.
mkdir -p gcc-build
cd gcc-build
export libat_cv_have_ifunc=no
../gcc/configure \
--prefix=/usr \
--disable-multilib \
--disable-symvers \
--disable-libmpx \
--disable-libmudflap \
--disable-libsanitizer \
--disable-werror \
--disable-fixed-point \
--disable-libstdcxx-pch \
--disable-nls \
--without-included-gettext \
--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++ \
--build=x86_64-pc-linux-musl \
--disable-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 {} +
# Some legacy programs will expect cc
ln -s gcc "$1/usr/bin/cc"
# POSIX compliance.
install -Dm755 ../c99 "$1/usr/bin/c99"
# Symlink for LTO.
{
mkdir -p "$1/usr/lib/bfd-plugins"
ln -s /usr/libexec/gcc/x86_64-pc-linux-musl/10.0.1/liblto_plugin.so \
"$1/usr/lib/bfd-plugins/liblto_plugin.so"
}

View File

@ -1,5 +0,0 @@
a72ba391b8114837403a24b0776201411530093b85c70fe56ee2a932cc1d581e gcc-10-20200502.tar.xz
87b565e89a9a684fe4ebeeddb8399dce2599f9c9049854ca8c0dfbdea0e21912 gmp-6.1.2.tar.xz
1d3be708604eae0e42d578ba93b390c2a145f17743a744d8f3f8c2ad5855a38a mpfr-4.0.2.tar.xz
6985c538143c1208dcb1ac42cedad6ff52e267b47e5f970183a3e75125b43c2e mpc-1.1.0.tar.gz
765614b3396d70bca3fa0ae4a813632486c6dca320e2bd13c8c39dca52be4a4c c99

View File

@ -1,4 +0,0 @@
binutils
bison make
flex make
zlib

View File

@ -1,2 +0,0 @@
#!/bin/sh
exec cc -std=c99 "$@"

View File

@ -1,5 +0,0 @@
https://gcc.gnu.org/pub/gcc/snapshots/10-20200502/gcc-10-20200502.tar.xz gcc
https://gmplib.org/download/gmp/gmp-6.1.2.tar.xz gcc/gmp
https://ftp.gnu.org/gnu/mpfr/mpfr-4.0.2.tar.xz gcc/mpfr
https://ftp.gnu.org/gnu/mpc/mpc-1.1.0.tar.gz gcc/mpc
files/c99

View File

@ -1 +0,0 @@
git 6