Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/pistache: needs NPTL
@ 2024-07-23 13:20 Fabrice Fontaine
  2024-08-02 17:51 ` Thomas Petazzoni via buildroot
  2024-09-03 16:26 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2024-07-23 13:20 UTC (permalink / raw)
  To: buildroot; +Cc: Fabrice Fontaine

pistache needs NPTL as it unconditionally uses pthread_setname_np since
https://github.com/pistacheio/pistache/commit/b283c32963a7cb0500cf69555d320a6e9e252850
resulting in the following uclibc build failure since commit
82e61bed8208857d5d13c384c89086c4dd4e1e79:

../src/common/reactor.cc: In lambda function:
../src/common/reactor.cc:512:25: error: 'pthread_setname_np' was not declared in this scope; did you mean 'pthread_setcanceltype'?
  512 |                         pthread_setname_np(pthread_self(),
      |                         ^~~~~~~~~~~~~~~~~~
      |                         pthread_setcanceltype

Fixes: 82e61bed8208857d5d13c384c89086c4dd4e1e79
 - http://autobuild.buildroot.org/results/b2b22e4f9684aca0246650673fd8c33019712ddf
 - http://autobuild.buildroot.org/results/1597bfe2a57cd3aef54d331447dd81cae020d434

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/pistache/Config.in | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/pistache/Config.in b/package/pistache/Config.in
index ca2d2833cd..e66c24d86d 100644
--- a/package/pistache/Config.in
+++ b/package/pistache/Config.in
@@ -2,7 +2,7 @@ config BR2_PACKAGE_PISTACHE
 	bool "pistache"
 	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # C++17, std::optional
 	depends on BR2_USE_WCHAR
-	depends on BR2_TOOLCHAIN_HAS_THREADS
+	depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
 	depends on BR2_INSTALL_LIBSTDCPP
 	select BR2_PACKAGE_RAPIDJSON
 	help
@@ -12,8 +12,8 @@ config BR2_PACKAGE_PISTACHE
 
 	  https://github.com/oktal/pistache
 
-comment "pistache needs a toolchain w/ C++, gcc >= 7, threads, wchar"
+comment "pistache needs a toolchain w/ C++, gcc >= 7, NPTL, wchar"
 	depends on !BR2_INSTALL_LIBSTDCPP || \
 		   !BR2_TOOLCHAIN_GCC_AT_LEAST_7 || \
-		   !BR2_TOOLCHAIN_HAS_THREADS || \
+		   !BR2_TOOLCHAIN_HAS_THREADS_NPTL || \
 		   !BR2_USE_WCHAR
-- 
2.43.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/pistache: needs NPTL
  2024-07-23 13:20 [Buildroot] [PATCH 1/1] package/pistache: needs NPTL Fabrice Fontaine
@ 2024-08-02 17:51 ` Thomas Petazzoni via buildroot
  2024-09-03 16:26 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-08-02 17:51 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: buildroot

On Tue, 23 Jul 2024 15:20:58 +0200
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> pistache needs NPTL as it unconditionally uses pthread_setname_np since
> https://github.com/pistacheio/pistache/commit/b283c32963a7cb0500cf69555d320a6e9e252850
> resulting in the following uclibc build failure since commit
> 82e61bed8208857d5d13c384c89086c4dd4e1e79:
> 
> ../src/common/reactor.cc: In lambda function:
> ../src/common/reactor.cc:512:25: error: 'pthread_setname_np' was not declared in this scope; did you mean 'pthread_setcanceltype'?
>   512 |                         pthread_setname_np(pthread_self(),
>       |                         ^~~~~~~~~~~~~~~~~~
>       |                         pthread_setcanceltype
> 
> Fixes: 82e61bed8208857d5d13c384c89086c4dd4e1e79
>  - http://autobuild.buildroot.org/results/b2b22e4f9684aca0246650673fd8c33019712ddf
>  - http://autobuild.buildroot.org/results/1597bfe2a57cd3aef54d331447dd81cae020d434
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/pistache/Config.in | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/pistache: needs NPTL
  2024-07-23 13:20 [Buildroot] [PATCH 1/1] package/pistache: needs NPTL Fabrice Fontaine
  2024-08-02 17:51 ` Thomas Petazzoni via buildroot
@ 2024-09-03 16:26 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2024-09-03 16:26 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > pistache needs NPTL as it unconditionally uses pthread_setname_np since
 > https://github.com/pistacheio/pistache/commit/b283c32963a7cb0500cf69555d320a6e9e252850
 > resulting in the following uclibc build failure since commit
 > 82e61bed8208857d5d13c384c89086c4dd4e1e79:

 > ../src/common/reactor.cc: In lambda function:
 > ../src/common/reactor.cc:512:25: error: 'pthread_setname_np' was not
 > declared in this scope; did you mean 'pthread_setcanceltype'?
 >   512 |                         pthread_setname_np(pthread_self(),
 >       |                         ^~~~~~~~~~~~~~~~~~
 >       |                         pthread_setcanceltype

 > Fixes: 82e61bed8208857d5d13c384c89086c4dd4e1e79
 >  - http://autobuild.buildroot.org/results/b2b22e4f9684aca0246650673fd8c33019712ddf
 >  - http://autobuild.buildroot.org/results/1597bfe2a57cd3aef54d331447dd81cae020d434

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2024.02.x and 2024.05.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2024-09-03 16:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-23 13:20 [Buildroot] [PATCH 1/1] package/pistache: needs NPTL Fabrice Fontaine
2024-08-02 17:51 ` Thomas Petazzoni via buildroot
2024-09-03 16:26 ` Peter Korsgaard

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