Config.in 719 B

1234567891011121314151617181920
  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_HEADERS_AT_LEAST_3_3
  6. # fenv.h lacks FE_INVALID, FE_OVERFLOW & FE_UNDERFLOW on nios2 and ARC
  7. depends on !BR2_nios2
  8. depends on !BR2_arc
  9. help
  10. stress-ng will stress test a computer system in various
  11. selectable ways. It was designed to exercise various physical
  12. subsystems of a computer as well as the various operating
  13. system kernel interfaces.
  14. http://kernel.ubuntu.com/~cking/stress-ng/
  15. comment "stress-ng needs a toolchain w/ headers >= 3.3"
  16. depends on !BR2_nios2 && !BR2_arc
  17. depends on BR2_USE_MMU
  18. depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_3