Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v4] external-toolchain: BR2_TOOLCHAIN_EXTERNAL_GLIBC includes eglibc
@ 2012-09-27 19:27 Baruch Siach
  2012-09-27 21:06 ` Yann E. MORIN
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Baruch Siach @ 2012-09-27 19:27 UTC (permalink / raw)
  To: buildroot

Yann E. MORIN says:

    "Although eglibc can be configured to include/exclude parts of the
    features, it seems to not be in wide use, if at all."

Acked-by: Yann E. MORIN <yann.morin.1998@free.fr>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
v4: now actually commit the rephrased text.

v3: rephrase the help text to make it clear that the eglibc build is given,
    address the comment of Thomas Petazzoni.

v2: mention in the help text that eglibc may lack some features as suggested
    by Yann E. MORIN.

 toolchain/toolchain-external/Config.in |    7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/toolchain/toolchain-external/Config.in b/toolchain/toolchain-external/Config.in
index f86ed74..cd56443 100644
--- a/toolchain/toolchain-external/Config.in
+++ b/toolchain/toolchain-external/Config.in
@@ -664,8 +664,13 @@ config BR2_TOOLCHAIN_EXTERNAL_CUSTOM_UCLIBC
 	select BR2_TOOLCHAIN_HAS_SHADOW_PASSWORDS
 
 config BR2_TOOLCHAIN_EXTERNAL_CUSTOM_GLIBC
-	bool "glibc"
+	bool "glibc/eglibc"
 	select BR2_TOOLCHAIN_EXTERNAL_GLIBC
+	help
+	  Note: eglibc is a variant of glibc that (among other things) can be
+	  configured to exclude some of its features. Using a toolchain with
+	  eglibc configured to exclude key features may cause build failures to
+	  some packages.
 
 endchoice
 
-- 
1.7.10.4

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

* [Buildroot] [PATCH v4] external-toolchain: BR2_TOOLCHAIN_EXTERNAL_GLIBC includes eglibc
  2012-09-27 19:27 [Buildroot] [PATCH v4] external-toolchain: BR2_TOOLCHAIN_EXTERNAL_GLIBC includes eglibc Baruch Siach
@ 2012-09-27 21:06 ` Yann E. MORIN
  2012-09-27 21:21 ` Thomas Petazzoni
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Yann E. MORIN @ 2012-09-27 21:06 UTC (permalink / raw)
  To: buildroot

Baruch, All,

On Thursday 27 September 2012 21:27:42 Baruch Siach wrote:
> v4: now actually commit the rephrased text.
[--SNIP--]
>  config BR2_TOOLCHAIN_EXTERNAL_CUSTOM_GLIBC
> -	bool "glibc"
> +	bool "glibc/eglibc"
>  	select BR2_TOOLCHAIN_EXTERNAL_GLIBC
> +	help
> +	  Note: eglibc is a variant of glibc that (among other things) can be
> +	  configured to exclude some of its features. Using a toolchain with
> +	  eglibc configured to exclude key features may cause build failures to
> +	  some packages.

Well, that's even better! :-)

Regards,
Yann E. MORIN.

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH v4] external-toolchain: BR2_TOOLCHAIN_EXTERNAL_GLIBC includes eglibc
  2012-09-27 19:27 [Buildroot] [PATCH v4] external-toolchain: BR2_TOOLCHAIN_EXTERNAL_GLIBC includes eglibc Baruch Siach
  2012-09-27 21:06 ` Yann E. MORIN
@ 2012-09-27 21:21 ` Thomas Petazzoni
  2012-10-02 13:57 ` Luca Ceresoli
  2012-10-04 20:21 ` Peter Korsgaard
  3 siblings, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2012-09-27 21:21 UTC (permalink / raw)
  To: buildroot

Dear Baruch Siach,

On Thu, 27 Sep 2012 21:27:42 +0200, Baruch Siach wrote:
> Yann E. MORIN says:
> 
>     "Although eglibc can be configured to include/exclude parts of the
>     features, it seems to not be in wide use, if at all."
> 
> Acked-by: Yann E. MORIN <yann.morin.1998@free.fr>
> Signed-off-by: Baruch Siach <baruch@tkos.co.il>

Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

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

* [Buildroot] [PATCH v4] external-toolchain: BR2_TOOLCHAIN_EXTERNAL_GLIBC includes eglibc
  2012-09-27 19:27 [Buildroot] [PATCH v4] external-toolchain: BR2_TOOLCHAIN_EXTERNAL_GLIBC includes eglibc Baruch Siach
  2012-09-27 21:06 ` Yann E. MORIN
  2012-09-27 21:21 ` Thomas Petazzoni
@ 2012-10-02 13:57 ` Luca Ceresoli
  2012-10-04 20:21 ` Peter Korsgaard
  3 siblings, 0 replies; 5+ messages in thread
From: Luca Ceresoli @ 2012-10-02 13:57 UTC (permalink / raw)
  To: buildroot

Baruch Siach wrote:
> Yann E. MORIN says:
>
>      "Although eglibc can be configured to include/exclude parts of the
>      features, it seems to not be in wide use, if at all."
>
> Acked-by: Yann E. MORIN <yann.morin.1998@free.fr>
> Signed-off-by: Baruch Siach <baruch@tkos.co.il>

Acked-by: Luca Ceresoli <luca@lucaceresoli.net>

Luca

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

* [Buildroot] [PATCH v4] external-toolchain: BR2_TOOLCHAIN_EXTERNAL_GLIBC includes eglibc
  2012-09-27 19:27 [Buildroot] [PATCH v4] external-toolchain: BR2_TOOLCHAIN_EXTERNAL_GLIBC includes eglibc Baruch Siach
                   ` (2 preceding siblings ...)
  2012-10-02 13:57 ` Luca Ceresoli
@ 2012-10-04 20:21 ` Peter Korsgaard
  3 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2012-10-04 20:21 UTC (permalink / raw)
  To: buildroot

>>>>> "Baruch" == Baruch Siach <baruch@tkos.co.il> writes:

 Baruch> Yann E. MORIN says:
 Baruch>     "Although eglibc can be configured to include/exclude parts of the
 Baruch>     features, it seems to not be in wide use, if at all."

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2012-10-04 20:21 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-27 19:27 [Buildroot] [PATCH v4] external-toolchain: BR2_TOOLCHAIN_EXTERNAL_GLIBC includes eglibc Baruch Siach
2012-09-27 21:06 ` Yann E. MORIN
2012-09-27 21:21 ` Thomas Petazzoni
2012-10-02 13:57 ` Luca Ceresoli
2012-10-04 20:21 ` Peter Korsgaard

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