Config.in 641 B

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