diff options
author | Conrad Kostecki <conrad@kostecki.com> | 2019-02-21 20:44:02 +0100 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2019-02-22 22:08:25 +0100 |
commit | 50a19d3c52f3a304f4770349aaa5affac5b69306 (patch) | |
tree | c1f838be9ccf52d060d6ea0f3a317ea5131fe6a3 /app-benchmarks/interbench/files | |
parent | app-dicts/myspell-de: remove old. (diff) | |
download | gentoo-50a19d3c52f3a304f4770349aaa5affac5b69306.tar.gz gentoo-50a19d3c52f3a304f4770349aaa5affac5b69306.tar.bz2 gentoo-50a19d3c52f3a304f4770349aaa5affac5b69306.zip |
app-benchmarks/interbench: new package.
The Linux interactivity benchmark.
It is designed to measure the effect of changed in Linux kernel design or
system configuration changes such as CPU, I/O scheduler and filesystem changes
and options.
Closes: https://bugs.gentoo.org/100145
Package-Manager: Portage-2.3.60, Repoman-2.3.12
Signed-off-by: Conrad Kostecki <conrad@kostecki.com>
Closes: https://github.com/gentoo/gentoo/pull/10316
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'app-benchmarks/interbench/files')
-rw-r--r-- | app-benchmarks/interbench/files/interbench-0.31-makefile.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/app-benchmarks/interbench/files/interbench-0.31-makefile.patch b/app-benchmarks/interbench/files/interbench-0.31-makefile.patch new file mode 100644 index 000000000000..712c54f482c8 --- /dev/null +++ b/app-benchmarks/interbench/files/interbench-0.31-makefile.patch @@ -0,0 +1,16 @@ +--- a/Makefile 2016-10-21 04:28:00.000000000 +0200 ++++ b/Makefile 2018-11-01 16:56:36.000000000 +0100 +@@ -1,8 +1,9 @@ +-CC=gcc +-CFLAGS=-W -Wall -g -O2 -s -pipe +-LDFLAGS=-lrt -lm -pthread ++CC ?= gcc ++CFLAGS+=-W -Wall ++LDFLAGS+=-lrt -lm -pthread + +-interbench: interbench.o hackbench.o -lm ++interbench: interbench.o hackbench.o ++ $(CC) $(CFLAGS) -o interbench interbench.o hackbench.o $(LDFLAGS) + interbench.o: interbench.c + hackbench.o: hackbench.c + |