1config BR2_PACKAGE_BCTOOLBOX 2 bool "bctoolbox" 3 depends on BR2_INSTALL_LIBSTDCPP 4 depends on BR2_TOOLCHAIN_HAS_THREADS 5 depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # exception_ptr 6 select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE 7 help 8 Utilities library used by Belledonne Communications 9 softwares like belle-sip, mediastreamer2 and linphone. 10 11 Select BR2_PACKAGE_MBEDTLS for crypto support. 12 13 https://github.com/BelledonneCommunications/bctoolbox 14 15comment "bctoolbox needs a toolchain w/ C++, threads" 16 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS 17 18comment "bctoolbox needs a toolchain not affected by GCC bug 64735" 19 depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735 20