diff options
author | Alex Auvolat <alex@adnab.me> | 2018-04-01 17:59:55 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2018-04-01 17:59:55 +0200 |
commit | 8d3f2eaa2008b292594b3cc6e6e43a6149a351c8 (patch) | |
tree | 1f613fa06d2ad1066f2bbe80587db46d331ff208 | |
parent | f28415936e17babbf988500bf5865dbb3e262456 (diff) | |
download | cross-scripts-8d3f2eaa2008b292594b3cc6e6e43a6149a351c8.tar.gz cross-scripts-8d3f2eaa2008b292594b3cc6e6e43a6149a351c8.zip |
-rwxr-xr-x | cross-x86.sh | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/cross-x86.sh b/cross-x86.sh index 16d45d6..87678ef 100755 --- a/cross-x86.sh +++ b/cross-x86.sh @@ -1,6 +1,6 @@ #!/bin/sh -GCC=4.9.1 +GCC=5.4.0 BINUTILS=2.24 ARCH=x86 @@ -30,15 +30,15 @@ mkdir build-gcc-$GCC echo " =>> STARTING BUILD <<=" cd build-binutils-$BINUTILS ../binutils-$BINUTILS/configure --prefix=$PREFIX --target=$TARGET --disable-nls --disable-werror --with-sysroot || exit -make configure-host || exit -make all || exit -make install || exit +make -j4 configure-host || exit +make -j4 all || exit +make -j4 install || exit export PATH=$PATH:$PREFIX/bin cd ../build-gcc-$GCC ../gcc-$GCC/configure --prefix=$PREFIX --target=$TARGET --disable-nls --enable-languages=c,c++ --without-headers --disable-werror || exit -make all-gcc || exit -make install-gcc || exit -make all-target-libgcc || exit -make install-target-libgcc || exit +make -j4 all-gcc || exit +make -j4 install-gcc || exit +make -j4 all-target-libgcc || exit +make -j4 install-target-libgcc || exit |