diff options
author | Cem Keylan <cem@ckyln.com> | 2020-06-08 14:47:40 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-06-08 14:47:40 +0300 |
commit | acc549ba95e22617bb9f97e27b4512d51ec0618e (patch) | |
tree | 7779aeef23c664fecc97ead1202b0f3ed73dfcdd | |
parent | a6338cada530083e680db21c4fed7e128828dbf1 (diff) | |
download | repository-acc549ba95e22617bb9f97e27b4512d51ec0618e.tar.gz |
binutils: revert for now
-rwxr-xr-x | core/binutils/build | 37 | ||||
-rw-r--r-- | core/binutils/depends | 4 |
2 files changed, 6 insertions, 35 deletions
diff --git a/core/binutils/build b/core/binutils/build index 06e14461..67a1af16 100755 --- a/core/binutils/build +++ b/core/binutils/build @@ -1,15 +1,12 @@ #!/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" + x86_64) archopts="--build=x86_64-pc-linux-musl \ + --host=x86_64-pc-linux-musl" esac cat > makeinfo <<EOF @@ -27,39 +24,13 @@ export PATH=$PATH:$PWD $archopts \ --enable-targets=x86_64-pep \ --disable-multilib \ - --disable-shared \ --disable-werror \ --disable-gdb \ --disable-nls \ --disable-readline \ --disable-gprof \ --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-opcodes -make configure-binutils -make configure-gas - -make -C opcodes CCLD="$CCLD" -make -C binutils CCLD="$CCLD" -make -C gas CCLD="$CCLD" - -for dir in libiberty bfd libctf ld opcodes binutils gas; do - make -C "$dir" DESTDIR="$1" install -done +make +make DESTDIR="$1" install diff --git a/core/binutils/depends b/core/binutils/depends index f8af9d74..84f56ea4 100644 --- a/core/binutils/depends +++ b/core/binutils/depends @@ -1,2 +1,2 @@ -flex make -zlib make +flex +zlib |