1config 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 11 http://opentracing.io 12 13comment "opentracing-cpp needs a toolchain w/ C++, threads, dynamic library, gcc >= 4.8" 14 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS \ 15 || BR2_STATIC_LIBS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 16 17comment "opentracing-cpp needs exception_ptr" 18 depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735 19