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
wget http://ftp.snt.utwente.nl/pub/software/gnu/binutils/binutils-2.29.tar.xz | |
wget ftp://ftp.nluug.nl/mirror/languages/gcc/releases/gcc-7.2.0/gcc-7.2.0.tar.xz | |
wget http://ftp.gnu.org/gnu/glibc/glibc-2.26.tar.xz | |
tar xvf binutils-2.29.tar.xz | |
tar xvf gcc-7.2.0.tar.xz | |
cd binutils-2.29 | |
./configure --target=armv7l-unknown-linux-gnueabihf --disable-multilib | |
make -j9 | |
sudo make install | |
cd .. |