* [Buildroot] [PATCH 1/1] package/ibm-sw-tpm2: needs threads
@ 2020-05-01 13:10 Vincent Fazio
2020-05-01 13:17 ` [Buildroot] [PATCH v2 " Vincent Fazio
0 siblings, 1 reply; 3+ messages in thread
From: Vincent Fazio @ 2020-05-01 13:10 UTC (permalink / raw)
To: buildroot
From: Vincent Fazio <vfazio@gmail.com>
The server process leverages threads, so add the dependency.
Fixes:
http://autobuild.buildroot.net/results/7cce8b7ad19a48b36a38ef8fd88b96fad30f05c4/
Signed-off-by: Vincent Fazio <vfazio@gmail.com>
Signed-off-by: Vincent Fazio <vfazio@xes-inc.com>
---
package/ibm-sw-tpm2/Config.in | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/package/ibm-sw-tpm2/Config.in b/package/ibm-sw-tpm2/Config.in
index dc5630490f..5c915c7e84 100644
--- a/package/ibm-sw-tpm2/Config.in
+++ b/package/ibm-sw-tpm2/Config.in
@@ -1,5 +1,6 @@
config BR2_PACKAGE_IBM_SW_TPM2
bool "ibm-sw-tpm2"
+ depends on BR2_TOOLCHAIN_HAS_THREADS
depends on !BR2_STATIC_LIBS # ibm-sw-tpm2
select BR2_PACKAGE_OPENSSL
# libressl is not supported
@@ -12,5 +13,5 @@ config BR2_PACKAGE_IBM_SW_TPM2
https://sourceforge.net/projects/ibmswtpm2/
-comment "ibm-sw-tpm2 needs a toolchain w/ dynamic library"
- depends on BR2_STATIC_LIBS
+comment "ibm-sw-tpm2 needs a toolchain w/ threads, dynamic library"
+ depends on !BR2_TOOLCHAIN_HAS_THREADS ||BR2_STATIC_LIBS
--
2.26.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH v2 1/1] package/ibm-sw-tpm2: needs threads
2020-05-01 13:10 [Buildroot] [PATCH 1/1] package/ibm-sw-tpm2: needs threads Vincent Fazio
@ 2020-05-01 13:17 ` Vincent Fazio
2020-05-01 13:41 ` Yann E. MORIN
0 siblings, 1 reply; 3+ messages in thread
From: Vincent Fazio @ 2020-05-01 13:17 UTC (permalink / raw)
To: buildroot
From: Vincent Fazio <vfazio@gmail.com>
The server process leverages threads, so add the dependency.
Fixes:
http://autobuild.buildroot.net/results/7cce8b7ad19a48b36a38ef8fd88b96fad30f05c4/
Signed-off-by: Vincent Fazio <vfazio@gmail.com>
Signed-off-by: Vincent Fazio <vfazio@xes-inc.com>
---
Changes v1 _-> v2:
- Fix spacing issue in condition
package/ibm-sw-tpm2/Config.in | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/package/ibm-sw-tpm2/Config.in b/package/ibm-sw-tpm2/Config.in
index dc5630490f..b402ba7150 100644
--- a/package/ibm-sw-tpm2/Config.in
+++ b/package/ibm-sw-tpm2/Config.in
@@ -1,5 +1,6 @@
config BR2_PACKAGE_IBM_SW_TPM2
bool "ibm-sw-tpm2"
+ depends on BR2_TOOLCHAIN_HAS_THREADS
depends on !BR2_STATIC_LIBS # ibm-sw-tpm2
select BR2_PACKAGE_OPENSSL
# libressl is not supported
@@ -12,5 +13,5 @@ config BR2_PACKAGE_IBM_SW_TPM2
https://sourceforge.net/projects/ibmswtpm2/
-comment "ibm-sw-tpm2 needs a toolchain w/ dynamic library"
- depends on BR2_STATIC_LIBS
+comment "ibm-sw-tpm2 needs a toolchain w/ threads, dynamic library"
+ depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
--
2.26.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH v2 1/1] package/ibm-sw-tpm2: needs threads
2020-05-01 13:17 ` [Buildroot] [PATCH v2 " Vincent Fazio
@ 2020-05-01 13:41 ` Yann E. MORIN
0 siblings, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2020-05-01 13:41 UTC (permalink / raw)
To: buildroot
On 2020-05-01 08:17 -0500, Vincent Fazio spake thusly:
> From: Vincent Fazio <vfazio@gmail.com>
>
> The server process leverages threads, so add the dependency.
>
> Fixes:
>
> http://autobuild.buildroot.net/results/7cce8b7ad19a48b36a38ef8fd88b96fad30f05c4/
>
> Signed-off-by: Vincent Fazio <vfazio@gmail.com>
> Signed-off-by: Vincent Fazio <vfazio@xes-inc.com>
Applied to master, thanks.
Regards,
Yann E. MORIN.
> ---
> Changes v1 _-> v2:
> - Fix spacing issue in condition
>
> package/ibm-sw-tpm2/Config.in | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/package/ibm-sw-tpm2/Config.in b/package/ibm-sw-tpm2/Config.in
> index dc5630490f..b402ba7150 100644
> --- a/package/ibm-sw-tpm2/Config.in
> +++ b/package/ibm-sw-tpm2/Config.in
> @@ -1,5 +1,6 @@
> config BR2_PACKAGE_IBM_SW_TPM2
> bool "ibm-sw-tpm2"
> + depends on BR2_TOOLCHAIN_HAS_THREADS
> depends on !BR2_STATIC_LIBS # ibm-sw-tpm2
> select BR2_PACKAGE_OPENSSL
> # libressl is not supported
> @@ -12,5 +13,5 @@ config BR2_PACKAGE_IBM_SW_TPM2
>
> https://sourceforge.net/projects/ibmswtpm2/
>
> -comment "ibm-sw-tpm2 needs a toolchain w/ dynamic library"
> - depends on BR2_STATIC_LIBS
> +comment "ibm-sw-tpm2 needs a toolchain w/ threads, dynamic library"
> + depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
> --
> 2.26.2
>
> _______________________________________________
> 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 561 099 427 `------------.-------: 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
end of thread, other threads:[~2020-05-01 13:41 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-05-01 13:10 [Buildroot] [PATCH 1/1] package/ibm-sw-tpm2: needs threads Vincent Fazio
2020-05-01 13:17 ` [Buildroot] [PATCH v2 " Vincent Fazio
2020-05-01 13:41 ` Yann E. MORIN
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox