Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] libiio: test programs require threads
@ 2015-08-11  4:54 Baruch Siach
  2015-08-13 19:08 ` Yann E. MORIN
  2015-08-18 20:46 ` Thomas Petazzoni
  0 siblings, 2 replies; 3+ messages in thread
From: Baruch Siach @ 2015-08-11  4:54 UTC (permalink / raw)
  To: buildroot

Fixes:
http://autobuild.buildroot.net/results/228/228a32167d05337acf17b0e3689aa91e8a67d8fb/
http://autobuild.buildroot.net/results/86a/86adb968659fec56684ba80e1c4230230fd7a1c8/

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 package/libiio/Config.in | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/package/libiio/Config.in b/package/libiio/Config.in
index 21496ed7c501..99da4c1c1000 100644
--- a/package/libiio/Config.in
+++ b/package/libiio/Config.in
@@ -37,9 +37,13 @@ config BR2_PACKAGE_LIBIIO_TESTS
 	bool "Install test programs"
 	select BR2_PACKAGE_LIBIIO_LOCAL_BACKEND
 	select BR2_PACKAGE_LIBIIO_NETWORK_BACKEND
+	depends on BR2_TOOLCHAIN_HAS_THREADS
 	help
 	  Install the test programs (iio_info, iio_genxml, iio_readdev).
 
+comment "IIO test programs need a toolchain w/ threads"
+	depends on !BR2_TOOLCHAIN_HAS_THREADS
+
 config BR2_PACKAGE_LIBIIO_BINDINGS_CSHARP
 	bool "Install C# bindings"
 	depends on BR2_PACKAGE_MONO
-- 
2.5.0

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

* [Buildroot] [PATCH] libiio: test programs require threads
  2015-08-11  4:54 [Buildroot] [PATCH] libiio: test programs require threads Baruch Siach
@ 2015-08-13 19:08 ` Yann E. MORIN
  2015-08-18 20:46 ` Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2015-08-13 19:08 UTC (permalink / raw)
  To: buildroot

Baruch, All,

On 2015-08-11 07:54 +0300, Baruch Siach spake thusly:
> Fixes:
> http://autobuild.buildroot.net/results/228/228a32167d05337acf17b0e3689aa91e8a67d8fb/
> http://autobuild.buildroot.net/results/86a/86adb968659fec56684ba80e1c4230230fd7a1c8/
> 
> Signed-off-by: Baruch Siach <baruch@tkos.co.il>
> ---
>  package/libiio/Config.in | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/package/libiio/Config.in b/package/libiio/Config.in
> index 21496ed7c501..99da4c1c1000 100644
> --- a/package/libiio/Config.in
> +++ b/package/libiio/Config.in
> @@ -37,9 +37,13 @@ config BR2_PACKAGE_LIBIIO_TESTS
>  	bool "Install test programs"
>  	select BR2_PACKAGE_LIBIIO_LOCAL_BACKEND
>  	select BR2_PACKAGE_LIBIIO_NETWORK_BACKEND
> +	depends on BR2_TOOLCHAIN_HAS_THREADS

Although I prefer we list dependencies before we do selects:

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

>  	help
>  	  Install the test programs (iio_info, iio_genxml, iio_readdev).
>  
> +comment "IIO test programs need a toolchain w/ threads"
> +	depends on !BR2_TOOLCHAIN_HAS_THREADS
> +
>  config BR2_PACKAGE_LIBIIO_BINDINGS_CSHARP
>  	bool "Install C# bindings"
>  	depends on BR2_PACKAGE_MONO
> -- 
> 2.5.0
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  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] 3+ messages in thread

* [Buildroot] [PATCH] libiio: test programs require threads
  2015-08-11  4:54 [Buildroot] [PATCH] libiio: test programs require threads Baruch Siach
  2015-08-13 19:08 ` Yann E. MORIN
@ 2015-08-18 20:46 ` Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2015-08-18 20:46 UTC (permalink / raw)
  To: buildroot

Dear Baruch Siach,

On Tue, 11 Aug 2015 07:54:39 +0300, Baruch Siach wrote:
> Fixes:
> http://autobuild.buildroot.net/results/228/228a32167d05337acf17b0e3689aa91e8a67d8fb/
> http://autobuild.buildroot.net/results/86a/86adb968659fec56684ba80e1c4230230fd7a1c8/
> 
> Signed-off-by: Baruch Siach <baruch@tkos.co.il>
> ---
>  package/libiio/Config.in | 4 ++++
>  1 file changed, 4 insertions(+)

Applied, thanks.

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

end of thread, other threads:[~2015-08-18 20:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-11  4:54 [Buildroot] [PATCH] libiio: test programs require threads Baruch Siach
2015-08-13 19:08 ` Yann E. MORIN
2015-08-18 20:46 ` Thomas Petazzoni

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