mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-18 13:23:39 -09:00
pistache needs NPTL as it unconditionally uses pthread_setname_np sinceb283c32963resulting in the following uclibc build failure since commit82e61bed82: ../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:82e61bed82- http://autobuild.buildroot.org/results/b2b22e4f9684aca0246650673fd8c33019712ddf - http://autobuild.buildroot.org/results/1597bfe2a57cd3aef54d331447dd81cae020d434 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
20 lines
647 B
Plaintext
20 lines
647 B
Plaintext
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_NPTL
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
select BR2_PACKAGE_RAPIDJSON
|
|
help
|
|
Pistache is a modern and elegant HTTP and REST framework
|
|
for C++. It is entirely written in pure C++17 and provides
|
|
a clear and pleasant API.
|
|
|
|
https://github.com/oktal/pistache
|
|
|
|
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_NPTL || \
|
|
!BR2_USE_WCHAR
|