Added Linux binaries

This commit is contained in:
Jarrod Norwell
2024-03-23 19:47:04 +08:00
parent 6a5e8a53d8
commit bd95c8ea5d
44 changed files with 576 additions and 0 deletions

16
binutils/docker.sh Normal file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
set -e
THIS=$(readlink -e $0)
VERSION=$1
UBUNTU=$2
OUT=/src/binutils-$VERSION-$UBUNTU
mkdir build
cd build
/src/binutils-$VERSION/configure
make -j$(nproc)
make -j$(nproc) install DESTDIR=$OUT
cp $THIS $OUT