diff options
author | Sumit Garg <sumit.garg@linaro.org> | 2020-04-09 11:59:32 +0530 |
---|---|---|
committer | Nicolas Dechesne <nicolas.dechesne@linaro.org> | 2020-04-10 17:43:57 +0200 |
commit | a414b5555301d0c80facb6dc5a5badbc69036131 (patch) | |
tree | 907d2db3dd5ec3f31cafb96045793e6cb97bbde9 | |
parent | 7603aadcc0c1544588203b6a13ecbf28c50d158d (diff) | |
download | meta-linaro-zeus.tar.gz |
meta-arm-toolchain: use GCC 9.2 source tar ball insted of svnzeus
GCC 9.2 source fetch from svn is quite slow as compared to source tar
ball. So switch to fetch GCC 9.2 source tar ball instead.
Change-Id: I3c87b910d9dd63bda4a80db2e1a37e8398453138
Reported-by: Riku Voipio <riku.voipio@linaro.org>
Suggested-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
Signed-off-by: Sumit Garg <sumit.garg@linaro.org>
Reviewed-by: Diego Sueiro <diego.sueiro@arm.com>
Signed-off-by: Jon Mason <jon.mason@arm.com>
[Reapplying the commit from meta-arm here]
Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
(cherry picked from commit dfa91289f23fe94cfcecfa1165c4d2207707cfc7)
-rw-r--r-- | meta-linaro-toolchain/recipes-devtools/gcc/gcc-arm-9.2.inc | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/meta-linaro-toolchain/recipes-devtools/gcc/gcc-arm-9.2.inc b/meta-linaro-toolchain/recipes-devtools/gcc/gcc-arm-9.2.inc index 366a0701..08e8f7f4 100644 --- a/meta-linaro-toolchain/recipes-devtools/gcc/gcc-arm-9.2.inc +++ b/meta-linaro-toolchain/recipes-devtools/gcc/gcc-arm-9.2.inc @@ -27,10 +27,7 @@ LIC_FILES_CHKSUM = "\ file://COPYING.RUNTIME;md5=fe60d87048567d4fe8c8a0ed2448bcc8 \ " -#BASEURI ?= "${GNU_MIRROR}/gcc/gcc-${PV}/gcc-${PV}.tar.xz" -#RELEASE ?= "5a5ca2d" -#BASEURI ?= "https://repo.or.cz/official-gcc.git/snapshot/${RELEASE}.tar.gz;downloadfilename=gcc-${RELEASE}.tar.gz" -BASEURI ?= "svn://gcc.gnu.org/svn/gcc/branches/ARM;rev=277439;module=arm-9-branch" +BASEURI ?= "https://developer.arm.com/-/media/Files/downloads/gnu-a/9.2-2019.12/srcrel/gcc-arm-src-snapshot-9.2-2019.12.tar.xz" SRC_URI = "\ ${BASEURI} \ file://0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch \ @@ -71,7 +68,9 @@ SRC_URI = "\ file://0036-Re-introduce-spe-commandline-options.patch \ file://0037-Fix-up-libsanitizer-build-with-master-glibc.patch \ " -S = "${TMPDIR}/work-shared/gcc-${PV}-${PR}/arm-9-branch" +SRC_URI[md5sum] = "9c570fc4286825b4e6f67b3d34aade23" + +S = "${TMPDIR}/work-shared/gcc-${PV}-${PR}/gcc-arm-src-snapshot-9.2-2019.12" # For dev release snapshotting #S = "${TMPDIR}/work-shared/gcc-${PV}-${PR}/official-gcc-${RELEASE}" |