diff options
Diffstat (limited to 'testing/binutils')
-rwxr-xr-x | testing/binutils/build | 71 | ||||
-rw-r--r-- | testing/binutils/checksums | 1 | ||||
-rw-r--r-- | testing/binutils/depends | 2 | ||||
-rw-r--r-- | testing/binutils/sources | 1 | ||||
-rw-r--r-- | testing/binutils/version | 1 |
5 files changed, 0 insertions, 76 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 |