1config BR2_PACKAGE_ACE 2 bool "ace" 3 depends on BR2_TOOLCHAIN_USES_GLIBC 4 depends on !BR2_STATIC_LIBS 5 depends on BR2_INSTALL_LIBSTDCPP 6 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++14 7 help 8 The ADAPTIVE Communication Environment (ACE(TM)) 9 An OO Network Programming Toolkit in C++. 10 11 http://www.dre.vanderbilt.edu/~schmidt/ACE.html 12 13comment "ACE needs a glibc toolchain, dynamic library, C++, gcc >= 4.9" 14 depends on !BR2_TOOLCHAIN_USES_GLIBC || BR2_STATIC_LIBS || \ 15 !BR2_INSTALL_LIBSTDCPP || \ 16 !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 17