Config.in 692 B

12345678910111213141516171819
  1. config 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. Select BR2_PACKAGE_MBEDTLS for crypto support.
  11. https://github.com/BelledonneCommunications/bctoolbox
  12. comment "bctoolbox needs a toolchain w/ C++, threads"
  13. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
  14. comment "bctoolbox needs a toolchain not affected by GCC bug 64735"
  15. depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735