Config.in 703 B

12345678910111213141516171819202122232425
  1. config BR2_PACKAGE_HAWKTRACER
  2. bool "hawktracer"
  3. depends on BR2_INSTALL_LIBSTDCPP
  4. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11
  5. help
  6. HawkTracer is a highly portable, low-overhead, configurable
  7. profiling tool built in Amazon Video for getting performance
  8. metrics from low-end devices.
  9. https://hawktracer.github.io/
  10. if BR2_PACKAGE_HAWKTRACER
  11. config BR2_PACKAGE_HAWKTRACER_TCP_LISTENER
  12. bool "TCP listener"
  13. default y
  14. depends on BR2_TOOLCHAIN_HAS_THREADS
  15. comment "TCP listener needs a toolchain w/ threads"
  16. depends on !BR2_TOOLCHAIN_HAS_THREADS
  17. endif
  18. comment "hawktracer needs a toolchain w/ C++, gcc >= 4.8"
  19. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8