1config BR2_PACKAGE_BELR 2 bool "belr" 3 depends on BR2_INSTALL_LIBSTDCPP 4 depends on BR2_TOOLCHAIN_HAS_THREADS # bctoolbox 5 depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # bctoolbox 6 select BR2_PACKAGE_BCTOOLBOX 7 help 8 Belr is Belledonne Communications' language recognition 9 library, written in C++11. It parses text inputs formatted 10 according to a language defined by an ABNF grammar, such as 11 the protocols standardized at IETF. 12 13 https://gitlab.linphone.org/BC/public/belr 14 15comment "belr needs a toolchain w/ threads, C++" 16 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS 17 18comment "belr needs a toolchain not affected by GCC bug 64735" 19 depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735 20