aboutsummaryrefslogtreecommitdiff
path: root/helper
diff options
context:
space:
mode:
authorAnders Roxell <anders.roxell@linaro.org>2015-05-11 16:28:20 +0200
committerAnders Roxell <anders.roxell@linaro.org>2015-07-20 22:37:44 +0200
commit15aa48712bac325a3e002bb4070471ff1db73a9b (patch)
treebc28cafa00c582cb8db1f5bc7fbbdfd9746b0307 /helper
parentb82caebfa4cdc84cefe0791d4d1aa4cb2301a829 (diff)
helper: toolchain: bump to release 15.02
Reviewed-by: Mike Holmes <mike.holmes@linaro.org> Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
Diffstat (limited to 'helper')
-rw-r--r--helper/toolchain10
1 files changed, 5 insertions, 5 deletions
diff --git a/helper/toolchain b/helper/toolchain
index 302bbf6..63cfc9e 100644
--- a/helper/toolchain
+++ b/helper/toolchain
@@ -1,6 +1,6 @@
[ -n "$TOOLCHAIN_HELPER" ] && return || readonly TOOLCHAIN_HELPER=1
-export TOOLCHAIN_RELEASE="${TOOLCHAIN_RELEASE:-14.09}"
+export TOOLCHAIN_RELEASE="${TOOLCHAIN_RELEASE:-15.02}"
tc_usage()
{
@@ -12,10 +12,10 @@ tc_usage()
find_toolchain_to_download()
{
- toolchain_url="http://releases.linaro.org/${TOOLCHAIN_RELEASE}/components/toolchain/binaries/gcc-linaro-arm-linux-gnueabihf-4.9-20${TOOLCHAIN_RELEASE}_linux.tar.xz"
- [[ ${ARCH} == "armeb" ]] && toolchain_url="http://releases.linaro.org/${TOOLCHAIN_RELEASE}/components/toolchain/binaries/gcc-linaro-armeb-linux-gnueabihf-4.9-20${TOOLCHAIN_RELEASE}_linux.tar.xz"
- [[ ${ARCH} == "arm64" ]] && toolchain_url="http://releases.linaro.org/${TOOLCHAIN_RELEASE}/components/toolchain/binaries/gcc-linaro-aarch64-linux-gnu-4.9-20${TOOLCHAIN_RELEASE}_linux.tar.xz"
- [[ ${ARCH} == "arm64be" ]] && toolchain_url="http://releases.linaro.org/${TOOLCHAIN_RELEASE}/components/toolchain/binaries/gcc-linaro-aarch64_be-linux-gnu-4.9-20${TOOLCHAIN_RELEASE}_linux.tar.xz"
+ toolchain_url="http://releases.linaro.org/${TOOLCHAIN_RELEASE}/components/toolchain/binaries/arm-linux-gnueabihf/gcc-linaro-4.9-20${TOOLCHAIN_RELEASE}-3-x86_64_arm-linux-gnueabihf.tar.xz"
+ [[ ${ARCH} == "armeb" ]] && toolchain_url="http://releases.linaro.org/${TOOLCHAIN_RELEASE}/components/toolchain/binaries/armeb-linux-gnueabihf/gcc-linaro-4.9-20${TOOLCHAIN_RELEASE}-3-x86_64_armeb-linux-gnueabihf.tar.xz"
+ [[ ${ARCH} == "arm64" ]] && toolchain_url="http://releases.linaro.org/${TOOLCHAIN_RELEASE}/components/toolchain/binaries/aarch64-linux-gnu/gcc-linaro-4.9-20${TOOLCHAIN_RELEASE}-3-x86_64_aarch64-linux-gnu.tar.xz"
+ [[ ${ARCH} == "arm64be" ]] && toolchain_url="http://releases.linaro.org/${TOOLCHAIN_RELEASE}/components/toolchain/binaries/aarch64_be-linux-gnu/gcc-linaro-4.9-20${TOOLCHAIN_RELEASE}-3-x86_64_aarch64_be-linux-gnu.tar.xz"
echo $toolchain_url
export tcbindir="${tcbindir:-$HOME/$ARCH-tc-${TOOLCHAIN_RELEASE}/bin}"
mkdir -p $(dirname ${tcbindir})