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