Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] libcap-ng: disable_on_avr32
@ 2013-11-03  9:53 spdawson at gmail.com
  2013-11-03 10:27 ` Thomas Petazzoni
  0 siblings, 1 reply; 3+ messages in thread
From: spdawson at gmail.com @ 2013-11-03  9:53 UTC (permalink / raw)
  To: buildroot

From: Simon Dawson <spdawson@gmail.com>

Thread-local storage is not available in the avr32 toolchain, so libcap-ng
must be disabled on avr32. Fixed build failures such as the following.

  http://autobuild.buildroot.net/results/05f/05f73cb74ee7bfb1c337100312726de034366a7d/

Signed-off-by: Simon Dawson <spdawson@gmail.com>
---
 package/libcap-ng/Config.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/libcap-ng/Config.in b/package/libcap-ng/Config.in
index d1663cd..008bf51 100644
--- a/package/libcap-ng/Config.in
+++ b/package/libcap-ng/Config.in
@@ -1,5 +1,6 @@
 config BR2_PACKAGE_LIBCAP_NG
 	bool "libcap-ng"
+	depends on !BR2_avr32 # TLS not available
 	help
 	  The libcap-ng library is intended to make programming with
 	  posix capabilities much easier than the traditional libcap
-- 
1.8.3.2

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

* [Buildroot] [PATCH] libcap-ng: disable_on_avr32
  2013-11-03  9:53 [Buildroot] [PATCH] libcap-ng: disable_on_avr32 spdawson at gmail.com
@ 2013-11-03 10:27 ` Thomas Petazzoni
  2013-11-04  6:34   ` Arnout Vandecappelle
  0 siblings, 1 reply; 3+ messages in thread
From: Thomas Petazzoni @ 2013-11-03 10:27 UTC (permalink / raw)
  To: buildroot

Simon,

On Sun,  3 Nov 2013 09:53:28 +0000, spdawson at gmail.com wrote:
> From: Simon Dawson <spdawson@gmail.com>
> 
> Thread-local storage is not available in the avr32 toolchain, so libcap-ng
> must be disabled on avr32. Fixed build failures such as the following.
> 
>   http://autobuild.buildroot.net/results/05f/05f73cb74ee7bfb1c337100312726de034366a7d/
> 
> Signed-off-by: Simon Dawson <spdawson@gmail.com>
> ---
>  package/libcap-ng/Config.in | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/package/libcap-ng/Config.in b/package/libcap-ng/Config.in
> index d1663cd..008bf51 100644
> --- a/package/libcap-ng/Config.in
> +++ b/package/libcap-ng/Config.in
> @@ -1,5 +1,6 @@
>  config BR2_PACKAGE_LIBCAP_NG
>  	bool "libcap-ng"
> +	depends on !BR2_avr32 # TLS not available
>  	help
>  	  The libcap-ng library is intended to make programming with
>  	  posix capabilities much easier than the traditional libcap

Thanks! I already sent a somewhat similar patch at
http://patchwork.ozlabs.org/patch/280889/, but Peter complained that
the problem was really related to the absence of TLS support rather
than AVR32, and that the TLS support could also be disabled on other
architectures using the BR2_GCC_ENABLE_TLS option. However, the problem
is that this option only exists for internal toolchains: for external
toolchains, we have absolutely no idea whether they have TLS support or
not.

My own point of view would be to remove the possibility of configuring
out TLS support, and simply assume TLS support is always enabled when
thread support is available. What do others think about this?

Also, you forgot to propagate the dependency to the 'ofono' package,
which selects libcap-ng.

Best regards,

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

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

* [Buildroot] [PATCH] libcap-ng: disable_on_avr32
  2013-11-03 10:27 ` Thomas Petazzoni
@ 2013-11-04  6:34   ` Arnout Vandecappelle
  0 siblings, 0 replies; 3+ messages in thread
From: Arnout Vandecappelle @ 2013-11-04  6:34 UTC (permalink / raw)
  To: buildroot

On 03/11/13 11:27, Thomas Petazzoni wrote:
> Simon,
>
> On Sun,  3 Nov 2013 09:53:28 +0000, spdawson at gmail.com wrote:
>> From: Simon Dawson <spdawson@gmail.com>
>>
>> Thread-local storage is not available in the avr32 toolchain, so libcap-ng
>> must be disabled on avr32. Fixed build failures such as the following.
>>
>>    http://autobuild.buildroot.net/results/05f/05f73cb74ee7bfb1c337100312726de034366a7d/
>>
>> Signed-off-by: Simon Dawson <spdawson@gmail.com>
>> ---
>>   package/libcap-ng/Config.in | 1 +
>>   1 file changed, 1 insertion(+)
>>
>> diff --git a/package/libcap-ng/Config.in b/package/libcap-ng/Config.in
>> index d1663cd..008bf51 100644
>> --- a/package/libcap-ng/Config.in
>> +++ b/package/libcap-ng/Config.in
>> @@ -1,5 +1,6 @@
>>   config BR2_PACKAGE_LIBCAP_NG
>>   	bool "libcap-ng"
>> +	depends on !BR2_avr32 # TLS not available
>>   	help
>>   	  The libcap-ng library is intended to make programming with
>>   	  posix capabilities much easier than the traditional libcap
>
> Thanks! I already sent a somewhat similar patch at
> http://patchwork.ozlabs.org/patch/280889/, but Peter complained that
> the problem was really related to the absence of TLS support rather
> than AVR32, and that the TLS support could also be disabled on other
> architectures using the BR2_GCC_ENABLE_TLS option. However, the problem
> is that this option only exists for internal toolchains: for external
> toolchains, we have absolutely no idea whether they have TLS support or
> not.
>
> My own point of view would be to remove the possibility of configuring
> out TLS support, and simply assume TLS support is always enabled when
> thread support is available. What do others think about this?

  Fine by me.

  However, IIRC TLS is only available for NPTL, and this is not available 
for all architectures. So it is just moving the problem around.

  Regards,
  Arnout

>
> Also, you forgot to propagate the dependency to the 'ofono' package,
> which selects libcap-ng.
>
> Best regards,
>
> Thomas
>


-- 
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:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

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

end of thread, other threads:[~2013-11-04  6:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-03  9:53 [Buildroot] [PATCH] libcap-ng: disable_on_avr32 spdawson at gmail.com
2013-11-03 10:27 ` Thomas Petazzoni
2013-11-04  6:34   ` Arnout Vandecappelle

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