Config.in 792 B

12345678910111213141516171819202122
  1. config BR2_PACKAGE_STRESS_NG
  2. bool "stress-ng"
  3. depends on BR2_USE_MMU # fork()
  4. # perf.c needs PERF_COUNT_HW_REF_CPU_CYCLES
  5. depends on BR2_TOOLCHAIN_HAS_SYNC_4
  6. depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_3
  7. # fenv.h lacks FE_INVALID, FE_OVERFLOW & FE_UNDERFLOW on nios2 and ARC
  8. depends on !BR2_nios2
  9. depends on !BR2_arc
  10. help
  11. stress-ng will stress test a computer system in various
  12. selectable ways. It was designed to exercise various physical
  13. subsystems of a computer as well as the various operating
  14. system kernel interfaces.
  15. https://github.com/ColinIanKing/stress-ng
  16. comment "stress-ng needs a toolchain w/ headers >= 3.3"
  17. depends on !BR2_nios2 && !BR2_arc
  18. depends on BR2_TOOLCHAIN_HAS_SYNC_4
  19. depends on BR2_USE_MMU
  20. depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_3