Config.in 635 B

123456789101112131415161718
  1. config BR2_PACKAGE_OPENTRACING_CPP
  2. bool "opentracing-cpp"
  3. depends on BR2_INSTALL_LIBSTDCPP
  4. depends on BR2_TOOLCHAIN_HAS_THREADS
  5. depends on !BR2_STATIC_LIBS
  6. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11
  7. depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # exception_ptr
  8. help
  9. OpenTracing API for C++
  10. http://opentracing.io
  11. comment "opentracing-cpp needs a toolchain w/ C++, threads, dynamic library, gcc >= 4.8"
  12. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS \
  13. || BR2_STATIC_LIBS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
  14. comment "opentracing-cpp needs exception_ptr"
  15. depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735