All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 2/2] ci: update Arm source and binary gcc version to 10.3
       [not found] <20220317111232.488767-1-sumit.garg@linaro.org>
@ 2022-03-17 11:12 ` Sumit Garg
  2022-03-18 20:04   ` [meta-arm] " Jon Mason
       [not found] ` <YjTlc7c0Ecaj0Upu@kudzu.us>
  1 sibling, 1 reply; 3+ messages in thread
From: Sumit Garg @ 2022-03-17 11:12 UTC (permalink / raw)
  To: meta-arm
  Cc: jon.mason, ross.burton, denis, daniel.thompson, ralph.siemsen,
	Sumit Garg

Signed-off-by: Sumit Garg <sumit.garg@linaro.org>
---
 ci/armgcc.yml            |  2 +-
 ci/get-binary-toolchains | 10 +++++-----
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/ci/armgcc.yml b/ci/armgcc.yml
index d63ae24..d46f0b3 100644
--- a/ci/armgcc.yml
+++ b/ci/armgcc.yml
@@ -3,4 +3,4 @@ header:
 
 local_conf_header:
   cc: |
-    GCCVERSION = "arm-10.3"
+    GCCVERSION = "arm-11.2"
diff --git a/ci/get-binary-toolchains b/ci/get-binary-toolchains
index 838342a..bfdd8c5 100755
--- a/ci/get-binary-toolchains
+++ b/ci/get-binary-toolchains
@@ -2,7 +2,7 @@
 set -u
 
 HOST_ARCH=$(uname -m)
-VER="10.3-2021.07"
+VER="11.2-2022.02"
 
 DOWNLOAD_DIR=$1
 TOOLCHAIN_DIR=$2
@@ -15,18 +15,18 @@ if [ $HOST_ARCH = "aarch64" ]; then
 	#AArch64 Linux hosted cross compilers
 
 	#AArch32 target with hard float (arm-none-linux-gnueabihf)
-	wget -P $DOWNLOAD_DIR -nc https://developer.arm.com/-/media/Files/downloads/gnu-a/$VER/binrel/gcc-arm-$VER-$HOST_ARCH-arm-none-linux-gnueabihf.tar.xz
+	wget -P $DOWNLOAD_DIR -nc https://developer.arm.com/-/media/Files/downloads/gnu/$VER/binrel/gcc-arm-$VER-$HOST_ARCH-arm-none-linux-gnueabihf.tar.xz
 elif [ $HOST_ARCH = "x86_64" ]; then
 	#x86_64 Linux hosted cross compilers
 
 	#AArch32 target with hard float (arm-linux-none-gnueabihf)
-	wget -P $DOWNLOAD_DIR -nc https://developer.arm.com/-/media/Files/downloads/gnu-a/$VER/binrel/gcc-arm-$VER-$HOST_ARCH-arm-none-linux-gnueabihf.tar.xz
+	wget -P $DOWNLOAD_DIR -nc https://developer.arm.com/-/media/Files/downloads/gnu/$VER/binrel/gcc-arm-$VER-$HOST_ARCH-arm-none-linux-gnueabihf.tar.xz
 
 	#AArch64 GNU/Linux target (aarch64-none-linux-gnu)
-	wget -P $DOWNLOAD_DIR -nc https://developer.arm.com/-/media/Files/downloads/gnu-a/$VER/binrel/gcc-arm-$VER-$HOST_ARCH-aarch64-none-linux-gnu.tar.xz
+	wget -P $DOWNLOAD_DIR -nc https://developer.arm.com/-/media/Files/downloads/gnu/$VER/binrel/gcc-arm-$VER-$HOST_ARCH-aarch64-none-linux-gnu.tar.xz
 
 	#AArch64 GNU/Linux target (aarch64_be-none-linux-gnu)
-	wget -P $DOWNLOAD_DIR -nc https://developer.arm.com/-/media/Files/downloads/gnu-a/$VER/binrel/gcc-arm-$VER-$HOST_ARCH-aarch64_be-none-linux-gnu.tar.xz
+	wget -P $DOWNLOAD_DIR -nc https://developer.arm.com/-/media/Files/downloads/gnu/$VER/binrel/gcc-arm-$VER-$HOST_ARCH-aarch64_be-none-linux-gnu.tar.xz
 else
 	echo "ERROR - Unknown build arch of $HOST_ARCH"
 	exit 1
-- 
2.17.1



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [meta-arm] [PATCH 2/2] ci: update Arm source and binary gcc version to 10.3
  2022-03-17 11:12 ` [PATCH 2/2] ci: update Arm source and binary gcc version to 10.3 Sumit Garg
@ 2022-03-18 20:04   ` Jon Mason
  0 siblings, 0 replies; 3+ messages in thread
From: Jon Mason @ 2022-03-18 20:04 UTC (permalink / raw)
  To: Sumit Garg
  Cc: meta-arm, jon.mason, ross.burton, denis, daniel.thompson, ralph.siemsen

On Thu, Mar 17, 2022 at 04:42:32PM +0530, Sumit Garg wrote:
> Signed-off-by: Sumit Garg <sumit.garg@linaro.org>

The subject should be 11.2, not 10.3

Also, this should really be part of the previous patch, as the
previous one won't pass CI without this one (and thus isn't atomic for
bisecting).

Thanks,
Jon

> ---
>  ci/armgcc.yml            |  2 +-
>  ci/get-binary-toolchains | 10 +++++-----
>  2 files changed, 6 insertions(+), 6 deletions(-)
> 
> diff --git a/ci/armgcc.yml b/ci/armgcc.yml
> index d63ae24..d46f0b3 100644
> --- a/ci/armgcc.yml
> +++ b/ci/armgcc.yml
> @@ -3,4 +3,4 @@ header:
>  
>  local_conf_header:
>    cc: |
> -    GCCVERSION = "arm-10.3"
> +    GCCVERSION = "arm-11.2"
> diff --git a/ci/get-binary-toolchains b/ci/get-binary-toolchains
> index 838342a..bfdd8c5 100755
> --- a/ci/get-binary-toolchains
> +++ b/ci/get-binary-toolchains
> @@ -2,7 +2,7 @@
>  set -u
>  
>  HOST_ARCH=$(uname -m)
> -VER="10.3-2021.07"
> +VER="11.2-2022.02"
>  
>  DOWNLOAD_DIR=$1
>  TOOLCHAIN_DIR=$2
> @@ -15,18 +15,18 @@ if [ $HOST_ARCH = "aarch64" ]; then
>  	#AArch64 Linux hosted cross compilers
>  
>  	#AArch32 target with hard float (arm-none-linux-gnueabihf)
> -	wget -P $DOWNLOAD_DIR -nc https://developer.arm.com/-/media/Files/downloads/gnu-a/$VER/binrel/gcc-arm-$VER-$HOST_ARCH-arm-none-linux-gnueabihf.tar.xz
> +	wget -P $DOWNLOAD_DIR -nc https://developer.arm.com/-/media/Files/downloads/gnu/$VER/binrel/gcc-arm-$VER-$HOST_ARCH-arm-none-linux-gnueabihf.tar.xz
>  elif [ $HOST_ARCH = "x86_64" ]; then
>  	#x86_64 Linux hosted cross compilers
>  
>  	#AArch32 target with hard float (arm-linux-none-gnueabihf)
> -	wget -P $DOWNLOAD_DIR -nc https://developer.arm.com/-/media/Files/downloads/gnu-a/$VER/binrel/gcc-arm-$VER-$HOST_ARCH-arm-none-linux-gnueabihf.tar.xz
> +	wget -P $DOWNLOAD_DIR -nc https://developer.arm.com/-/media/Files/downloads/gnu/$VER/binrel/gcc-arm-$VER-$HOST_ARCH-arm-none-linux-gnueabihf.tar.xz
>  
>  	#AArch64 GNU/Linux target (aarch64-none-linux-gnu)
> -	wget -P $DOWNLOAD_DIR -nc https://developer.arm.com/-/media/Files/downloads/gnu-a/$VER/binrel/gcc-arm-$VER-$HOST_ARCH-aarch64-none-linux-gnu.tar.xz
> +	wget -P $DOWNLOAD_DIR -nc https://developer.arm.com/-/media/Files/downloads/gnu/$VER/binrel/gcc-arm-$VER-$HOST_ARCH-aarch64-none-linux-gnu.tar.xz
>  
>  	#AArch64 GNU/Linux target (aarch64_be-none-linux-gnu)
> -	wget -P $DOWNLOAD_DIR -nc https://developer.arm.com/-/media/Files/downloads/gnu-a/$VER/binrel/gcc-arm-$VER-$HOST_ARCH-aarch64_be-none-linux-gnu.tar.xz
> +	wget -P $DOWNLOAD_DIR -nc https://developer.arm.com/-/media/Files/downloads/gnu/$VER/binrel/gcc-arm-$VER-$HOST_ARCH-aarch64_be-none-linux-gnu.tar.xz
>  else
>  	echo "ERROR - Unknown build arch of $HOST_ARCH"
>  	exit 1
> -- 
> 2.17.1
> 

> 
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#3179): https://lists.yoctoproject.org/g/meta-arm/message/3179
> Mute This Topic: https://lists.yoctoproject.org/mt/89842776/3616920
> Group Owner: meta-arm+owner@lists.yoctoproject.org
> Unsubscribe: https://lists.yoctoproject.org/g/meta-arm/unsub [jdmason@kudzu.us]
> -=-=-=-=-=-=-=-=-=-=-=-
> 



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [meta-arm] [PATCH 1/2] arm-toolchain: Uprev 10.3 -> 11.2
       [not found] ` <YjTlc7c0Ecaj0Upu@kudzu.us>
@ 2022-03-18 21:04   ` Denys Dmytriyenko
  0 siblings, 0 replies; 3+ messages in thread
From: Denys Dmytriyenko @ 2022-03-18 21:04 UTC (permalink / raw)
  To: Jon Mason
  Cc: Sumit Garg, meta-arm, jon.mason, ross.burton, daniel.thompson,
	ralph.siemsen

On Fri, Mar 18, 2022 at 04:02:59PM -0400, Jon Mason wrote:
> On Thu, Mar 17, 2022 at 04:42:31PM +0530, Sumit Garg wrote:
> > Update Arm GCC toolchain recipe and patches accordingly.
> 
> I'm seeing errors when I tried to compile this for fvp-base-arm32 using
> the binary toolchain (the source based one works fine).  I see

Hmm, I was beginning to wonder if external-arm-toolchain also needed any 
updates for 11.2...

But the log doesn't seem to be very useful for whatever reason.


> ERROR: external-arm-toolchain-2022.02-r0 do_install: ExecutionError('/builder/meta-arm/build/tmp/work/armv7at2hf-vfp-poky-linux-gnueabi/external-arm-toolchain/2022.02-r0/temp/run.do_install.3421002', 2, None, None)
> ERROR: Logfile of failure stored in: /builder/meta-arm/build/tmp/work/armv7at2hf-vfp-poky-linux-gnueabi/external-arm-toolchain/2022.02-r0/temp/log.do_install.3421002
> Log data follows:
> | DEBUG: Executing python function extend_recipe_sysroot
> | NOTE: Direct dependencies are ['virtual:native:/builder/meta-arm/poky/meta/recipes-devtools/patch/patch_2.7.6.bb:do_populate_sysroot', 'virtual:native:/builder/meta-arm/poky/meta/recipes-devtools/pseudo/pseudo_git.bb:do_populate_sysroot', '/builder/meta-arm/poky/meta/recipes-devtools/quilt/quilt-native_0.67.bb:do_populate_sysroot']
> | NOTE: Installed into sysroot: []
> | NOTE: Skipping as already exists in sysroot: ['patch-native', 'pseudo-native', 'quilt-native', 'attr-native', 'libtool-native', 'gettext-minimal-native', 'texinfo-dummy-native']
> | DEBUG: Python function extend_recipe_sysroot finished
> | DEBUG: Executing shell function do_install
> | WARNING: exit code 2 from a shell command.
> ERROR: Task (/builder/meta-arm/meta-arm-toolchain/recipes-devtools/external-arm-toolchain/external-arm-toolchain.bb:do_install) failed with exit code '1'
> NOTE: Tasks Summary: Attempted 2066 tasks of which 1551 didn't need to be rerun and 1 failed.
> 
> and the complete log is the same
> 
> DEBUG: Executing python function extend_recipe_sysroot
> NOTE: Direct dependencies are ['virtual:native:/builder/meta-arm/poky/meta/recipes-devtools/patch/patch_2.7.6.bb:do_populate_sysroot', 'virtual:native:/builder/meta-arm/poky/meta/recipes-devtools/pseudo/pseudo_git.bb:do_populate_sysroot', '/builder/meta-arm/poky/meta/recipes-devtools/quilt/quilt-native_0.67.bb:do_populate_sysroot']
> NOTE: Installed into sysroot: []
> NOTE: Skipping as already exists in sysroot: ['patch-native', 'pseudo-native', 'quilt-native', 'attr-native', 'libtool-native', 'gettext-minimal-native', 'texinfo-dummy-native']
> DEBUG: Python function extend_recipe_sysroot finished
> DEBUG: Executing shell function do_install
> WARNING: exit code 2 from a shell command.
> 
> You can see the full CI at
> https://gitlab.com/jonmason00/meta-arm/-/pipelines/495926216
> 
> It is working fine on the old version.  So, I wonder if something
> broke with the merging of the toolchains.  FWIW, I tried this series
> some time ago on my own and was seeing similar results.  See
> https://gitlab.com/jonmason00/meta-arm/-/pipelines/473381131
> 
> Also, this email isn't on lore (for some reason), but the second one
> is.  See https://lore.kernel.org/yocto-meta-arm/
> My delay in responding is (partly) because of this.
> 
> Thanks,
> Jon


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-03-18 21:04 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20220317111232.488767-1-sumit.garg@linaro.org>
2022-03-17 11:12 ` [PATCH 2/2] ci: update Arm source and binary gcc version to 10.3 Sumit Garg
2022-03-18 20:04   ` [meta-arm] " Jon Mason
     [not found] ` <YjTlc7c0Ecaj0Upu@kudzu.us>
2022-03-18 21:04   ` [meta-arm] [PATCH 1/2] arm-toolchain: Uprev 10.3 -> 11.2 Denys Dmytriyenko

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.