This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
VERSION=2.25 | |
wget http://ftp.gnu.org/gnu/binutils/binutils-$VERSION.tar.gz || exit 1 | |
tar xzf binutils-$VERSION.tar.gz || exit 1 | |
cd binutils-$VERSION || exit 1 | |
./configure --disable-nls --prefix=$(pwd)/bin || exit 1 | |
make configure-host || exit 1 | |
make LDFLAGS="-all-static" || exit 1 | |
make install || exit 1 |