mirror of
https://github.com/encounter/gc-wii-binutils.git
synced 2026-07-10 03:18:49 -07:00
10 lines
347 B
Bash
10 lines
347 B
Bash
#!/bin/bash -ex
|
|
PREFIX="$(pwd)/build"
|
|
mkdir source
|
|
wget -qO- https://ftp.gnu.org/gnu/binutils/binutils-2.42.tar.xz | tar -xJ -C source --strip-components=1
|
|
cd source
|
|
./configure --target=powerpc-eabi --prefix="$PREFIX" --disable-nls --disable-shared --disable-gprof --without-zstd
|
|
make -j$(nproc) configure-host
|
|
make -j$(nproc)
|
|
make install-strip
|