From 3631d53ab22cc66d6bc6ff2112f4dd41b917a3c6 Mon Sep 17 00:00:00 2001 From: Gwenhael Le Moine Date: Wed, 26 Feb 2014 16:08:58 +0100 Subject: [PATCH] download toolchain to $CWD --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index a493770..79d94a1 100644 --- a/build.sh +++ b/build.sh @@ -50,8 +50,8 @@ echo "------ Downloading cross-compiler" #Read this for further information if you run into problems with gcc compiler #http://linux-sunxi.org/Toolchain -wget -c https://launchpadlibrarian.net/$TOOLCHAIN_URL_RANDOM_NUMBER/gcc-linaro-arm-linux-gnueabihf-${TOOLCHAIN_VERSION}_linux.tar.xz -tar xf gcc-linaro-arm-linux-gnueabihf-${TOOLCHAIN_VERSION}_linux.tar.xz +wget -c https://launchpadlibrarian.net/$TOOLCHAIN_URL_RANDOM_NUMBER/gcc-linaro-arm-linux-gnueabihf-${TOOLCHAIN_VERSION}_linux.tar.xz -O $CWD/gcc-linaro-arm-linux-gnueabihf-${TOOLCHAIN_VERSION}_linux.tar.xz +tar xf $CWD/gcc-linaro-arm-linux-gnueabihf-${TOOLCHAIN_VERSION}_linux.tar.xz CROSS_COMPILE=$PWD/gcc-linaro-arm-linux-gnueabihf-${TOOLCHAIN_VERSION}_linux/bin/arm-linux-gnueabihf-