xref: /OK3568_Linux_fs/buildroot/package/stress-ng/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config 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
15	  https://github.com/ColinIanKing/stress-ng
16
17comment "stress-ng needs a toolchain w/ headers >= 3.3"
18	depends on !BR2_nios2 && !BR2_arc
19	depends on BR2_USE_MMU
20	depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_3
21