Hi
I tried to build with meta-linaro, branch master HEAD at eeeccee.
The do_fetch of gcc fails with: WARNING: Failed to fetch URL https://releases.linaro.org/15.06/components/toolchain/gcc-linaro/4.9/gcc-li..., attempting MIRRORS if available ERROR: Fetcher failure: Fetch command failed with exit code 8, output: https://releases.linaro.org/15.06/components/toolchain/gcc-linaro/4.9/gcc-li...: 2015-08-05 11:15:55 ERROR 404: NOT FOUND.
I checked with a browser, gcc 4.9 is really not there.
The following fixed this, however I don't know if that is the right course of action here.
diff --git a/meta-linaro-toolchain/recipes-devtools/gcc/gcc-linaro-4.9.inc b/meta-linaro-toolchain/recipes-devtools/gcc/gcc-linaro-4.9.inc index 852a316..1109b44 100644 --- a/meta-linaro-toolchain/recipes-devtools/gcc/gcc-linaro-4.9.inc +++ b/meta-linaro-toolchain/recipes-devtools/gcc/gcc-linaro-4.9.inc @@ -1,10 +1,10 @@ require recipes-devtools/gcc/gcc-4.9.inc PV = "linaro-${BASEPV}"
-MMYY = "15.06" +MMYY = "15.05" RELEASE = "20${MMYY}" PR = "r${RELEASE}" -BINV = "4.9.4" +BINV = "4.9.3"
FILESPATH = "${@base_set_filespath([ '${FILE_DIRNAME}/gcc-${PV}' ], d)}"
@@ -65,8 +65,8 @@ SRC_URI = "https://releases.linaro.org/%24%7BMMYY%7D/components/toolchain/gcc-linaro/%2... file://use-lib-for-aarch64.patch \ "
-SRC_URI[md5sum] = "e978776eb7b1b0101015c5ffb00d8292" -SRC_URI[sha256sum] = "9a149d46b933d66b85141c0a8341321551f6b56f264adbf59c312eb52c0f52ad" +SRC_URI[md5sum] = "7303374d7877e20aedc9e442cd1d0b2d" +SRC_URI[sha256sum] = "27fcdab3706574a4206c1a756f14d42fc5000156a730ad827e8e70a1043a42ce"
S = "${TMPDIR}/work-shared/gcc-${PV}-${PR}/gcc-${PV}-${RELEASE}" B = "${WORKDIR}/gcc-${PV}-${RELEASE}/build.${HOST_SYS}.${TARGET_SYS}"
Regards Max