00553ea186
This commit dropped the patch, included upstream in:
5d419c790e
which was included in V0.14.04.
Three patches are also introduced to fix build issues (all
upstream not but not yet in version).
Also, this new version now depends on BR2_TOOLCHAIN_HAS_SYNC_4.
Finally, a new _MAKE_FLAGS is introduced to prevent the package to
modify too much its CFLAGS.
For change log since V0.13.05, see:
- https://github.com/ColinIanKing/stress-ng/blob/V0.15.04/debian/changelog
or commit logs:
- https://github.com/ColinIanKing/stress-ng/commits/V0.15.04
Signed-off-by: Julien Olivain <ju.o@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
23 lines
792 B
Plaintext
23 lines
792 B
Plaintext
config BR2_PACKAGE_STRESS_NG
|
|
bool "stress-ng"
|
|
depends on BR2_USE_MMU # fork()
|
|
# perf.c needs PERF_COUNT_HW_REF_CPU_CYCLES
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
|
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_3
|
|
# fenv.h lacks FE_INVALID, FE_OVERFLOW & FE_UNDERFLOW on nios2 and ARC
|
|
depends on !BR2_nios2
|
|
depends on !BR2_arc
|
|
help
|
|
stress-ng will stress test a computer system in various
|
|
selectable ways. It was designed to exercise various physical
|
|
subsystems of a computer as well as the various operating
|
|
system kernel interfaces.
|
|
|
|
https://github.com/ColinIanKing/stress-ng
|
|
|
|
comment "stress-ng needs a toolchain w/ headers >= 3.3"
|
|
depends on !BR2_nios2 && !BR2_arc
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_3
|