Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/gcc/9.x: fix download url when using upstream gcc for csky
@ 2020-03-12 23:41 Romain Naour
  2020-03-12 23:41 ` [Buildroot] [PATCH] package/gcc: disable gcc 9.x " Romain Naour
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Romain Naour @ 2020-03-12 23:41 UTC (permalink / raw)
  To: buildroot

When the csky cpu support was added [1], the gcc download url was selected
depending on the csky cpu architecture (BR2_csky) rather than the csky gcc
fork version (BR2_GCC_VERSION_CSKY)[2].

When adding gcc 9.x version [3], we forgot to update the condition in order
to use the url to the gcc csky fork only when BR2_GCC_VERSION_CSKY=y.

Due to this error, the toolchain build with the upstream gcc 9.x for csky
cpu is broken due a download error.

Fix this by using BR2_GCC_VERSION_CSKY instead of BR2_csky.

Fixes:
https://gitlab.com/kubu93/buildroot/-/jobs/470072924

[1] 7873a5bd5ebbeb1674293dae6b06b50f0a1f2184
[2] https://git.buildroot.net/buildroot/tree/package/gcc/gcc.mk?id=7873a5bd5ebbeb1674293dae6b06b50f0a1f2184#n19
[3] 089000eccf584d611ad1a8e5400436952450e883

Signed-off-by: Romain Naour <romain.naour@smile.fr>
Cc: Yann E. MORIN <yann.morin.1998@free.fr>
Cc: Guo Ren <guoren@kernel.org>
Cc: Arnout Vandecappelle <arnout@mind.be>
Cc: Peter Korsgaard <peter@korsgaard.com>
---
 package/gcc/gcc.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/gcc/gcc.mk b/package/gcc/gcc.mk
index 128293570d..524ca83db0 100644
--- a/package/gcc/gcc.mk
+++ b/package/gcc/gcc.mk
@@ -13,7 +13,7 @@ GCC_VERSION = $(call qstrip,$(BR2_GCC_VERSION))
 ifeq ($(BR2_GCC_VERSION_ARC),y)
 GCC_SITE = $(call github,foss-for-synopsys-dwc-arc-processors,gcc,$(GCC_VERSION))
 GCC_SOURCE = gcc-$(GCC_VERSION).tar.gz
-else ifeq ($(BR2_csky),y)
+else ifeq ($(BR2_GCC_VERSION_CSKY),y)
 GCC_SITE = $(call github,c-sky,gcc,$(GCC_VERSION))
 GCC_SOURCE = gcc-$(GCC_VERSION).tar.gz
 else
-- 
2.24.1

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

* [Buildroot] [PATCH] package/gcc: disable gcc 9.x for csky
  2020-03-12 23:41 [Buildroot] [PATCH] package/gcc/9.x: fix download url when using upstream gcc for csky Romain Naour
@ 2020-03-12 23:41 ` Romain Naour
  2020-03-14 14:16   ` Thomas Petazzoni
                     ` (2 more replies)
  2020-03-14 14:16 ` [Buildroot] [PATCH] package/gcc/9.x: fix download url when using upstream gcc " Thomas Petazzoni
  2020-03-21 19:59 ` Peter Korsgaard
  2 siblings, 3 replies; 7+ messages in thread
From: Romain Naour @ 2020-03-12 23:41 UTC (permalink / raw)
  To: buildroot

When building a toolchain with upstream gcc 9.x the build
fail due to several issues.

Note: The upstream Binutils support csky target since
release 2.32 but the support was never enabled in the
Buildroot packaging. So the latest version (2.33.1) was
tested here.

[upstream gcc 9.x w/ glibc csky fork with binutils csky for or binutils 2.33.1]
In file included from <command-line>:
./../include/libc-symbols.h:534:26: error: '__EI___errno_location' specifies less restrictive attributes than its target '__errno_location': 'const', 'nothrow' [-Werror=missing-attributes]
  534 |   extern __typeof (name) __EI_##name \

[upstream gcc 9.x w/ glibc 2.30 w/ binutils csky fork]
/tmp/ccThLRhb.s: Assembler messages:
/tmp/ccThLRhb.s:10: Error: invalid or unsupported encoding in .cfi_personality
/tmp/ccThLRhb.s:11: Error: invalid or unsupported encoding in .cfi_lsda

[upstream gcc 9.x w/ glibc 2.30 w/ binutils 2.33.1]
build/elf/librtld.os: in function `__sync_fetch_and_add_2':
libgcc/config/csky/linux-atomic.c:116: undefined reference to `__kernel_cmpxchg'

Currenlty, only the toolchain using binutils, gcc, glibc
fork produce a working toolchain. So disable gcc 9.x for
csky.

Signed-off-by: Romain Naour <romain.naour@smile.fr>
Cc: Yann E. MORIN <yann.morin.1998@free.fr>
Cc: Guo Ren <guoren@kernel.org>
Cc: Arnout Vandecappelle <arnout@mind.be>
Cc: Peter Korsgaard <peter@korsgaard.com>
---
 package/gcc/Config.in.host | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/package/gcc/Config.in.host b/package/gcc/Config.in.host
index 203e98ad42..243310f61e 100644
--- a/package/gcc/Config.in.host
+++ b/package/gcc/Config.in.host
@@ -58,8 +58,9 @@ config BR2_GCC_VERSION_9_X
 	# https://gcc.gnu.org/ml/gcc/2018-04/msg00102.html
 	depends on !BR2_powerpc_SPE
 	# C-SKY sk610 needs abiv1, which is not supported in
-	# upstream gcc
-	depends on !BR2_ck610
+	# upstream gcc. C-SKY gcc upstream support not tested
+	# with upstream binutils and glibc.
+	depends on !BR2_csky
 	select BR2_TOOLCHAIN_GCC_AT_LEAST_9
 
 endchoice
-- 
2.24.1

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

* [Buildroot] [PATCH] package/gcc/9.x: fix download url when using upstream gcc for csky
  2020-03-12 23:41 [Buildroot] [PATCH] package/gcc/9.x: fix download url when using upstream gcc for csky Romain Naour
  2020-03-12 23:41 ` [Buildroot] [PATCH] package/gcc: disable gcc 9.x " Romain Naour
@ 2020-03-14 14:16 ` Thomas Petazzoni
  2020-03-21 19:59 ` Peter Korsgaard
  2 siblings, 0 replies; 7+ messages in thread
From: Thomas Petazzoni @ 2020-03-14 14:16 UTC (permalink / raw)
  To: buildroot

On Fri, 13 Mar 2020 00:41:26 +0100
Romain Naour <romain.naour@smile.fr> wrote:

> When the csky cpu support was added [1], the gcc download url was selected
> depending on the csky cpu architecture (BR2_csky) rather than the csky gcc
> fork version (BR2_GCC_VERSION_CSKY)[2].
> 
> When adding gcc 9.x version [3], we forgot to update the condition in order
> to use the url to the gcc csky fork only when BR2_GCC_VERSION_CSKY=y.
> 
> Due to this error, the toolchain build with the upstream gcc 9.x for csky
> cpu is broken due a download error.
> 
> Fix this by using BR2_GCC_VERSION_CSKY instead of BR2_csky.
> 
> Fixes:
> https://gitlab.com/kubu93/buildroot/-/jobs/470072924
> 
> [1] 7873a5bd5ebbeb1674293dae6b06b50f0a1f2184
> [2] https://git.buildroot.net/buildroot/tree/package/gcc/gcc.mk?id=7873a5bd5ebbeb1674293dae6b06b50f0a1f2184#n19
> [3] 089000eccf584d611ad1a8e5400436952450e883
> 
> Signed-off-by: Romain Naour <romain.naour@smile.fr>
> Cc: Yann E. MORIN <yann.morin.1998@free.fr>
> Cc: Guo Ren <guoren@kernel.org>
> Cc: Arnout Vandecappelle <arnout@mind.be>
> Cc: Peter Korsgaard <peter@korsgaard.com>
> ---
>  package/gcc/gcc.mk | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* [Buildroot] [PATCH] package/gcc: disable gcc 9.x for csky
  2020-03-12 23:41 ` [Buildroot] [PATCH] package/gcc: disable gcc 9.x " Romain Naour
@ 2020-03-14 14:16   ` Thomas Petazzoni
  2020-03-21 20:00   ` Peter Korsgaard
  2020-03-21 20:00   ` Peter Korsgaard
  2 siblings, 0 replies; 7+ messages in thread
From: Thomas Petazzoni @ 2020-03-14 14:16 UTC (permalink / raw)
  To: buildroot

Hello,

On Fri, 13 Mar 2020 00:41:27 +0100
Romain Naour <romain.naour@smile.fr> wrote:

> When building a toolchain with upstream gcc 9.x the build
> fail due to several issues.
> 
> Note: The upstream Binutils support csky target since
> release 2.32 but the support was never enabled in the
> Buildroot packaging. So the latest version (2.33.1) was
> tested here.
> 
> [upstream gcc 9.x w/ glibc csky fork with binutils csky for or binutils 2.33.1]
> In file included from <command-line>:
> ./../include/libc-symbols.h:534:26: error: '__EI___errno_location' specifies less restrictive attributes than its target '__errno_location': 'const', 'nothrow' [-Werror=missing-attributes]
>   534 |   extern __typeof (name) __EI_##name \
> 
> [upstream gcc 9.x w/ glibc 2.30 w/ binutils csky fork]
> /tmp/ccThLRhb.s: Assembler messages:
> /tmp/ccThLRhb.s:10: Error: invalid or unsupported encoding in .cfi_personality
> /tmp/ccThLRhb.s:11: Error: invalid or unsupported encoding in .cfi_lsda
> 
> [upstream gcc 9.x w/ glibc 2.30 w/ binutils 2.33.1]
> build/elf/librtld.os: in function `__sync_fetch_and_add_2':
> libgcc/config/csky/linux-atomic.c:116: undefined reference to `__kernel_cmpxchg'
> 
> Currenlty, only the toolchain using binutils, gcc, glibc
> fork produce a working toolchain. So disable gcc 9.x for
> csky.
> 
> Signed-off-by: Romain Naour <romain.naour@smile.fr>
> Cc: Yann E. MORIN <yann.morin.1998@free.fr>
> Cc: Guo Ren <guoren@kernel.org>
> Cc: Arnout Vandecappelle <arnout@mind.be>
> Cc: Peter Korsgaard <peter@korsgaard.com>
> ---
>  package/gcc/Config.in.host | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* [Buildroot] [PATCH] package/gcc/9.x: fix download url when using upstream gcc for csky
  2020-03-12 23:41 [Buildroot] [PATCH] package/gcc/9.x: fix download url when using upstream gcc for csky Romain Naour
  2020-03-12 23:41 ` [Buildroot] [PATCH] package/gcc: disable gcc 9.x " Romain Naour
  2020-03-14 14:16 ` [Buildroot] [PATCH] package/gcc/9.x: fix download url when using upstream gcc " Thomas Petazzoni
@ 2020-03-21 19:59 ` Peter Korsgaard
  2 siblings, 0 replies; 7+ messages in thread
From: Peter Korsgaard @ 2020-03-21 19:59 UTC (permalink / raw)
  To: buildroot

>>>>> "Romain" == Romain Naour <romain.naour@smile.fr> writes:

 > When the csky cpu support was added [1], the gcc download url was selected
 > depending on the csky cpu architecture (BR2_csky) rather than the csky gcc
 > fork version (BR2_GCC_VERSION_CSKY)[2].

 > When adding gcc 9.x version [3], we forgot to update the condition in order
 > to use the url to the gcc csky fork only when BR2_GCC_VERSION_CSKY=y.

 > Due to this error, the toolchain build with the upstream gcc 9.x for csky
 > cpu is broken due a download error.

 > Fix this by using BR2_GCC_VERSION_CSKY instead of BR2_csky.

 > Fixes:
 > https://gitlab.com/kubu93/buildroot/-/jobs/470072924

 > [1] 7873a5bd5ebbeb1674293dae6b06b50f0a1f2184
 > [2]
 > https://git.buildroot.net/buildroot/tree/package/gcc/gcc.mk?id=7873a5bd5ebbeb1674293dae6b06b50f0a1f2184#n19
 > [3] 089000eccf584d611ad1a8e5400436952450e883

 > Signed-off-by: Romain Naour <romain.naour@smile.fr>
 > Cc: Yann E. MORIN <yann.morin.1998@free.fr>
 > Cc: Guo Ren <guoren@kernel.org>
 > Cc: Arnout Vandecappelle <arnout@mind.be>
 > Cc: Peter Korsgaard <peter@korsgaard.com>

Committed to 2019.11.x and 2020.02.x, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH] package/gcc: disable gcc 9.x for csky
  2020-03-12 23:41 ` [Buildroot] [PATCH] package/gcc: disable gcc 9.x " Romain Naour
  2020-03-14 14:16   ` Thomas Petazzoni
@ 2020-03-21 20:00   ` Peter Korsgaard
  2020-03-21 20:00   ` Peter Korsgaard
  2 siblings, 0 replies; 7+ messages in thread
From: Peter Korsgaard @ 2020-03-21 20:00 UTC (permalink / raw)
  To: buildroot

>>>>> "Romain" == Romain Naour <romain.naour@smile.fr> writes:

 > When building a toolchain with upstream gcc 9.x the build
 > fail due to several issues.

 > Note: The upstream Binutils support csky target since
 > release 2.32 but the support was never enabled in the
 > Buildroot packaging. So the latest version (2.33.1) was
 > tested here.

 > [upstream gcc 9.x w/ glibc csky fork with binutils csky for or binutils 2.33.1]
 > In file included from <command-line>:
 > ./../include/libc-symbols.h:534:26: error: '__EI___errno_location' specifies less restrictive attributes than its target '__errno_location': 'const', 'nothrow' [-Werror=missing-attributes]
 >   534 |   extern __typeof (name) __EI_##name \

 > [upstream gcc 9.x w/ glibc 2.30 w/ binutils csky fork]
 > /tmp/ccThLRhb.s: Assembler messages:
 > /tmp/ccThLRhb.s:10: Error: invalid or unsupported encoding in .cfi_personality
 > /tmp/ccThLRhb.s:11: Error: invalid or unsupported encoding in .cfi_lsda

 > [upstream gcc 9.x w/ glibc 2.30 w/ binutils 2.33.1]
 > build/elf/librtld.os: in function `__sync_fetch_and_add_2':
 > libgcc/config/csky/linux-atomic.c:116: undefined reference to `__kernel_cmpxchg'

 > Currenlty, only the toolchain using binutils, gcc, glibc
 > fork produce a working toolchain. So disable gcc 9.x for
 > csky.

 > Signed-off-by: Romain Naour <romain.naour@smile.fr>
 > Cc: Yann E. MORIN <yann.morin.1998@free.fr>
 > Cc: Guo Ren <guoren@kernel.org>
 > Cc: Arnout Vandecappelle <arnout@mind.be>
 > Cc: Peter Korsgaard <peter@korsgaard.com>


-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH] package/gcc: disable gcc 9.x for csky
  2020-03-12 23:41 ` [Buildroot] [PATCH] package/gcc: disable gcc 9.x " Romain Naour
  2020-03-14 14:16   ` Thomas Petazzoni
  2020-03-21 20:00   ` Peter Korsgaard
@ 2020-03-21 20:00   ` Peter Korsgaard
  2 siblings, 0 replies; 7+ messages in thread
From: Peter Korsgaard @ 2020-03-21 20:00 UTC (permalink / raw)
  To: buildroot

>>>>> "Romain" == Romain Naour <romain.naour@smile.fr> writes:

 > When building a toolchain with upstream gcc 9.x the build
 > fail due to several issues.

 > Note: The upstream Binutils support csky target since
 > release 2.32 but the support was never enabled in the
 > Buildroot packaging. So the latest version (2.33.1) was
 > tested here.

 > [upstream gcc 9.x w/ glibc csky fork with binutils csky for or binutils 2.33.1]
 > In file included from <command-line>:
 > ./../include/libc-symbols.h:534:26: error: '__EI___errno_location' specifies less restrictive attributes than its target '__errno_location': 'const', 'nothrow' [-Werror=missing-attributes]
 >   534 |   extern __typeof (name) __EI_##name \

 > [upstream gcc 9.x w/ glibc 2.30 w/ binutils csky fork]
 > /tmp/ccThLRhb.s: Assembler messages:
 > /tmp/ccThLRhb.s:10: Error: invalid or unsupported encoding in .cfi_personality
 > /tmp/ccThLRhb.s:11: Error: invalid or unsupported encoding in .cfi_lsda

 > [upstream gcc 9.x w/ glibc 2.30 w/ binutils 2.33.1]
 > build/elf/librtld.os: in function `__sync_fetch_and_add_2':
 > libgcc/config/csky/linux-atomic.c:116: undefined reference to `__kernel_cmpxchg'

 > Currenlty, only the toolchain using binutils, gcc, glibc
 > fork produce a working toolchain. So disable gcc 9.x for
 > csky.

 > Signed-off-by: Romain Naour <romain.naour@smile.fr>
 > Cc: Yann E. MORIN <yann.morin.1998@free.fr>
 > Cc: Guo Ren <guoren@kernel.org>
 > Cc: Arnout Vandecappelle <arnout@mind.be>
 > Cc: Peter Korsgaard <peter@korsgaard.com>

Committed to 2019.11.x and 2020.02.x, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2020-03-21 20:00 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-12 23:41 [Buildroot] [PATCH] package/gcc/9.x: fix download url when using upstream gcc for csky Romain Naour
2020-03-12 23:41 ` [Buildroot] [PATCH] package/gcc: disable gcc 9.x " Romain Naour
2020-03-14 14:16   ` Thomas Petazzoni
2020-03-21 20:00   ` Peter Korsgaard
2020-03-21 20:00   ` Peter Korsgaard
2020-03-14 14:16 ` [Buildroot] [PATCH] package/gcc/9.x: fix download url when using upstream gcc " Thomas Petazzoni
2020-03-21 19:59 ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox