Config.in 540 B

12345678910111213141516
  1. config 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. http://www.dre.vanderbilt.edu/~schmidt/ACE.html
  11. comment "ACE needs a glibc toolchain, dynamic library, C++, gcc >= 4.9"
  12. depends on !BR2_TOOLCHAIN_USES_GLIBC || BR2_STATIC_LIBS || \
  13. !BR2_INSTALL_LIBSTDCPP || \
  14. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9