aboutsummaryrefslogtreecommitdiff
path: root/testing
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2021-03-17 11:33:29 +0300
committerCem Keylan <cem@ckyln.com>2021-03-17 11:33:29 +0300
commit49ddf6f06f09f28dd4b8a487ea6181c78f2d1c1a (patch)
treee6641dc26bdb95a1133f479f02052a3a0029531d /testing
parent186e53bd86465ae6e49c09caf8b55ae5452b0a04 (diff)
downloadrepository-49ddf6f06f09f28dd4b8a487ea6181c78f2d1c1a.tar.gz
[TESTING] drop binutils and gcc
Diffstat (limited to 'testing')
-rwxr-xr-xtesting/binutils/build71
-rw-r--r--testing/binutils/checksums1
-rw-r--r--testing/binutils/depends2
-rw-r--r--testing/binutils/sources1
-rw-r--r--testing/binutils/version1
-rwxr-xr-xtesting/gcc/build87
-rw-r--r--testing/gcc/checksums6
-rw-r--r--testing/gcc/depends4
-rwxr-xr-xtesting/gcc/files/c992
-rw-r--r--testing/gcc/message11
-rw-r--r--testing/gcc/patches/musl-libssp.patch20
-rw-r--r--testing/gcc/sources6
-rw-r--r--testing/gcc/version1
13 files changed, 0 insertions, 213 deletions
diff --git a/testing/binutils/build b/testing/binutils/build
deleted file mode 100755
index 8bc653ee..00000000
--- a/testing/binutils/build
+++ /dev/null
@@ -1,71 +0,0 @@
-#!/bin/sh -e
-
-export LDFLAGS="$LDFLAGS -static"
-export CCLD="${CC:-cc} -all-static"
-
-# Architecture specific build options
-case ${3:-$(uname -m)} in
- i*86) archopts="--build=i686-pc-linux-musl \
- --host=i686-pc-linux-musl \
- --enable-64-bit-bfd" ;;
- x86_64) archopts="--build=x86_64-pc-linux-musl \
- --host=x86_64-pc-linux-musl"
-esac
-
-cat > makeinfo <<EOF
-#!/bin/sh
-printf 'makeinfo (GNU texinfo) 5.2\n'
-EOF
-
-chmod +x makeinfo
-export PATH=$PATH:$PWD
-
-# Word splitting is intentional here.
-# shellcheck disable=2086
-./configure \
- --prefix=/usr \
- $archopts \
- --enable-targets=x86_64-pep \
- --disable-multilib \
- --disable-shared \
- --disable-werror \
- --enable-gold \
- --disable-gdb \
- --disable-nls \
- --disable-readline \
- --disable-gprof \
- --disable-plugins \
- --with-mmap \
- --with-static-standard-libraries \
- --with-system-zlib
-
-# Linking binutils statically is HARD. configure script
-# and the main Makefile straight up ignores our flags.
-#
-# I would have never thought that linking binutils
-# statically would lead to a size reduction, but
-# it gets 2MB smaller (25 to 23MB).
-make configure-bfd
-make configure-ld
-make configure-libctf
-
-make -C libiberty CCLD="$CCLD"
-make -C bfd CCLD="$CCLD"
-make -C libctf CCLD="$CCLD"
-make -C ld CCLD="$CCLD"
-
-make configure-gold
-make -C gold CCLD="$CCLD"
-
-make configure-opcodes
-make -C opcodes CCLD="$CCLD"
-
-make configure-binutils
-make -C binutils CCLD="$CCLD"
-
-make configure-gas
-make -C gas CCLD="$CCLD"
-
-for dir in libiberty bfd libctf ld gold opcodes binutils gas; do
- make -C "$dir" DESTDIR="$1" install
-done
diff --git a/testing/binutils/checksums b/testing/binutils/checksums
deleted file mode 100644
index 06c44f30..00000000
--- a/testing/binutils/checksums
+++ /dev/null
@@ -1 +0,0 @@
-f00b0e8803dc9bab1e2165bd568528135be734df3fabf8d0161828cd56028952 binutils-2.34.tar.xz
diff --git a/testing/binutils/depends b/testing/binutils/depends
deleted file mode 100644
index f8af9d74..00000000
--- a/testing/binutils/depends
+++ /dev/null
@@ -1,2 +0,0 @@
-flex make
-zlib make
diff --git a/testing/binutils/sources b/testing/binutils/sources
deleted file mode 100644
index 37edc21b..00000000
--- a/testing/binutils/sources
+++ /dev/null
@@ -1 +0,0 @@
-https://ftp.gnu.org/gnu/binutils/binutils-2.34.tar.xz
diff --git a/testing/binutils/version b/testing/binutils/version
deleted file mode 100644
index cd72a41e..00000000
--- a/testing/binutils/version
+++ /dev/null
@@ -1 +0,0 @@
-2.34 1
diff --git a/testing/gcc/build b/testing/gcc/build
deleted file mode 100755
index ce766633..00000000
--- a/testing/gcc/build
+++ /dev/null
@@ -1,87 +0,0 @@
-#!/bin/sh -e
-
-export LDFLAGS="-static --static"
-export CFLAGS="-static --static"
-export CC="gcc -static --static"
-
-sys_arch=${3:-$(uname -m)}
-
-sed_i() {
- for file; do :; done
- sed "$@" > _
- cat _ > "$file"; rm -f _
-}
-
-# 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
-
-if [ "${sys_arch#i*86}" ]; then
- # Do not create lib64 directories
- sed_i '/m64=/s/lib64/lib/' gcc/gcc/config/i386/t-linux64
- sed_i 's/lib64/lib/' gcc/gcc/config/i386/linux64.h
-else
- # Apply libssp patch for i686.
- (cd gcc; patch -Np1 < ../musl-libssp.patch)
-fi
-
-case "$sys_arch" in
- i*86) archopts="--build=i686-pc-linux-musl \
- --disable-libssp" ;;
- x86_64) archopts="--build=x86_64-pc-linux-musl"
-esac
-
-# 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-shared \
- --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-threads \
- --enable-tls \
- --enable-languages=c,c++ \
- $archopts \
- --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/$sys_arch-pc-linux-musl/9.2.0/liblto_plugin.so" \
- "$1/usr/lib/bfd-plugins/liblto_plugin.so"
-}
-
diff --git a/testing/gcc/checksums b/testing/gcc/checksums
deleted file mode 100644
index ebe22b10..00000000
--- a/testing/gcc/checksums
+++ /dev/null
@@ -1,6 +0,0 @@
-b6898a23844b656f1b68691c5c012036c2e694ac4b53a8918d4712ad876e7ea2 gcc-10.1.0.tar.xz
-258e6cd51b3fbdfc185c716d55f82c08aff57df0c6fbd143cf6ed561267a1526 gmp-6.2.0.tar.xz
-1d3be708604eae0e42d578ba93b390c2a145f17743a744d8f3f8c2ad5855a38a mpfr-4.0.2.tar.xz
-6985c538143c1208dcb1ac42cedad6ff52e267b47e5f970183a3e75125b43c2e mpc-1.1.0.tar.gz
-765614b3396d70bca3fa0ae4a813632486c6dca320e2bd13c8c39dca52be4a4c c99
-4ece19529edb8e681e1778e977e2ba1d47984ccfcb82505e8b898bb29d659625 musl-libssp.patch
diff --git a/testing/gcc/depends b/testing/gcc/depends
deleted file mode 100644
index 3eb45901..00000000
--- a/testing/gcc/depends
+++ /dev/null
@@ -1,4 +0,0 @@
-binutils
-byacc make
-flex make
-zlib
diff --git a/testing/gcc/files/c99 b/testing/gcc/files/c99
deleted file mode 100755
index 692f0924..00000000
--- a/testing/gcc/files/c99
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec cc -std=c99 "$@"
diff --git a/testing/gcc/message b/testing/gcc/message
deleted file mode 100644
index 75c12d01..00000000
--- a/testing/gcc/message
+++ /dev/null
@@ -1,11 +0,0 @@
-CRITICAL
-
-A bug in GCC 10.1.0 causes kernels built with GCC 10 to
-kernel panic in the second boot stage. This issue can be
-resolved by applying the following patch.
-
-https://dl.carbslinux.org/distfiles/linux-gcc-10-bootfix.patch
-
-You can also visit https://carbslinux.org for a link to the
-patch.
-
diff --git a/testing/gcc/patches/musl-libssp.patch b/testing/gcc/patches/musl-libssp.patch
deleted file mode 100644
index fe5c6143..00000000
--- a/testing/gcc/patches/musl-libssp.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-Author: Timo Teräs <timo.teras@iki.fi>
-
-Alpine musl package provides libssp_nonshared.a. We link to it unconditionally,
-as otherwise we get link failures if some objects are -fstack-protector built
-and final link happens with -fno-stack-protector. This seems to be the common
-case when bootstrapping gcc, the piepatches do not seem to fully fix the
-crosstoolchain and bootstrap sequence wrt. stack-protector flag usage.
-
---- gcc-6.1.0/gcc/gcc.c.orig
-+++ gcc-6.1.0/gcc/gcc.c
-@@ -870,8 +870,7 @@
-
- #ifndef LINK_SSP_SPEC
- #ifdef TARGET_LIBC_PROVIDES_SSP
--#define LINK_SSP_SPEC "%{fstack-protector|fstack-protector-all" \
-- "|fstack-protector-strong|fstack-protector-explicit:}"
-+#define LINK_SSP_SPEC "-lssp_nonshared"
- #else
- #define LINK_SSP_SPEC "%{fstack-protector|fstack-protector-all" \
- "|fstack-protector-strong|fstack-protector-explicit" \
diff --git a/testing/gcc/sources b/testing/gcc/sources
deleted file mode 100644
index 1f9ea011..00000000
--- a/testing/gcc/sources
+++ /dev/null
@@ -1,6 +0,0 @@
-https://gcc.gnu.org/pub/gcc/releases/gcc-10.1.0/gcc-10.1.0.tar.xz gcc
-https://ftp.gnu.org/gnu/gmp/gmp-6.2.0.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
-patches/musl-libssp.patch
diff --git a/testing/gcc/version b/testing/gcc/version
deleted file mode 100644
index 3d0f48ce..00000000
--- a/testing/gcc/version
+++ /dev/null
@@ -1 +0,0 @@
-10.1.0 1