Skip to content
Snippets Groups Projects
Commit af3fd6d4 authored by Joakim Bech's avatar Joakim Bech
Browse files

Use non-SSL version when downloading toolchains


In some cases we've seen errors in Travis saying that it fails to
download the toolchain due to a bad signature. To prevent that from
happening we're only downloading using standard http instead of https.

Signed-off-by: default avatarJoakim Bech <joakim.bech@linaro.org>
Reviewed-by: default avatarJens Wiklander <jens.wiklander@linaro.org>
Reviewed-by: default avatarJerome Forissier <jerome.forissier@linaro.org>
parent 69a8a37b
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@ SRC_AARCH32_GCC ?= http://releases.linaro.org/components/toolchain/binaries/5.
AARCH64_PATH ?= $(TOOLCHAIN_ROOT)/aarch64
AARCH64_CROSS_COMPILE ?= $(AARCH64_PATH)/bin/aarch64-linux-gnu-
AARCH64_GCC_VERSION ?= gcc-linaro-5.3-2016.02-x86_64_aarch64-linux-gnu
SRC_AARCH64_GCC ?= https://releases.linaro.org/components/toolchain/binaries/5.3-2016.02/aarch64-linux-gnu/${AARCH64_GCC_VERSION}.tar.xz
SRC_AARCH64_GCC ?= http://releases.linaro.org/components/toolchain/binaries/5.3-2016.02/aarch64-linux-gnu/${AARCH64_GCC_VERSION}.tar.xz
# Due to relocation error on the 96board edk forest, let's keep the old
# toolchain for a while.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment