diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-01-28 12:57:22 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-01-28 12:57:22 -0500 |
commit | 92f2ea6ed46ffae5302a47452d816b5dc5784eb7 (patch) | |
tree | 9afe6716cf918bf38bcdd00434bdbe7fd16a78d2 /etc/pkgs/002-binutils.sh | |
parent | 90136ee5fcaed3bd2f243bff94215f9a508aabe9 (diff) | |
download | docker-python-92f2ea6ed46ffae5302a47452d816b5dc5784eb7.tar.gz |
Reorder tools
Diffstat (limited to 'etc/pkgs/002-binutils.sh')
-rwxr-xr-x | etc/pkgs/002-binutils.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/etc/pkgs/002-binutils.sh b/etc/pkgs/002-binutils.sh new file mode 100755 index 0000000..bd119fe --- /dev/null +++ b/etc/pkgs/002-binutils.sh @@ -0,0 +1,16 @@ +#!/bin/bash +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} \ + --with-sysroot=${TOOLCHAIN} + make -j${_maxjobs} + make install +popd |