1234567891011121314151617181920212223242526 |
- config ADK_PACKAGE_CXXTOOLS
- prompt "cxxtools.......................... cxxtools"
- tristate
- default n
- depends on ADK_CXX
- select ADK_PACKAGE_LIBICONV
- help
- http://www.tntnet.org
- choice
- prompt "C++ library to use"
- depends on ADK_PACKAGE_CXXTOOLS
- default ADK_COMPILE_CXXTOOLS_WITH_STDCXX if ADK_TARGET_LIB_GLIBC
- default ADK_COMPILE_CXXTOOLS_WITH_UCLIBCXX if ADK_TARGET_LIB_UCLIBC
- config ADK_COMPILE_CXXTOOLS_WITH_STDCXX
- bool "Standard C++ library"
- select ADK_PACKAGE_LIBSTDCXX
- help
- config ADK_COMPILE_CXXTOOLS_WITH_UCLIBCXX
- bool "Embedded uClibc++ library"
- select ADK_PACKAGE_UCLIBCXX
- help
- endchoice
|