Config.in 805 B

12345678910111213141516171819202122232425262728
  1. config ADK_PACKAGE_IPERF
  2. prompt "iperf............................. Internet Protocol bandwidth measuring tool"
  3. tristate
  4. select ADK_PACKAGE_LIBPTHREAD
  5. default n
  6. help
  7. Iperf is a modern alternative for measuring TCP and UDP bandwidth
  8. performance, allowing the tuning of various parameters and
  9. characteristics.
  10. http://dast.nlanr.net/Projects/Iperf/
  11. choice
  12. prompt "C++ library to use"
  13. depends on ADK_PACKAGE_IPERF
  14. default ADK_COMPILE_IPERF_WITH_STDCXX if ADK_TARGET_LIB_GLIBC || ADK_TARGET_LIB_EGLIBC
  15. default ADK_COMPILE_IPERF_WITH_UCLIBCXX if ADK_TARGET_LIB_UCLIBC
  16. config ADK_COMPILE_IPERF_WITH_STDCXX
  17. bool "Standard C++ library"
  18. select ADK_PACKAGE_LIBSTDCXX
  19. help
  20. config ADK_COMPILE_IPERF_WITH_UCLIBCXX
  21. bool "Embedded uClibc++ library"
  22. select ADK_PACKAGE_UCLIBCXX
  23. help
  24. endchoice