1config BR2_PACKAGE_PAHO_MQTT_CPP 2 bool "paho-mqtt-cpp" 3 depends on BR2_TOOLCHAIN_HAS_THREADS 4 depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # std::future 5 depends on BR2_INSTALL_LIBSTDCPP 6 select BR2_PACKAGE_PAHO_MQTT_C 7 help 8 MQTT client C++ library 9 10 https://eclipse.org/paho/clients/cpp/ 11 12comment "paho-mqtt-cpp needs a toolchain w/ threads, C++" 13 depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP 14 depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 15 16comment "paho-mqtt-cpp needs a toolchain not affected by GCC bug 64735" 17 depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735 18