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
On 5 August 2015 at 12:26, Max Krummenacher max.oss.09@gmail.com wrote:
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.
What happend was that 4.9-2015.06 was mistakingly promoted to 'release' instead of snapshot and removed when we realized what happened. In that process I forgot that meta-linaro had been updated to use it. The CI loop and my laptop didn't empty their source cache and hence didn't notice it was gone. It's now back on releases since that was the simplest way to fix this mess. My apologies for this and I hope this fixes the issues you have been seeing.
regards,
Koen
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
Hi Koen
Am Freitag, den 07.08.2015, 10:46 +0200 schrieb Koen Kooi:
On 5 August 2015 at 12:26, Max Krummenacher max.oss.09@gmail.com wrote:
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...,
What happend was that 4.9-2015.06 was mistakingly promoted to 'release' instead of snapshot and removed when we realized what happened. In that process I forgot that meta-linaro had been updated to use it. The CI loop and my laptop didn't empty their source cache and hence didn't notice it was gone. It's now back on releases since that was the simplest way to fix this mess. My apologies for this and I hope this fixes the issues you have been seeing.
Thank you for looking into this and fixing it. Download works fine for me now and the resulting cross compiler is compiling my next image.
Regards Max
regards,
Koen