summaryrefslogtreecommitdiff
path: root/etc/pkgs/002-binutils.sh
diff options
context:
space:
mode:
Diffstat (limited to 'etc/pkgs/002-binutils.sh')
-rwxr-xr-xetc/pkgs/002-binutils.sh26
1 files changed, 0 insertions, 26 deletions
diff --git a/etc/pkgs/002-binutils.sh b/etc/pkgs/002-binutils.sh
deleted file mode 100755
index 83423be..0000000
--- a/etc/pkgs/002-binutils.sh
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/bash -x
-name=binutils
-version=2.31.1
-url=https://ftp.gnu.org/gnu/binutils/${name}-${version}.tar.gz
-
-curl -LO ${url}
-tar xf ${name}-${version}.tar.gz
-
-mkdir -p binutils
-pushd binutils
- ../${name}-${version}/configure \
- --prefix=${TOOLCHAIN} \
- --target=x86_64-pc-linux-gnu \
- --enable-shared \
- --enable-lto \
- --enable-gold \
- --enable-ld=default \
- --enable-plugins \
- --enable-threads \
- --disable-static \
- --disable-multilib \
- --with-sysroot=/ \
- --with-tune=generic
- make -j4
- make install-strip
-popd