mirror of
https://github.com/sudachi-emu/linux-binaries.git
synced 2024-11-22 05:31:04 +01:00
16 lines
223 B
Bash
16 lines
223 B
Bash
#!/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
|