All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCHv2] toolchain: Add glibc support for ARCv2
@ 2017-10-10 13:31 Evgeniy Didin
  2017-10-10 14:15 ` Alexey Brodkin
  2017-10-10 21:17 ` Thomas Petazzoni
  0 siblings, 2 replies; 6+ messages in thread
From: Evgeniy Didin @ 2017-10-10 13:31 UTC (permalink / raw)
  To: buildroot

Finally there's working ARC port of glibc thanks to Vineet and Cuper!
This port is based on pretty recent glibc's master branch and ARC
changes are being reviewed now in glibc's mailing list.

Thus we again have to use sources from our GitHub but as soon as there's
a glibc release with our patches applied we'll switch to upstream releases
and will drop our glibc GitHub repo alltogether.

Note now we cut tags in glibc repo simultaneously with tags
in Binutils and GCC repos and so to make sure everything works in the best
way we plan to update glibc tag together with Binutils and GCC.

Also note as of today ARCompact (AKA ARCv1 ISA) is not supported in glibc
but we plan to fix it soonish so for now we make glibc intentionally
dependent on archs38.

Also note we are not creating directory "2.26" because all patches for glibc
ver 2.26 applies to arc glibc port.

Signed-off-by: Evgeniy Didin <didin@synopsys.com>
CC: Alexey Brodkin <abrodkin@synopsys.com>
CC: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
CC: Waldemar Brodkorb <wbx@openadk.org>
CC: Romain Naour <romain.naour@gmail.com>
Cc: Cupertino Miranda <cmiranda@synopsys.com>
Cc: Vineet Gupta <vgupta@synopsys.com>
Cc: Anton Kolesov <akolesov@synopsys.com>

---
 package/glibc/glibc.hash                | 3 +++
 package/glibc/glibc.mk                  | 8 +++++++-
 toolchain/toolchain-buildroot/Config.in | 2 +-
 3 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/package/glibc/glibc.hash b/package/glibc/glibc.hash
index afae10fa57..5458102a8a 100644
--- a/package/glibc/glibc.hash
+++ b/package/glibc/glibc.hash
@@ -1,2 +1,5 @@
 # Locally calculated after checking pgp signature (glibc)
 sha256	e54e0a934cd2bc94429be79da5e9385898d2306b9eaf3c92d5a77af96190f6bd	glibc-2.26.tar.xz
+# Locally calculated (fetched from Github)
+sha256  adf2dd19a76705a6fb748492eba30cb0be621422190116382a891a3cf099e895     glibc-arc-2017.09-eng010.tar.gz
+
diff --git a/package/glibc/glibc.mk b/package/glibc/glibc.mk
index f5d028239f..ea31847c51 100644
--- a/package/glibc/glibc.mk
+++ b/package/glibc/glibc.mk
@@ -3,10 +3,16 @@
 # glibc
 #
 ################################################################################
-
+ifeq ($(BR2_arc),y)
+GLIBC_VERSION =  arc-2017.09-eng010
+GLIBC_SITE = $(call github,foss-for-synopsys-dwc-arc-processors,glibc,$(GLIBC_VERSION))
+GLIBC_SOURCE = glibc-$(GLIBC_VERSION).tar.gz
+else
 GLIBC_VERSION = 2.26
 GLIBC_SITE = $(BR2_GNU_MIRROR)/libc
 GLIBC_SOURCE = glibc-$(GLIBC_VERSION).tar.xz
+endif
+
 GLIBC_SRC_SUBDIR = .
 
 GLIBC_LICENSE = GPL-2.0+ (programs), LGPL-2.1+, BSD-3-Clause, MIT (library)
diff --git a/toolchain/toolchain-buildroot/Config.in b/toolchain/toolchain-buildroot/Config.in
index ac6017fd6e..25ab667927 100644
--- a/toolchain/toolchain-buildroot/Config.in
+++ b/toolchain/toolchain-buildroot/Config.in
@@ -47,7 +47,7 @@ config BR2_TOOLCHAIN_BUILDROOT_GLIBC
 		   BR2_mipsel      || BR2_mips64     || BR2_mips64el|| \
 		   BR2_powerpc     || BR2_powerpc64  || BR2_powerpc64le || \
 		   BR2_sh          || BR2_sparc64    || BR2_x86_64 || \
-		   BR2_microblaze || BR2_nios2
+		   BR2_microblaze  || BR2_nios2      || BR2_archs38
 	depends on BR2_USE_MMU
 	depends on !BR2_STATIC_LIBS
 	depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_2
-- 
2.11.0

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

* [Buildroot] [PATCHv2] toolchain: Add glibc support for ARCv2
  2017-10-10 13:31 [Buildroot] [PATCHv2] toolchain: Add glibc support for ARCv2 Evgeniy Didin
@ 2017-10-10 14:15 ` Alexey Brodkin
  2017-10-10 21:17 ` Thomas Petazzoni
  1 sibling, 0 replies; 6+ messages in thread
From: Alexey Brodkin @ 2017-10-10 14:15 UTC (permalink / raw)
  To: buildroot

Adding Arnout as he reviewed v1 earlier.

-Alexey

On Tue, 2017-10-10 at 16:31 +0300, Evgeniy Didin wrote:
> Finally there's working ARC port of glibc thanks to Vineet and Cuper!
> This port is based on pretty recent glibc's master branch and ARC
> changes are being reviewed now in glibc's mailing list.
> 
> Thus we again have to use sources from our GitHub but as soon as there's
> a glibc release with our patches applied we'll switch to upstream releases
> and will drop our glibc GitHub repo alltogether.
> 
> Note now we cut tags in glibc repo simultaneously with tags
> in Binutils and GCC repos and so to make sure everything works in the best
> way we plan to update glibc tag together with Binutils and GCC.
> 
> Also note as of today ARCompact (AKA ARCv1 ISA) is not supported in glibc
> but we plan to fix it soonish so for now we make glibc intentionally
> dependent on archs38.
> 
> Also note we are not creating directory "2.26" because all patches for glibc
> ver 2.26 applies to arc glibc port.
> 
> Signed-off-by: Evgeniy Didin <didin@synopsys.com>
> CC: Alexey Brodkin <abrodkin@synopsys.com>
> CC: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
> CC: Waldemar Brodkorb <wbx@openadk.org>
> CC: Romain Naour <romain.naour@gmail.com>
> Cc: Cupertino Miranda <cmiranda@synopsys.com>
> Cc: Vineet Gupta <vgupta@synopsys.com>
> Cc: Anton Kolesov <akolesov@synopsys.com>
> 
> ---
> ?package/glibc/glibc.hash????????????????| 3 +++
> ?package/glibc/glibc.mk??????????????????| 8 +++++++-
> ?toolchain/toolchain-buildroot/Config.in | 2 +-
> ?3 files changed, 11 insertions(+), 2 deletions(-)
> 
> diff --git a/package/glibc/glibc.hash b/package/glibc/glibc.hash
> index afae10fa57..5458102a8a 100644
> --- a/package/glibc/glibc.hash
> +++ b/package/glibc/glibc.hash
> @@ -1,2 +1,5 @@
> ?# Locally calculated after checking pgp signature (glibc)
> ?sha256	e54e0a934cd2bc94429be79da5e9385898d2306b9eaf3c92d5a77af96190f6bd	glibc-2.26.tar.xz
> +# Locally calculated (fetched from Github)
> +sha256??adf2dd19a76705a6fb748492eba30cb0be621422190116382a891a3cf099e895?????glibc-arc-2017.09-eng010.tar.gz
> +
> diff --git a/package/glibc/glibc.mk b/package/glibc/glibc.mk
> index f5d028239f..ea31847c51 100644
> --- a/package/glibc/glibc.mk
> +++ b/package/glibc/glibc.mk
> @@ -3,10 +3,16 @@
> ?# glibc
> ?#
> ?################################################################################
> -
> +ifeq ($(BR2_arc),y)
> +GLIBC_VERSION =??arc-2017.09-eng010
> +GLIBC_SITE = $(call github,foss-for-synopsys-dwc-arc-processors,glibc,$(GLIBC_VERSION))
> +GLIBC_SOURCE = glibc-$(GLIBC_VERSION).tar.gz
> +else
> ?GLIBC_VERSION = 2.26
> ?GLIBC_SITE = $(BR2_GNU_MIRROR)/libc
> ?GLIBC_SOURCE = glibc-$(GLIBC_VERSION).tar.xz
> +endif
> +
> ?GLIBC_SRC_SUBDIR = .
> ?
> ?GLIBC_LICENSE = GPL-2.0+ (programs), LGPL-2.1+, BSD-3-Clause, MIT (library)
> diff --git a/toolchain/toolchain-buildroot/Config.in b/toolchain/toolchain-buildroot/Config.in
> index ac6017fd6e..25ab667927 100644
> --- a/toolchain/toolchain-buildroot/Config.in
> +++ b/toolchain/toolchain-buildroot/Config.in
> @@ -47,7 +47,7 @@ config BR2_TOOLCHAIN_BUILDROOT_GLIBC
> ?		???BR2_mipsel??????|| BR2_mips64?????|| BR2_mips64el|| \
> ?		???BR2_powerpc?????|| BR2_powerpc64??|| BR2_powerpc64le || \
> ?		???BR2_sh??????????|| BR2_sparc64????|| BR2_x86_64 || \
> -		???BR2_microblaze || BR2_nios2
> +		???BR2_microblaze??|| BR2_nios2??????|| BR2_archs38
> ?	depends on BR2_USE_MMU
> ?	depends on !BR2_STATIC_LIBS
> ?	depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_2

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

* [Buildroot] [PATCHv2] toolchain: Add glibc support for ARCv2
  2017-10-10 13:31 [Buildroot] [PATCHv2] toolchain: Add glibc support for ARCv2 Evgeniy Didin
  2017-10-10 14:15 ` Alexey Brodkin
@ 2017-10-10 21:17 ` Thomas Petazzoni
  2017-10-10 21:26   ` Arnout Vandecappelle
  2017-10-11 16:05   ` Alexey Brodkin
  1 sibling, 2 replies; 6+ messages in thread
From: Thomas Petazzoni @ 2017-10-10 21:17 UTC (permalink / raw)
  To: buildroot

Hello,

Thanks, I've applied to master. One comment below.

On Tue, 10 Oct 2017 16:31:50 +0300, Evgeniy Didin wrote:
> Finally there's working ARC port of glibc thanks to Vineet and Cuper!
> This port is based on pretty recent glibc's master branch and ARC
> changes are being reviewed now in glibc's mailing list.
> 
> Thus we again have to use sources from our GitHub but as soon as there's
> a glibc release with our patches applied we'll switch to upstream releases
> and will drop our glibc GitHub repo alltogether.
> 
> Note now we cut tags in glibc repo simultaneously with tags
> in Binutils and GCC repos and so to make sure everything works in the best
> way we plan to update glibc tag together with Binutils and GCC.
> 
> Also note as of today ARCompact (AKA ARCv1 ISA) is not supported in glibc
> but we plan to fix it soonish so for now we make glibc intentionally
> dependent on archs38.
> 
> Also note we are not creating directory "2.26" because all patches for glibc
> ver 2.26 applies to arc glibc port.

This last thing will probably cause problems in the future: when we
will add new glibc patches, they may not work with the ARC version of
glibc, or when we bump to glibc 2.26.1, the ARC version of glibc will
probably not be rebased at exactly the same time.

So I've left it as-is for now, but I'm pretty sure we'll have to switch
to per-version directories very soon.

Best regards,

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

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

* [Buildroot] [PATCHv2] toolchain: Add glibc support for ARCv2
  2017-10-10 21:17 ` Thomas Petazzoni
@ 2017-10-10 21:26   ` Arnout Vandecappelle
  2017-10-11  6:55     ` Thomas Petazzoni
  2017-10-11 16:05   ` Alexey Brodkin
  1 sibling, 1 reply; 6+ messages in thread
From: Arnout Vandecappelle @ 2017-10-10 21:26 UTC (permalink / raw)
  To: buildroot



On 10-10-17 23:17, Thomas Petazzoni wrote:
> when we bump to glibc 2.26.1

 Is there any hope of that? I thought the glibc maintainers had made it clear
that there wouldn't be point releases?

 Regards,
 Arnout

-- 
Arnout Vandecappelle                          arnout at mind be
Senior Embedded Software Architect            +32-16-286500
Essensium/Mind                                http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7493 020B C7E3 8618 8DEC 222C 82EB F404 F9AC 0DDF

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

* [Buildroot] [PATCHv2] toolchain: Add glibc support for ARCv2
  2017-10-10 21:26   ` Arnout Vandecappelle
@ 2017-10-11  6:55     ` Thomas Petazzoni
  0 siblings, 0 replies; 6+ messages in thread
From: Thomas Petazzoni @ 2017-10-11  6:55 UTC (permalink / raw)
  To: buildroot

Hello,

On Tue, 10 Oct 2017 23:26:56 +0200, Arnout Vandecappelle wrote:

> > when we bump to glibc 2.26.1  
> 
>  Is there any hope of that? I thought the glibc maintainers had made it clear
> that there wouldn't be point releases?

Yes, there has been a lot of discussion, pushed by Romain and Yann, and
with the support from people of other distros, and apparently, the
glibc maintainers have understood the need for dot releases with fixes.

That being said, my point stands: when we bump to 2.27, not sure the
ARC folks will have bumped at exactly the same time.

Best regards,

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

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

* [Buildroot] [PATCHv2] toolchain: Add glibc support for ARCv2
  2017-10-10 21:17 ` Thomas Petazzoni
  2017-10-10 21:26   ` Arnout Vandecappelle
@ 2017-10-11 16:05   ` Alexey Brodkin
  1 sibling, 0 replies; 6+ messages in thread
From: Alexey Brodkin @ 2017-10-11 16:05 UTC (permalink / raw)
  To: buildroot

Hi Thomas,

> -----Original Message-----
> From: Thomas Petazzoni [mailto:thomas.petazzoni at free-electrons.com]
> Sent: Wednesday, October 11, 2017 12:18 AM
> To: Evgeniy Didin <Evgeniy.Didin@synopsys.com>
> Cc: buildroot at busybox.net; Cupertino Miranda <Cupertino.Miranda@synopsys.com>; Vineet Gupta
> <Vineet.Gupta1@synopsys.com>; Alexey Brodkin <Alexey.Brodkin@synopsys.com>; Anton Kolesov
> <Anton.Kolesov@synopsys.com>; Romain Naour <romain.naour@gmail.com>
> Subject: Re: [Buildroot] [PATCHv2] toolchain: Add glibc support for ARCv2
> 
> Hello,
> 
> Thanks, I've applied to master. One comment below.

Cool, thanks!
Do you want me to submit something like
web/toolchains/configs/br-arc-full-internal-glibc.config or
you're going to do it yourself?

> On Tue, 10 Oct 2017 16:31:50 +0300, Evgeniy Didin wrote:
> > Finally there's working ARC port of glibc thanks to Vineet and Cuper!
> > This port is based on pretty recent glibc's master branch and ARC
> > changes are being reviewed now in glibc's mailing list.
> >
> > Thus we again have to use sources from our GitHub but as soon as there's
> > a glibc release with our patches applied we'll switch to upstream releases
> > and will drop our glibc GitHub repo alltogether.
> >
> > Note now we cut tags in glibc repo simultaneously with tags
> > in Binutils and GCC repos and so to make sure everything works in the best
> > way we plan to update glibc tag together with Binutils and GCC.
> >
> > Also note as of today ARCompact (AKA ARCv1 ISA) is not supported in glibc
> > but we plan to fix it soonish so for now we make glibc intentionally
> > dependent on archs38.
> >
> > Also note we are not creating directory "2.26" because all patches for glibc
> > ver 2.26 applies to arc glibc port.
> 
> This last thing will probably cause problems in the future: when we
> will add new glibc patches, they may not work with the ARC version of
> glibc, or when we bump to glibc 2.26.1, the ARC version of glibc will
> probably not be rebased at exactly the same time.
> 
> So I've left it as-is for now, but I'm pretty sure we'll have to switch
> to per-version directories very soon.

That's understood and initially we planned to have a separate folder.
But:
 1) [Especially now] it makes no sense to have 2 folders with the same patches
 2) We're going to update our glibc version to rc2 and final release in coming weeks
     and with the folder in place bump patches will be much bigger for nothing
 3) There's a chance newer patches will just apply smoothly which might benefit
     ARC toolchain (if the patch in question fixes generic stuff).
 4) In the worst case we'll create folders :)

-Alexey

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

end of thread, other threads:[~2017-10-11 16:05 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-10-10 13:31 [Buildroot] [PATCHv2] toolchain: Add glibc support for ARCv2 Evgeniy Didin
2017-10-10 14:15 ` Alexey Brodkin
2017-10-10 21:17 ` Thomas Petazzoni
2017-10-10 21:26   ` Arnout Vandecappelle
2017-10-11  6:55     ` Thomas Petazzoni
2017-10-11 16:05   ` Alexey Brodkin

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.