Config.in 613 B

1234567891011121314151617181920212223242526
  1. config ADK_PACKAGE_CXXTOOLS
  2. prompt "cxxtools.......................... cxxtools"
  3. tristate
  4. default n
  5. depends on ADK_CXX
  6. select ADK_PACKAGE_LIBICONV
  7. help
  8. http://www.tntnet.org
  9. choice
  10. prompt "C++ library to use"
  11. depends on ADK_PACKAGE_CXXTOOLS
  12. default ADK_COMPILE_CXXTOOLS_WITH_STDCXX if ADK_TARGET_LIB_GLIBC
  13. default ADK_COMPILE_CXXTOOLS_WITH_UCLIBCXX if ADK_TARGET_LIB_UCLIBC
  14. config ADK_COMPILE_CXXTOOLS_WITH_STDCXX
  15. bool "Standard C++ library"
  16. select ADK_PACKAGE_LIBSTDCXX
  17. help
  18. config ADK_COMPILE_CXXTOOLS_WITH_UCLIBCXX
  19. bool "Embedded uClibc++ library"
  20. select ADK_PACKAGE_UCLIBCXX
  21. help
  22. endchoice