2018-01-04 13:28:31 +01:00
|
|
|
config BR2_PACKAGE_OPENTRACING_CPP
|
|
|
|
bool "opentracing-cpp"
|
|
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
2019-02-04 11:30:06 +01:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
2018-01-04 13:28:31 +01:00
|
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11
|
|
|
|
depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # exception_ptr
|
|
|
|
help
|
|
|
|
OpenTracing API for C++
|
|
|
|
|
|
|
|
http://opentracing.io
|
|
|
|
|
2019-02-04 11:30:06 +01:00
|
|
|
comment "opentracing-cpp needs a toolchain w/ C++, threads, gcc >= 4.8"
|
|
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
|
2018-01-04 13:28:31 +01:00
|
|
|
|
|
|
|
comment "opentracing-cpp needs exception_ptr"
|
|
|
|
depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735
|