All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] toolchain/toolchain-buildroot: glibc 2.32 for ARC needs linux-headers >= 5.1.0
@ 2020-12-07 22:47 Romain Naour
  2020-12-08 12:35 ` [Buildroot] [arc-buildroot] " Alexey Brodkin
  2020-12-29 21:15 ` [Buildroot] " Thomas Petazzoni
  0 siblings, 2 replies; 3+ messages in thread
From: Romain Naour @ 2020-12-07 22:47 UTC (permalink / raw)
  To: buildroot

The ARC support has been merged into glibc 2.32 but it requires
linux-headers >= 5.1.0 [1].

Fixes:
https://gitlab.com/kubu93/toolchains-builder/-/jobs/895774971

[1] https://sourceware.org/git/?p=glibc.git;a=commitdiff;h=0be8ae3679570ff9a193615a035fc8074a8c704f

Signed-off-by: Romain Naour <romain.naour@gmail.com>
Cc: ARC Maintainers <arc-buildroot@synopsys.com>
---
 toolchain/toolchain-buildroot/Config.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/toolchain/toolchain-buildroot/Config.in b/toolchain/toolchain-buildroot/Config.in
index 2058ff1eb9..ff9877ac24 100644
--- a/toolchain/toolchain-buildroot/Config.in
+++ b/toolchain/toolchain-buildroot/Config.in
@@ -56,6 +56,7 @@ config BR2_TOOLCHAIN_BUILDROOT_GLIBC
 	depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_10 || !BR2_powerpc64le
 	depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_5 || !BR2_MIPS_NAN_2008
 	depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_0 || !BR2_RISCV_64
+	depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_1 || !BR2_arc
 	depends on !BR2_powerpc_SPE
 	depends on BR2_RISCV_ISA_RVA || !BR2_riscv
 	select BR2_TOOLCHAIN_USES_GLIBC
-- 
2.25.4

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

* [Buildroot] [arc-buildroot] [PATCH] toolchain/toolchain-buildroot: glibc 2.32 for ARC needs linux-headers >= 5.1.0
  2020-12-07 22:47 [Buildroot] [PATCH] toolchain/toolchain-buildroot: glibc 2.32 for ARC needs linux-headers >= 5.1.0 Romain Naour
@ 2020-12-08 12:35 ` Alexey Brodkin
  2020-12-29 21:15 ` [Buildroot] " Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Alexey Brodkin @ 2020-12-08 12:35 UTC (permalink / raw)
  To: buildroot

Hi Romain,

> From: Romain Naour <romain.naour@gmail.com>
> Sent: Tuesday, December 8, 2020 1:47 AM
> To: buildroot at buildroot.org <buildroot@buildroot.org>
> Cc: Romain Naour <romain.naour@gmail.com>; ARC Maintainers <arc-buildroot@synopsys.com>
> Subject: [arc-buildroot] [PATCH] toolchain/toolchain-buildroot: glibc 2.32 for ARC needs linux-headers >= 5.1.0 
> ?
> The ARC support has been merged into glibc 2.32 but it requires
> linux-headers >= 5.1.0 [1].
> 
> Fixes:
> https://gitlab.com/kubu93/toolchains-builder/-/jobs/895774971

Thanks for?taking care of this one!
 
> [1] https://sourceware.org/git/?p=glibc.git;a=commitdiff;h=0be8ae3679570ff9a193615a035fc8074a8c704f
> 
> Signed-off-by: Romain Naour <romain.naour@gmail.com>
> Cc: ARC Maintainers <arc-buildroot@synopsys.com>

Acked-by: Alexey Brodkin <abrodkin@synopsys.com>

> ---
> ?toolchain/toolchain-buildroot/Config.in | 1 +
> ?1 file changed, 1 insertion(+)
> 
> diff --git a/toolchain/toolchain-buildroot/Config.in b/toolchain/toolchain-buildroot/Config.in
> index 2058ff1eb9..ff9877ac24 100644
> --- a/toolchain/toolchain-buildroot/Config.in
> +++ b/toolchain/toolchain-buildroot/Config.in
> @@ -56,6 +56,7 @@ config BR2_TOOLCHAIN_BUILDROOT_GLIBC
> ???????? depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_10 || !BR2_powerpc64le
> ???????? depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_5 || !BR2_MIPS_NAN_2008
> ???????? depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_0 || !BR2_RISCV_64
> +?????? depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_1 || !BR2_arc
> ???????? depends on !BR2_powerpc_SPE
> ???????? depends on BR2_RISCV_ISA_RVA || !BR2_riscv
> ???????? select BR2_TOOLCHAIN_USES_GLIBC
> -- 
> 2.25.4

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

* [Buildroot] [PATCH] toolchain/toolchain-buildroot: glibc 2.32 for ARC needs linux-headers >= 5.1.0
  2020-12-07 22:47 [Buildroot] [PATCH] toolchain/toolchain-buildroot: glibc 2.32 for ARC needs linux-headers >= 5.1.0 Romain Naour
  2020-12-08 12:35 ` [Buildroot] [arc-buildroot] " Alexey Brodkin
@ 2020-12-29 21:15 ` Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2020-12-29 21:15 UTC (permalink / raw)
  To: buildroot

On Mon,  7 Dec 2020 23:47:19 +0100
Romain Naour <romain.naour@gmail.com> wrote:

> The ARC support has been merged into glibc 2.32 but it requires
> linux-headers >= 5.1.0 [1].
> 
> Fixes:
> https://gitlab.com/kubu93/toolchains-builder/-/jobs/895774971
> 
> [1] https://sourceware.org/git/?p=glibc.git;a=commitdiff;h=0be8ae3679570ff9a193615a035fc8074a8c704f
> 
> Signed-off-by: Romain Naour <romain.naour@gmail.com>
> Cc: ARC Maintainers <arc-buildroot@synopsys.com>
> ---
>  toolchain/toolchain-buildroot/Config.in | 1 +
>  1 file changed, 1 insertion(+)

Applied to master, thanks.

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

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

end of thread, other threads:[~2020-12-29 21:15 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-07 22:47 [Buildroot] [PATCH] toolchain/toolchain-buildroot: glibc 2.32 for ARC needs linux-headers >= 5.1.0 Romain Naour
2020-12-08 12:35 ` [Buildroot] [arc-buildroot] " Alexey Brodkin
2020-12-29 21:15 ` [Buildroot] " Thomas Petazzoni

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.