aboutsummaryrefslogtreecommitdiff
path: root/core/gcc
diff options
context:
space:
mode:
Diffstat (limited to 'core/gcc')
-rwxr-xr-xcore/gcc/build52
-rw-r--r--core/gcc/checksums5
-rw-r--r--core/gcc/depends5
-rw-r--r--core/gcc/files/c992
-rw-r--r--core/gcc/sources5
-rw-r--r--core/gcc/version1
6 files changed, 70 insertions, 0 deletions
diff --git a/core/gcc/build b/core/gcc/build
new file mode 100755
index 00000000..ef0e87db
--- /dev/null
+++ b/core/gcc/build
@@ -0,0 +1,52 @@
+#!/bin/sh -e
+
+# Make sure gmp is built with generic options.
+cp -v gcc/gmp/configfsf.guess gcc/gmp/config.guess
+cp -v 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 \
+ --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
+
+make
+make DESTDIR="$1" install
+
+# Save 35MB.
+find "$1" -name libgtkpeer.a -delete
+find "$1" -name libgjsmalsa.a -delete
+find "$1" -name libgij.a -delete
+
+# Some legacy programs will expect cc
+ln -s gcc "$1/usr/bin/cc"
+
+# POSIX compliance.
+install -Dm755 ../c99 "$1/usr/bin/c99"
diff --git a/core/gcc/checksums b/core/gcc/checksums
new file mode 100644
index 00000000..30470230
--- /dev/null
+++ b/core/gcc/checksums
@@ -0,0 +1,5 @@
+ea6ef08f121239da5695f76c9b33637a118dcf63e24164422231917fa61fb206 gcc-9.2.0.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
diff --git a/core/gcc/depends b/core/gcc/depends
new file mode 100644
index 00000000..11c84767
--- /dev/null
+++ b/core/gcc/depends
@@ -0,0 +1,5 @@
+binutils
+bison
+flex
+linux-headers
+zlib
diff --git a/core/gcc/files/c99 b/core/gcc/files/c99
new file mode 100644
index 00000000..692f0924
--- /dev/null
+++ b/core/gcc/files/c99
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec cc -std=c99 "$@"
diff --git a/core/gcc/sources b/core/gcc/sources
new file mode 100644
index 00000000..a76e4eeb
--- /dev/null
+++ b/core/gcc/sources
@@ -0,0 +1,5 @@
+https://gcc.gnu.org/pub/gcc/releases/gcc-9.2.0/gcc-9.2.0.tar.xz gcc
+https://gmplib.org/download/gmp/gmp-6.1.2.tar.xz gcc/gmp
+https://www.mpfr.org/mpfr-current/mpfr-4.0.2.tar.xz gcc/mpfr
+https://ftp.gnu.org/gnu/mpc/mpc-1.1.0.tar.gz gcc/mpc
+files/c99
diff --git a/core/gcc/version b/core/gcc/version
new file mode 100644
index 00000000..b821d350
--- /dev/null
+++ b/core/gcc/version
@@ -0,0 +1 @@
+9.2.0 1