summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Schwebel <r.schwebel@pengutronix.de>2009-04-09 19:40:55 +0000
committerRobert Schwebel <r.schwebel@pengutronix.de>2009-04-09 19:40:55 +0000
commit4b01325b8cdd85d8f82f20ea0410f5c797299bf2 (patch)
tree78730bf9739e9aa635f2667511c2d74bc6ea1662
parentb2e8f084ba566b1d863f5c2b9a6bfe509e70dfa1 (diff)
downloadptxdist-4b01325b8cdd85d8f82f20ea0410f5c797299bf2.tar.gz
ptxdist-4b01325b8cdd85d8f82f20ea0410f5c797299bf2.tar.xz
* lmbench: replace old build system by the autotools
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@10279 33e552b5-05e3-0310-8538-816dae2090ed
-rw-r--r--patches/lmbench-3.0-a9/generic/lmbench-3.0-a9-autogen.diff.bz2bin0 -> 409551 bytes
-rw-r--r--patches/lmbench-3.0-a9/generic/lmbench-3.0-a9-autotoolize.diff268
-rw-r--r--patches/lmbench-3.0-a9/generic/lmbench-3.0-a9-remove-old-buildsystem.diff917
-rw-r--r--patches/lmbench-3.0-a9/generic/lmbench-3.0-a9-rpcheaders.diff29
-rw-r--r--patches/lmbench-3.0-a9/generic/series4
-rw-r--r--rules/lmbench.in (renamed from rules/lmbench3.in)1
-rw-r--r--rules/lmbench.make (renamed from rules/lmbench3.make)92
7 files changed, 1296 insertions, 15 deletions
diff --git a/patches/lmbench-3.0-a9/generic/lmbench-3.0-a9-autogen.diff.bz2 b/patches/lmbench-3.0-a9/generic/lmbench-3.0-a9-autogen.diff.bz2
new file mode 100644
index 000000000..92a965295
--- /dev/null
+++ b/patches/lmbench-3.0-a9/generic/lmbench-3.0-a9-autogen.diff.bz2
Binary files differ
diff --git a/patches/lmbench-3.0-a9/generic/lmbench-3.0-a9-autotoolize.diff b/patches/lmbench-3.0-a9/generic/lmbench-3.0-a9-autotoolize.diff
new file mode 100644
index 000000000..06cef6e8c
--- /dev/null
+++ b/patches/lmbench-3.0-a9/generic/lmbench-3.0-a9-autotoolize.diff
@@ -0,0 +1,268 @@
+---
+ Makefile.am | 3 +
+ autogen.sh | 22 ++++++++++
+ configure.ac | 116 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ src/Makefile.am | 100 ++++++++++++++++++++++++++++++++++++++++++++++++
+ 4 files changed, 241 insertions(+)
+
+Index: lmbench-3.0-a9/Makefile.am
+===================================================================
+--- /dev/null
++++ lmbench-3.0-a9/Makefile.am
+@@ -0,0 +1,3 @@
++SUBDIRS = \
++ src
++
+Index: lmbench-3.0-a9/autogen.sh
+===================================================================
+--- /dev/null
++++ lmbench-3.0-a9/autogen.sh
+@@ -0,0 +1,22 @@
++#!/bin/bash
++
++#
++# usage:
++#
++# banner <target name>
++#
++banner() {
++ echo
++ TG=`echo $1 | sed -e "s,/.*/,,g"`
++ LINE=`echo $TG |sed -e "s/./-/g"`
++ echo $LINE
++ echo $TG
++ echo $LINE
++ echo
++}
++
++banner "autoreconf"
++
++autoreconf --force --install --symlink -Wall || exit $?
++
++banner "Finished"
+Index: lmbench-3.0-a9/configure.ac
+===================================================================
+--- /dev/null
++++ lmbench-3.0-a9/configure.ac
+@@ -0,0 +1,116 @@
++AC_PREREQ(2.59)
++
++AC_INIT([lmbench], [trunk], [bugs@pengutronix.de])
++AC_CONFIG_SRCDIR([src/lmdd.c])
++AC_CANONICAL_BUILD
++AC_CANONICAL_HOST
++
++AM_MAINTAINER_MODE
++
++CFLAGS="${CFLAGS} -W -Wall"
++
++#
++# libtool library versioning stuff
++#
++# Library code modified: REVISION++
++# Interfaces changed/added/removed: CURRENT++ REVISION=0
++# Interfaces added: AGE++
++# Interfaces removed: AGE=0
++LT_CURRENT=0
++LT_REVISION=0
++LT_AGE=0
++AC_SUBST(LT_CURRENT)
++AC_SUBST(LT_REVISION)
++AC_SUBST(LT_AGE)
++
++
++#
++# Checks for programs.
++#
++AC_PROG_CC
++AC_PROG_LIBTOOL
++
++AM_INIT_AUTOMAKE([foreign no-exeext dist-bzip2])
++
++
++##
++# libstiebel
++##
++#REQUIRES_LIBSTIEBEL="libstiebel >= 0.0.3"
++#AC_SUBST(REQUIRES_LIBSTIEBEL)
++#PKG_CHECK_MODULES(libstiebel, $REQUIRES_LIBSTIEBEL)
++
++##
++# libpv
++##
++#REQUIRES_LIBPV="libpv >= 1.2.10"
++#AC_SUBST(REQUIRES_LIBPV)
++#PKG_CHECK_MODULES(libpv, $REQUIRES_LIBPV)
++
++
++#
++# Debugging
++#
++AC_MSG_CHECKING([whether to enable debugging])
++AC_ARG_ENABLE(debug,
++ AS_HELP_STRING([--enable-debug], [enable debugging @<:@default=yes@:>@]),
++ [case "$enableval" in
++ y | yes) CONFIG_DEBUG=yes ;;
++ *) CONFIG_DEBUG=no ;;
++ esac],
++ [CONFIG_DEBUG=yes])
++AC_MSG_RESULT([${CONFIG_DEBUG}])
++if test "${CONFIG_DEBUG}" = "yes"; then
++ CFLAGS="${CFLAGS} -Werror -Wsign-compare -Wfloat-equal -Wformat-security -g -O1"
++ AC_DEFINE(DEBUG, 1, [debugging])
++else
++ CFLAGS="${CFLAGS} -O2"
++fi
++
++
++#
++# header file checks
++#
++
++AC_CHECK_HEADER([pmap_clnt.h],[CFLAGS="${CFLAGS} -DHAVE_pmap_clnt_h"])
++
++
++#
++# type checks
++#
++
++AC_CHECK_TYPE([uint],[CFLAGS="${CFLAGS} -DHAVE_uint"])
++AC_CHECK_TYPE([uint64],[CFLAGS="${CFLAGS} -DHAVE_uint64"])
++AC_CHECK_TYPE([uint64_t],[CFLAGS="${CFLAGS} -DHAVE_uint64_t"])
++AC_CHECK_TYPE([int64],[CFLAGS="${CFLAGS} -DHAVE_int64"])
++AC_CHECK_TYPE([int64_t],[CFLAGS="${CFLAGS} -DHAVE_int64_t"])
++AC_CHECK_TYPE([socklen_t],[CFLAGS="${CFLAGS} -DHAVE_socklen_t"])
++AC_CHECK_TYPE([off64_t],[CFLAGS="${CFLAGS} -DHAVE_off64_t"])
++
++AC_COMPILE_IFELSE(
++[
++ #include <stdlib.h>
++ main() { srand48(973); return (int)(1.0E9 * drand48()); }
++],
++[CFLAGS="${CFLAGS} -DHAVE_DRAND48"])
++
++AC_COMPILE_IFELSE(
++[
++ #include <stdlib.h>
++ main() { srand(973); return (10 * rand()) / RAND_MAX; }
++],
++[CFLAGS="${CFLAGS} -DHAVE_RAND"])
++
++AC_COMPILE_IFELSE(
++[
++ #include <stdlib.h>
++ main() { srandom(973); return (10 * random()) / RAND_MAX; }
++],
++[CFLAGS="${CFLAGS} -DHAVE_RANDOM"])
++
++AC_CONFIG_FILES([
++ Makefile
++ src/Makefile
++])
++AC_OUTPUT
++
+Index: lmbench-3.0-a9/src/Makefile.am
+===================================================================
+--- /dev/null
++++ lmbench-3.0-a9/src/Makefile.am
+@@ -0,0 +1,100 @@
++bin_PROGRAMS = \
++ bw_file_rd \
++ bw_mem \
++ bw_file_rd \
++ bw_mem \
++ bw_mmap_rd \
++ bw_pipe \
++ bw_tcp \
++ bw_unix \
++ hello \
++ lat_select \
++ lat_pipe \
++ lat_rpc \
++ lat_syscall \
++ lat_tcp \
++ lat_udp \
++ lat_mmap \
++ mhz \
++ lat_proc \
++ lat_pagefault \
++ lat_connect \
++ lat_fs \
++ lat_sig \
++ lat_mem_rd \
++ lat_ctx \
++ lat_sem \
++ memsize \
++ lat_unix \
++ lmdd \
++ timing_o \
++ enough \
++ msleep \
++ loop_o \
++ lat_fifo \
++ lmhttp \
++ lat_http \
++ lat_fcntl \
++ disk \
++ lat_unix_connect \
++ flushdisk \
++ lat_ops \
++ line \
++ tlb \
++ par_mem \
++ par_ops \
++ stream
++
++flushdisk_CPPFLAGS = \
++ -DMAIN
++
++LDADD = \
++ liblmbench.la
++
++lib_LTLIBRARIES = \
++ liblmbench.la
++
++AM_CPPFLAGS = \
++ -I$(top_srcdir)/include \
++ -I$(top_builddir)/include
++# $(libpv_CFLAGS) \
++# $(libstiebel_CFLAGS)
++
++EXTRA_DIST = \
++ autogen.sh
++
++MAINTAINERCLEANFILES = \
++ configure \
++ aclocal.m4 \
++ Makefile.in
++
++#pkgconfigdir = $(libdir)/pkgconfig
++#pkgconfig_DATA = libactor-@name@.pc
++
++#
++# library
++#
++
++#include_HEADERS = \
++# libactor-@name@.h
++
++liblmbench_la_SOURCES = \
++ lib_tcp.c \
++ lib_udp.c \
++ lib_unix.c \
++ lib_timing.c \
++ lib_mem.c \
++ lib_stats.c \
++ lib_debug.c \
++ lib_sched.c \
++ getopt.c
++
++liblmbench_la_LDFLAGS = \
++ -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
++ -Wl,-no-undefined \
++ -lm
++
++#libactor_@name@_la_LIBADD = \
++# $(libpv_LIBS) \
++# $(libstiebel_LIBS)
++
diff --git a/patches/lmbench-3.0-a9/generic/lmbench-3.0-a9-remove-old-buildsystem.diff b/patches/lmbench-3.0-a9/generic/lmbench-3.0-a9-remove-old-buildsystem.diff
new file mode 100644
index 000000000..7788dfb86
--- /dev/null
+++ b/patches/lmbench-3.0-a9/generic/lmbench-3.0-a9-remove-old-buildsystem.diff
@@ -0,0 +1,917 @@
+---
+ Makefile | 74 --------
+ results/Makefile | 333 -------------------------------------
+ src/Makefile | 489 -------------------------------------------------------
+ 3 files changed, 896 deletions(-)
+
+Index: lmbench-3.0-a9/Makefile
+===================================================================
+--- lmbench-3.0-a9.orig/Makefile
++++ /dev/null
+@@ -1,74 +0,0 @@
+-# Makefile for top level of lmbench
+-# $Id$
+-
+-# Possible things to $(MAKE):
+-#
+-# build (default) go to the source directory and build the benchmark
+-# results go to the source directory and build and run the benchmark
+-# rerun run the benchmark again
+-# see see the results that came with this release
+-# Go to the results directory and read the Makefile.
+-# doc.lpr print the documentation
+-# doc.x preview the documentation (needs X, groff, pic, etc)
+-# clean go to the subdirs and $(MAKE) clean
+-# get $(MAKE) sure all files are checked out
+-# shar build a shippable shar archive
+-
+-SHELL=/bin/sh
+-
+-build:
+- cd src && $(MAKE)
+-
+-results: FRC
+- cd src && $(MAKE) results
+-
+-rerun:
+- cd src && $(MAKE) rerun
+-
+-see:
+- cd results && $(MAKE) summary >summary.out 2>summary.errs
+- cd results && $(MAKE) percent >percent.out 2>percent.errs
+-
+-doc.lpr:
+- cd doc && $(MAKE) PS && lpr *.PS
+-
+-doc.x:
+- cd doc && $(MAKE) x
+-
+-clobber clean:
+- for i in doc src results scripts; do \
+- echo ===== $$i =====; \
+- (cd $$i && $(MAKE) clean); \
+- done
+- /bin/rm -rf bin/*
+- -bk clean
+-
+-get:
+- for i in doc src results scripts; do \
+- echo ===== $$i =====; \
+- (cd $$i && bk get -q); \
+- done
+- @co -q
+-
+-info:
+- for i in doc src results scripts; do \
+- echo ===== $$i =====; \
+- (cd $$i && info); \
+- done
+-
+-release: scripts/mkrelease
+- scripts/mkrelease
+-
+-scripts/mkrelease:
+- cd scripts && co mkrelease
+-
+-# XXX - . must be named lmbench for this to work
+-shar:
+- $(MAKE) clean
+- co -q Makefile
+- $(MAKE) get
+- cd .. && \
+- find lmbench -type f -print | egrep -v 'noship|RCS' > /tmp/FILES
+- cd .. && shar -S -a -n lmbench1.0 -L 50K < /tmp/FILES
+-
+-FRC:
+Index: lmbench-3.0-a9/results/Makefile
+===================================================================
+--- lmbench-3.0-a9.orig/results/Makefile
++++ /dev/null
+@@ -1,333 +0,0 @@
+-# Makefile for lmbench results.
+-# $Id$
+-#
+-# Usage: make [ LIST="aix/* sunos/* ..." ] [ what ]
+-#
+-# What to make:
+-# print Prints the results 1 per page.
+-# ps Saves the postscript of 1 per page in PS/PS
+-# 4.ps Saves the postscript of 4 per page in PS/PS4
+-# 8.ps Saves the postscript of 8 per page in PS/PS8
+-# x Previews 1 per page using groff -X
+-# summary [default] Ascii summary of the results
+-# stats Do statistics over a set of results
+-# roff Print the ascii summaries into a roff file
+-# slides Makes the pic for inclusion in slides
+-#
+-# This Makefile requires groff, gpic, and perl. You could try it with
+-# other *roff processors; I have no idea if it works.
+-#
+-# XXX - this is all out of date.
+-#
+-# There are three sorts of graphical results:
+-#
+-# 1. Bargraphs comparing each system in the LIST on the measurements listed
+-# in the BG list below (pretty much everything).
+-# 2. A 2-D graph for each system in LIST, displaying context switch times
+-# as a function of (# of processes, size of each process).
+-# 3. A 2-D graph for each system in LIST, displaying memory read times as
+-# a function of (stride size, memory size).
+-#
+-# The bargraphs are in a format of my own - the perl script in scripts
+-# called bargraph takes them as input and produces pic as output.
+-# It is a pretty straightforward format, you could probably incorparate
+-# into some Windows spreadsheet if you wanted to. See tmp/*.bg after
+-# running make in this directory.
+-#
+-# The 2-D graphs are in a format that can (probably) be read by Xgraph.
+-# I've added a few extensions for titles, etc., that you could just
+-# take out. See tmp/mem.* after running a make in this directory.
+-#
+-# This Makefile is of marginal usefulness to a site with just one machine.
+-# I intend to make results available so that people can compare, as well
+-# as a service where you can compare your results against the "best of
+-# the breed" for each vendor, as well as against best of the lot.
+-
+-# List of result files to process. Defaults to everything.
+-LIST= `$(SCRIPTS)getlist $(LST)`
+-
+-# Grrrrr
+-SHELL=/bin/sh
+-
+-SCRIPTS=../scripts/
+-SRCS= ../scripts/allctx ../scripts/allmem ../scripts/bargraph \
+- ../scripts/bghtml ../scripts/getbg ../scripts/getbw \
+- ../scripts/getctx ../scripts/getdisk ../scripts/getlist \
+- ../scripts/getmax ../scripts/getmem ../scripts/getpercent \
+- ../scripts/getresults ../scripts/getsummary ../scripts/gifs \
+- ../scripts/graph ../scripts/html-list ../scripts/html-man \
+- ../scripts/os ../scripts/percent ../scripts/save \
+- ../scripts/stats ../scripts/xroff
+-
+-MISC= tmp/misc_mhz.bg \
+- tmp/lat_ctx.bg \
+- tmp/lat_ctx8.bg \
+- tmp/lat_nullsys.bg \
+- tmp/lat_signal.bg \
+- tmp/lat_pagefault.bg \
+- tmp/lat_mappings.bg \
+- tmp/lat_fs_create.bg
+-
+-PROC= tmp/lat_nullproc.bg \
+- tmp/lat_simpleproc.bg \
+- tmp/lat_shproc.bg
+-
+-LATENCY= \
+- tmp/lat_pipe.bg \
+- tmp/lat_connect.bg \
+- tmp/lat_udp_local.bg \
+- tmp/lat_rpc_udp_local.bg \
+- tmp/lat_tcp_local.bg \
+- tmp/lat_rpc_tcp_local.bg
+-
+-BANDWIDTH= \
+- tmp/bw_pipe.bg \
+- tmp/bw_tcp_local.bg \
+- tmp/bw_file.bg \
+- tmp/bw_reread.bg \
+- tmp/bw_mmap.bg \
+- tmp/bw_bcopy_libc.bg \
+- tmp/bw_bcopy_unrolled.bg \
+- tmp/bw_mem_rdsum.bg \
+- tmp/bw_mem_wr.bg
+-
+-BG= $(MISC) $(PROC) $(LATENCY) $(BANDWIDTH)
+-
+-MK=@$(MAKE) -s
+-PRINT=groff -p | lpr -h
+-PS=groff -p | $(SCRIPTS)save PS/PS
+-PS8UP=groff -p | mpage -P- -8 -a | $(SCRIPTS)save PS/PS8
+-PS4UP=groff -p | mpage -P- -4 -a | $(SCRIPTS)save PS/PS4
+-SIZE=-big
+-IMAGE=pbm
+-CLOSE=
+-GMEM=$(CLOSE) -grid -logx -xm -below
+-GCTX=$(CLOSE) -grid -below
+-GDISK=-below -close -grid -nolines
+-#IMAGE=gifmono
+-
+-summary: $(SRCS)
+- @$(SCRIPTS)getsummary $(LIST)
+-
+-percent: $(SRCS)
+- @$(SCRIPTS)getpercent $(LIST)
+-
+-stats: $(SRCS)
+- $(SCRIPTS)getsummary $(LIST) | $(SCRIPTS)percent
+-
+-roff:
+- echo .nf > summary.roff
+- echo .ft CB >> summary.roff
+- echo .ps 12 >> summary.roff
+- echo .po .35i >> summary.roff
+- echo .sp .5i >> summary.roff
+- make LIST="$(LIST)" summary >> summary.roff
+- echo .bp >> summary.roff
+- echo .sp .5i >> summary.roff
+- make LIST="$(LIST)" percent >> summary.roff
+-
+-list:
+- @echo $(LIST)
+-
+-print: ctx mem disk bwfile bwmem
+-
+-8:
+- $(MK) LIST="$(LIST)" PRINT="groff -p | mpage -P -8 -a | lpr -h" print
+-
+-8.ps 8ps 8up:
+- $(MK) LIST="$(LIST)" PRINT="$(PS8UP)" print
+-
+-4.ps 4ps 4up:
+- $(MK) LIST="$(LIST)" PRINT="$(PS4UP)" print
+-
+-ps:
+- $(MK) LIST="$(LIST)" PRINT="$(PS)" print
+-
+-smallps:
+- $(MK) LIST="$(LIST)" SIZE= PRINT="groff -p | $(SCRIPTS)save PS/smallPS" print
+-
+-x:
+- $(MK) LIST="$(LIST)" PRINT="$(SCRIPTS)xroff -p" print
+-
+-ctx.x:
+- $(MK) LIST="$(LIST)" PRINT="$(SCRIPTS)xroff -p" ctx
+-
+-ctx.ps4:
+- $(MK) LIST="$(LIST)" PRINT="$(PS4UP)" ctx
+-
+-mem.x:
+- $(MK) LIST="$(LIST)" PRINT="$(SCRIPTS)xroff -p" mem
+-
+-disk.x:
+- $(MK) LIST="$(LIST)" PRINT="$(SCRIPTS)xroff -p" disk
+-
+-bwfile.ps:
+- $(MK) LIST="$(LIST)" PRINT="$(PS)" bwfile
+-
+-bwfile.x:
+- $(MK) LIST="$(LIST)" PRINT="$(SCRIPTS)xroff -p" bwfile
+-
+-bwmem.ps:
+- $(MK) LIST="$(LIST)" PRINT="$(PS)" bwmem
+-
+-bwmem.x:
+- $(MK) LIST="$(LIST)" PRINT="$(SCRIPTS)xroff -p" bwmem
+-
+-smallx:
+- $(MK) LIST="$(LIST)" PRINT="$(SCRIPTS)xroff -p" SIZE= print
+-
+-slides:
+- $(MK) LIST="$(LIST)" SIZE=-slide bargraphs.slides ctx.slides mem.slides
+-
+-paper:
+- $(MK) LIST="$(LIST)" tbl.paper ctx.paper mem.paper
+-
+-# XXX - this has to be made incremental, doing everything over from
+-# scratch makes you want a Ghz machine.
+-html: dirs
+- -make clean
+- #$(SCRIPTS)bghtml $(BG)
+- $(SCRIPTS)html-list $(LIST)
+- $(MK) LIST="$(LIST)" summary > HTML/summary.out 2> HTML/summary.errs
+- #make LIST="$(LIST)" percent > HTML/percent.out 2> HTML/percent.errs
+- $(MK) LIST="$(LIST)" SIZE= PRINT="$(PS)" \
+- GMEM="$(GMEM) -cut -gthk1" GCTX="$(GCTX) -cut -gthk1" print
+- $(MK) LIST="$(LIST)" SIZE= NOOP=-noop PRINT="$(PS)" \
+- GMEM="$(GMEM) -cut -gthk1" GCTX="$(GCTX) -cut -gthk1" print
+- gs -sOutputFile=HTML/ctx%02d.$(IMAGE) -sDEVICE=$(IMAGE) -q -dNOPAUSE PS/PS < /dev/null
+- gs -sOutputFile=HTML/mem%02d.$(IMAGE) -sDEVICE=$(IMAGE) -q -dNOPAUSE PS/PS.1 < /dev/null
+- gs -sOutputFile=HTML/disk%02d.$(IMAGE) -sDEVICE=$(IMAGE) -q -dNOPAUSE PS/PS.2 < /dev/null
+- gs -sOutputFile=HTML/bwfile%02d.$(IMAGE) -sDEVICE=$(IMAGE) -q -dNOPAUSE PS/PS.3 < /dev/null
+- gs -sOutputFile=HTML/bwmem%02d.$(IMAGE) -sDEVICE=$(IMAGE) -q -dNOPAUSE PS/PS.4 < /dev/null
+- gs -sOutputFile=HTML/ctx-unscaled%02d.$(IMAGE) -sDEVICE=$(IMAGE) -q -dNOPAUSE PS/PS.5 < /dev/null
+- gs -sOutputFile=HTML/mem-unscaled%02d.$(IMAGE) -sDEVICE=$(IMAGE) -q -dNOPAUSE PS/PS.6 < /dev/null
+- gs -sOutputFile=HTML/bwfile-unscaled%02d.$(IMAGE) -sDEVICE=$(IMAGE) -q -dNOPAUSE PS/PS.7 < /dev/null
+- gs -sOutputFile=HTML/bwmem-unscaled%02d.$(IMAGE) -sDEVICE=$(IMAGE) -q -dNOPAUSE PS/PS.8 < /dev/null
+- $(SCRIPTS)/gifs
+- rm HTML/*.pbm HTML/___tmp*
+-
+-htmltest: dirs
+- -make clean
+- #$(SCRIPTS)bghtml $(BG)
+- $(SCRIPTS)html-list $(LIST)
+- $(MK) LIST="$(LIST)" summary > HTML/summary.out 2> HTML/summary.errs
+- #make LIST="$(LIST)" percent > HTML/percent.out 2> HTML/percent.errs
+- $(MK) LIST="$(LIST)" SIZE= PRINT="$(PS)" \
+- GMEM="$(GMEM) -cut -gthk1" GCTX="$(GCTX) -cut -gthk1" print
+-
+-bghtml:
+- $(SCRIPTS)bghtml $(BG)
+-
+-html-list:
+- $(SCRIPTS)html-list $(LIST)
+-
+-ctx: dirs
+- $(SCRIPTS)getctx $(LIST) > tmp/FILES
+- @if [ -s tmp/FILES ]; \
+- then $(SCRIPTS)getmax $(NOOP) -graph `cat tmp/FILES`; \
+- for i in `cat tmp/FILES`; \
+- do $(SCRIPTS)graph $(SIZE) $(GCTX) $$i; \
+- echo .bp; \
+- done | sed '$$d' | $(PRINT); \
+- else echo No context switch data in $(LIST); \
+- fi
+-
+-disk: dirs
+- if [ X$(NOOP) = X ]; then \
+- $(SCRIPTS)getdisk $(LIST) > tmp/FILES; \
+- if [ -s tmp/FILES ]; \
+- then for i in `cat tmp/FILES`; \
+- do $(SCRIPTS)graph $(SIZE) $(GDISK) $$i; \
+- echo .bp; \
+- done | sed '$$d' | $(PRINT); \
+- else echo No disk data in $(LIST); \
+- fi; \
+- fi
+-
+-mem: dirs
+- $(SCRIPTS)getmem $(LIST) > tmp/FILES
+- if [ -s tmp/FILES ]; \
+- then $(SCRIPTS)getmax $(NOOP) -graph `cat tmp/FILES`; \
+- for i in `cat tmp/FILES`; \
+- do $(SCRIPTS)graph $(SIZE) $(GMEM) -nomarks $$i; \
+- echo .bp; \
+- done | sed '$$d' | $(PRINT); \
+- else echo No memory latency data in $(LIST); \
+- fi
+-
+-bwfile: dirs
+- $(SCRIPTS)getbw $(LIST) > tmp/FILES
+- if [ -s tmp/FILES ]; \
+- then $(SCRIPTS)getmax $(NOOP) -graph `cat tmp/FILES`; \
+- for i in `cat tmp/FILES`; \
+- do $(SCRIPTS)graph $(SIZE) $(GMEM) -logy $$i; \
+- echo .bp; \
+- done | sed '$$d' | $(PRINT); \
+- else echo No file bandwidth data in $(LIST); \
+- fi
+-
+-bwmem: dirs
+- $(SCRIPTS)getbw -all $(LIST) > tmp/FILES
+- if [ -s tmp/FILES ]; \
+- then $(SCRIPTS)getmax $(NOOP) -graph `cat tmp/FILES`; \
+- for i in `cat tmp/FILES`; \
+- do $(SCRIPTS)graph -halfgrid -gthk_5 -thk2 -medium \
+- -nomarks -nolabels -grapheach $(GMEM) \
+- -logy %P="'`basename $$i`'" $$i; \
+- echo .bp; \
+- done | sed '$$d' | $(PRINT); \
+- else echo No memory bandwidth data in $(LIST); \
+- fi
+-
+-tbl.paper:
+- $(SCRIPTS)getbg -paper $(LIST)
+-
+-
+-bargraphs.1st: dirs
+- $(SCRIPTS)getbg -nosort $(LIST)
+- #$(SCRIPTS)getmax -v $(PROC)
+- #$(SCRIPTS)getmax -v $(LATENCY)
+- #$(SCRIPTS)getmax -v -half $(BANDWIDTH)
+-
+-bargraphs: bargraphs.1st
+- for i in $(BG); \
+- do $(SCRIPTS)bargraph $(SIZE) -nobox -sideways $$i; \
+- echo .bp; \
+- done | sed '$$d' | $(PRINT)
+-
+-bargraphs.slides: bargraphs.1st
+- for i in $(BG); \
+- do $(SCRIPTS)bargraph $(SIZE) -nobox -sideways $$i > $${i}.pic; \
+- done
+-
+-bargraphs.8up: bargraphs.1st
+- for i in $(BG); \
+- do $(SCRIPTS)bargraph -sideways $(SIZE) -nobox $$i; \
+- echo .bp; \
+- done | sed '$$d' | $(PS8UP)
+-
+-latency.8up: bargraphs.1st
+- for i in $(LATENCY); \
+- do $(SCRIPTS)bargraph -sideways $(SIZE) -nobox $$i; \
+- echo .bp; \
+- done | sed '$$d' | $(PS8UP)
+-
+-bw.8up: bargraphs.1st
+- for i in $(BANDWIDTH); \
+- do $(SCRIPTS)bargraph -sideways $(SIZE) -nobox $$i; \
+- echo .bp; \
+- done | sed '$$d' | $(PS8UP)
+-
+-get: # nothing to do
+-
+-clean:
+- /bin/rm -f PS/* GIF/* HTML/* tmp/* summary.roff
+- -bk clean
+-
+-distclean:
+- /bin/rm -fr PS GIF HTML tmp summary.roff
+-
+-dirs:
+- @if [ ! -d tmp ]; then mkdir tmp; fi
+- @if [ ! -d PS ]; then mkdir PS; fi
+- @if [ ! -d HTML ]; then mkdir HTML; fi
+Index: lmbench-3.0-a9/src/Makefile
+===================================================================
+--- lmbench-3.0-a9.orig/src/Makefile
++++ /dev/null
+@@ -1,489 +0,0 @@
+-# $Id$
+-
+-# Make targets:
+-#
+-# lmbench [default] builds the benchmark suite for the current os/arch
+-# results builds, configures run parameters, and runs the benchmark
+-# rerun reruns the benchmark using the same parameters as last time
+-# scaling reruns the benchmark using same parameters as last time,
+-# except it asks what scaling value to use
+-# hardware reruns the hardware benchmarks using the same parameters
+-# os reruns the OS benchmarks using the same parameters
+-# clean cleans out sources and run configuration
+-# clobber clean and removes the bin directories
+-# shar obsolete, use cd .. && make shar
+-# depend builds make dependencies (needs gcc)
+-# debug builds all the benchmarks with '-g' debugging flag
+-# assembler builds the .s files for each benchmark
+-#
+-# This is largely self configuring. Most stuff is pretty portable.
+-#
+-# If you don't have gcc, try make CC=cc and see if that works.
+-#
+-# If you want to do cross-compilation try make OS=armv5tel-linux-gnu
+-# or whatever your OS string should be in the target environment.
+-# Since many embedded development environments also have a special
+-# cross-compiler, you might want to also select a particular compiler,
+-# so your build command would look something like:
+-# make OS=armv5tel-linux-gnu CC=gcc-arm
+-#
+-# Overriding the OS and CC make parameters needs to be done as an
+-# argument to make, not as an environment variable. See above comments.
+-#
+-
+-# I finally know why Larry Wall's Makefile says "Grrrr".
+-SHELL=/bin/sh
+-
+-CC=`../scripts/compiler`
+-MAKE=`../scripts/make`
+-AR=ar
+-ARCREATE=cr
+-
+-# base of installation location
+-BASE=/usr/local
+-O= ../bin/unknown
+-D= ../doc
+-TRUE=/bin/true
+-OS=`../scripts/os`
+-TARGET=`../scripts/target`
+-BINDIR=../bin/$(OS)
+-CONFIG=../bin/$(OS)/`../scripts/config`
+-UTILS=../scripts/target ../scripts/os ../scripts/gnu-os ../scripts/compiler \
+- ../scripts/info ../scripts/info-template ../scripts/version \
+- ../scripts/config ../scripts/config-run ../scripts/results \
+- ../scripts/lmbench ../scripts/make ../scripts/build
+-INSTALL=cp
+-RESULTS=Results/$(OS)
+-SAMPLES=lmbench/Results/aix/rs6000 lmbench/Results/hpux/snake \
+- lmbench/Results/irix/indigo2 lmbench/Results/linux/pentium \
+- lmbench/Results/osf1/alpha lmbench/Results/solaris/ss20*
+-
+-COMPILE=$(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS)
+-
+-INCS = bench.h lib_mem.h lib_tcp.h lib_udp.h stats.h timing.h
+-
+-SRCS = bw_file_rd.c bw_mem.c bw_mmap_rd.c bw_pipe.c bw_tcp.c bw_udp.c \
+- bw_unix.c \
+- cache.c clock.c disk.c enough.c flushdisk.c getopt.c hello.c \
+- lat_connect.c lat_ctx.c lat_fcntl.c lat_fifo.c lat_fs.c \
+- lat_mem_rd.c lat_mmap.c lat_ops.c lat_pagefault.c lat_pipe.c \
+- lat_proc.c lat_rpc.c lat_select.c lat_sig.c lat_syscall.c \
+- lat_tcp.c lat_udp.c lat_unix.c lat_unix_connect.c lat_sem.c \
+- lat_usleep.c lat_pmake.c \
+- lib_debug.c lib_mem.c lib_stats.c lib_tcp.c lib_timing.c \
+- lib_udp.c lib_unix.c lib_sched.c \
+- line.c lmdd.c lmhttp.c par_mem.c par_ops.c loop_o.c memsize.c \
+- mhz.c msleep.c rhttp.c seek.c timing_o.c tlb.c stream.c \
+- bench.h lib_debug.h lib_tcp.h lib_udp.h lib_unix.h names.h \
+- stats.h timing.h version.h
+-
+-ASMS = $O/bw_file_rd.s $O/bw_mem.s $O/bw_mmap_rd.s $O/bw_pipe.s \
+- $O/bw_tcp.s $O/bw_udp.s $O/bw_unix.s $O/clock.s \
+- $O/disk.s $O/enough.s $O/flushdisk.s $O/getopt.s $O/hello.s \
+- $O/lat_connect.s $O/lat_ctx.s lat_fcntl.s $O/lat_fifo.s \
+- $O/lat_fs.s $O/lat_mem_rd.s $O/lat_mmap.s $O/lat_ops.s \
+- $O/lat_pagefault.s $O/lat_pipe.s $O/lat_proc.s $O/lat_rpc.s \
+- $O/lat_select.s $O/lat_sig.s $O/lat_syscall.s $O/lat_tcp.s \
+- $O/lat_udp.s $O/lat_unix.s $O/lat_unix_connect.s $O/lat_sem.s \
+- $O/lib_debug.s $O/lib_mem.s \
+- $O/lib_stats.s $O/lib_tcp.s $O/lib_timing.s $O/lib_udp.s \
+- $O/lib_unix.s $O/lib_sched.s \
+- $O/line.s $O/lmdd.s $O/lmhttp.s $O/par_mem.s \
+- $O/par_ops.s $O/loop_o.s $O/memsize.s $O/mhz.s $O/msleep.s \
+- $O/rhttp.s $O/timing_o.s $O/tlb.s $O/stream.s \
+- $O/cache.s $O/lat_dram_page.s $O/lat_pmake.s $O/lat_rand.s \
+- $O/lat_usleep.s $O/lat_cmd.s
+-EXES = $O/bw_file_rd $O/bw_mem $O/bw_mmap_rd $O/bw_pipe $O/bw_tcp \
+- $O/bw_unix $O/hello \
+- $O/lat_select $O/lat_pipe $O/lat_rpc $O/lat_syscall $O/lat_tcp \
+- $O/lat_udp $O/lat_mmap $O/mhz $O/lat_proc $O/lat_pagefault \
+- $O/lat_connect $O/lat_fs $O/lat_sig $O/lat_mem_rd $O/lat_ctx \
+- $O/lat_sem \
+- $O/memsize $O/lat_unix $O/lmdd $O/timing_o $O/enough \
+- $O/msleep $O/loop_o $O/lat_fifo $O/lmhttp $O/lat_http \
+- $O/lat_fcntl $O/disk $O/lat_unix_connect $O/flushdisk \
+- $O/lat_ops $O/line $O/tlb $O/par_mem $O/par_ops \
+- $O/stream
+-OPT_EXES=$O/cache $O/lat_dram_page $O/lat_pmake $O/lat_rand \
+- $O/lat_usleep $O/lat_cmd
+-LIBOBJS= $O/lib_tcp.o $O/lib_udp.o $O/lib_unix.o $O/lib_timing.o \
+- $O/lib_mem.o $O/lib_stats.o $O/lib_debug.o $O/getopt.o \
+- $O/lib_sched.o
+-
+-lmbench: $(UTILS)
+- @env CFLAGS=-O MAKE="$(MAKE)" MAKEFLAGS="$(MAKEFLAGS)" CC="$(CC)" OS="$(OS)" ../scripts/build all
+- -@env CFLAGS=-O MAKE="$(MAKE)" MAKEFLAGS="k$(MAKEFLAGS)" CC="$(CC)" OS="$(OS)" ../scripts/build opt
+-
+-results: lmbench
+- @env OS="${OS}" ../scripts/config-run
+- @env OS="${OS}" ../scripts/results
+-
+-rerun: lmbench
+- @if [ ! -f $(CONFIG) ]; then env OS="${OS}" ../scripts/config-run; fi
+- @env OS="${OS}" ../scripts/results
+-
+-scaling: lmbench
+- @if [ ! -f $(CONFIG) ]; then env OS="${OS}" ../scripts/config-run; \
+- else ../scripts/config-scaling $(CONFIG); fi
+- @env OS="${OS}" ../scripts/results
+-
+-hardware: lmbench
+- @if [ ! -f $(CONFIG) ]; then env OS="${OS}" ../scripts/config-run; fi
+- @env OS="${OS}" BENCHMARK_HARDWARE=YES BENCHMARK_OS=NO ../scripts/results
+-
+-os: lmbench
+- @if [ ! -f $(CONFIG) ]; then env OS="${OS}" ../scripts/config-run; fi
+- @env OS="${OS}" BENCHMARK_HARDWARE=NO BENCHMARK_OS=YES ../scripts/results
+-
+-install: lmbench
+- @env CFLAGS=-O MAKE="$(MAKE)" MAKEFLAGS="$(MAKEFLAGS)" CC="${CC}" OS="${OS}" ../scripts/build install-target
+-
+-install-target:
+- if [ ! -d $(BASE) ]; then mkdir $(BASE); fi
+- if [ ! -d $(BASE)/bin ]; then mkdir $(BASE)/bin; fi
+- if [ ! -d $(BASE)/include ]; then mkdir $(BASE)/include; fi
+- if [ ! -d $(BASE)/lib ]; then mkdir $(BASE)/lib; fi
+- cp $(EXES) $(BASE)/bin
+- cp $(INCS) $(BASE)/include
+- cp $O/lmbench.a $(BASE)/lib/libmbench.a
+- cd ../doc; env MAKEFLAGS="$(MAKEFLAGS)" make CC="${CC}" OS="${OS}" BASE="$(BASE)" install
+-
+-
+-# No special handling for all these
+-all: $(EXES) $O/lmbench
+-opt: $(OPT_EXES)
+-asm: $(ASMS)
+-$(ASMS):
+- $(CC) -S $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o $@ `basename $@ .s`.c
+-
+-Wall:
+- @env CFLAGS="-g -O -Wall" MAKE="$(MAKE)" MAKEFLAGS="$(MAKEFLAGS)" CC="${CC}" OS="${OS}" ../scripts/build all opt
+-
+-debug:
+- @env CFLAGS="-g -O -DDEBUG" MAKE="$(MAKE)" MAKEFLAGS="$(MAKEFLAGS)" CC="${CC}" OS="${OS}" ../scripts/build all opt
+-
+-assembler:
+- @env CFLAGS=-O MAKE="$(MAKE)" MAKEFLAGS="$(MAKEFLAGS)" CC="${CC}" OS="${OS}" ../scripts/build asm
+-
+-
+-tag:
+- ROOT=`cat ../CVS/Root`; \
+- MODULE=`cat ../CVS/Repository`; \
+- VERSION=`../scripts/version`; \
+- TAG=`echo lmbench_$${VERSION} | sed -e 's/-/_/g' -e 's/\\./_/g'`; \
+- cd .. \
+- && cvs -d$${ROOT} tag -c "$${TAG}"
+-
+-dist:
+- SRCDIR=`pwd`; \
+- ROOT=`cat ../CVS/Root`; \
+- MODULE=`cat ../CVS/Repository`; \
+- VERSION=`../scripts/version`; \
+- cd /tmp \
+- && cvs -d$${ROOT} export -Dtomorrow \
+- -d $${MODULE}-$${VERSION} $${MODULE} \
+- && chmod +x $${MODULE}-$${VERSION}/scripts/[a-z]* \
+- && mv $${MODULE}-$${VERSION} lmbench-$${VERSION} \
+- && tar czf $${SRCDIR}/../../lmbench-$${VERSION}.tgz \
+- lmbench-$${VERSION} \
+- && rm -rf lmbench-$${VERSION};
+-
+-clean:
+- /bin/rm -f ../bin/*/CONFIG ../bin/*/*.[oas]
+- /bin/rm -f *.[oas]
+-
+-clobber:
+- /bin/rm -rf ../bin* SHAR
+-
+-shar:
+- cd ../.. && shar lmbench/Results/Makefile $(SAMPLES) lmbench/scripts/* lmbench/src/Makefile lmbench/src/*.[ch] > lmbench/SHAR
+-
+-depend: ../scripts/depend
+- ../scripts/depend
+-
+-testmake: $(SRCS) $(UTILS) # used by scripts/make to test gmake
+- @true
+-
+-.PHONY: lmbench results rerun hardware os install all Wall debug \
+- install install-target dist get edit get-e clean clobber \
+- share depend testmake
+-
+-$O/lmbench : ../scripts/lmbench version.h
+- rm -f $O/lmbench
+- VERSION=`../scripts/version`; \
+- sed -e "s/<version>/$${VERSION}/g" < ../scripts/lmbench > $O/lmbench
+- chmod +x $O/lmbench
+-
+-$O/lmbench.a: $(LIBOBJS)
+- /bin/rm -f $O/lmbench.a
+- $(AR) $(ARCREATE) $O/lmbench.a $(LIBOBJS)
+- -ranlib $O/lmbench.a
+-
+-$O/lib_timing.o : lib_timing.c $(INCS)
+- $(COMPILE) -c lib_timing.c -o $O/lib_timing.o
+-$O/lib_mem.o : lib_mem.c $(INCS)
+- $(COMPILE) -c lib_mem.c -o $O/lib_mem.o
+-$O/lib_tcp.o : lib_tcp.c $(INCS)
+- $(COMPILE) -c lib_tcp.c -o $O/lib_tcp.o
+-$O/lib_udp.o : lib_udp.c $(INCS)
+- $(COMPILE) -c lib_udp.c -o $O/lib_udp.o
+-$O/lib_unix.o : lib_unix.c $(INCS)
+- $(COMPILE) -c lib_unix.c -o $O/lib_unix.o
+-$O/lib_debug.o : lib_debug.c $(INCS)
+- $(COMPILE) -c lib_debug.c -o $O/lib_debug.o
+-$O/lib_stats.o : lib_stats.c $(INCS)
+- $(COMPILE) -c lib_stats.c -o $O/lib_stats.o
+-$O/lib_sched.o : lib_sched.c $(INCS)
+- $(COMPILE) -c lib_sched.c -o $O/lib_sched.o
+-$O/getopt.o : getopt.c $(INCS)
+- $(COMPILE) -c getopt.c -o $O/getopt.o
+-
+-$(UTILS) :
+- -cd ../scripts; make get
+-
+-# Do not remove the next line, $(MAKE) depend needs it
+-# MAKEDEPEND follows
+-$O/rhttp.s:rhttp.c timing.h stats.h bench.h
+-$O/rhttp: rhttp.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/rhttp rhttp.c $O/lmbench.a $(LDLIBS)
+-
+-$O/http.s:http.c timing.h stats.h bench.h
+-$O/http: http.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/http http.c $O/lmbench.a $(LDLIBS)
+-
+-$O/flushdisk.s:flushdisk.c
+-$O/flushdisk: flushdisk.c
+- $(COMPILE) -DMAIN -o $O/flushdisk flushdisk.c
+-
+-$O/mhz.s: mhz.c timing.h stats.h bench.h
+-$O/mhz: mhz.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/mhz mhz.c $O/lmbench.a $(LDLIBS) -lm
+-
+-$O/lat_ctx.s: lat_ctx.c timing.h stats.h bench.h
+-$O/lat_ctx: lat_ctx.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/lat_ctx lat_ctx.c $O/lmbench.a $(LDLIBS)
+-
+-$O/lmhttp.s:lmhttp.c timing.h stats.h bench.h
+-$O/lmhttp: lmhttp.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/lmhttp lmhttp.c $O/lmbench.a $(LDLIBS)
+-
+-$O/lat_http.s:lat_http.c timing.h stats.h bench.h
+-$O/lat_http: lat_http.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/lat_http lat_http.c $O/lmbench.a $(LDLIBS)
+-
+-$O/bw_file_rd.s:bw_file_rd.c timing.h stats.h bench.h
+-$O/bw_file_rd: bw_file_rd.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/bw_file_rd bw_file_rd.c $O/lmbench.a $(LDLIBS)
+-
+-$O/bw_mem.s:bw_mem.c timing.h stats.h bench.h
+-$O/bw_mem: bw_mem.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/bw_mem bw_mem.c $O/lmbench.a $(LDLIBS)
+-
+-$O/bw_mmap_rd.s:bw_mmap_rd.c timing.h stats.h bench.h
+-$O/bw_mmap_rd: bw_mmap_rd.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/bw_mmap_rd bw_mmap_rd.c $O/lmbench.a $(LDLIBS)
+-
+-$O/bw_pipe.s:bw_pipe.c timing.h stats.h bench.h
+-$O/bw_pipe: bw_pipe.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/bw_pipe bw_pipe.c $O/lmbench.a $(LDLIBS)
+-
+-$O/bw_tcp.s:bw_tcp.c bench.h timing.h stats.h lib_tcp.h
+-$O/bw_tcp: bw_tcp.c bench.h timing.h stats.h lib_tcp.h $O/lmbench.a
+- $(COMPILE) -o $O/bw_tcp bw_tcp.c $O/lmbench.a $(LDLIBS)
+-
+-$O/bw_udp.s:bw_udp.c bench.h timing.h stats.h lib_udp.h
+-$O/bw_udp: bw_udp.c bench.h timing.h stats.h lib_udp.h $O/lmbench.a
+- $(COMPILE) -o $O/bw_udp bw_udp.c $O/lmbench.a $(LDLIBS)
+-
+-$O/bw_unix.s:bw_unix.c timing.h stats.h bench.h
+-$O/bw_unix: bw_unix.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/bw_unix bw_unix.c $O/lmbench.a $(LDLIBS)
+-
+-$O/disk.s:disk.c flushdisk.c bench.h timing.h stats.h lib_tcp.h
+-$O/disk: disk.c flushdisk.c bench.h timing.h stats.h lib_tcp.h $O/lmbench.a
+- $(COMPILE) -o $O/disk disk.c $O/lmbench.a $(LDLIBS)
+-
+-$O/clock.s:clock.c timing.h stats.h bench.h
+-$O/clock: clock.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/clock clock.c $O/lmbench.a $(LDLIBS)
+-
+-$O/hello.s:hello.c
+-$O/hello: hello.c $O/lmbench.a
+- $(COMPILE) -o $O/hello hello.c $O/lmbench.a $(LDLIBS)
+-
+-$O/lat_alarm.s:lat_alarm.c timing.h stats.h bench.h
+-$O/lat_alarm: lat_alarm.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/lat_alarm lat_alarm.c $O/lmbench.a $(LDLIBS)
+-
+-$O/lat_connect.s:lat_connect.c lib_tcp.c bench.h lib_tcp.h timing.h stats.h
+-$O/lat_connect: lat_connect.c lib_tcp.c bench.h lib_tcp.h timing.h stats.h $O/lmbench.a
+- $(COMPILE) -o $O/lat_connect lat_connect.c $O/lmbench.a $(LDLIBS)
+-
+-$O/lat_unix_connect.s:lat_unix_connect.c lib_tcp.c bench.h lib_tcp.h timing.h stats.h
+-$O/lat_unix_connect: lat_unix_connect.c lib_tcp.c bench.h lib_tcp.h timing.h stats.h $O/lmbench.a
+- $(COMPILE) -o $O/lat_unix_connect lat_unix_connect.c $O/lmbench.a $(LDLIBS)
+-
+-$O/lat_fs.s:lat_fs.c timing.h stats.h bench.h
+-$O/lat_fs: lat_fs.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/lat_fs lat_fs.c $O/lmbench.a $(LDLIBS)
+-
+-$O/lat_fcntl.s:lat_fcntl.c timing.h stats.h bench.h
+-$O/lat_fcntl: lat_fcntl.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/lat_fcntl lat_fcntl.c $O/lmbench.a $(LDLIBS)
+-
+-$O/lat_mem_rd.s:lat_mem_rd.c timing.h stats.h bench.h
+-$O/lat_mem_rd: lat_mem_rd.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/lat_mem_rd lat_mem_rd.c $O/lmbench.a $(LDLIBS)
+-
+-$O/lat_mem_rd2.s:lat_mem_rd2.c timing.h stats.h bench.h
+-$O/lat_mem_rd2: lat_mem_rd2.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/lat_mem_rd2 lat_mem_rd2.c $O/lmbench.a $(LDLIBS)
+-
+-$O/lat_mem_wr.s:lat_mem_wr.c timing.h stats.h bench.h
+-$O/lat_mem_wr: lat_mem_wr.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/lat_mem_wr lat_mem_wr.c $O/lmbench.a $(LDLIBS)
+-
+-$O/lat_mem_wr2.s:lat_mem_wr2.c timing.h stats.h bench.h
+-$O/lat_mem_wr2: lat_mem_wr2.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/lat_mem_wr2 lat_mem_wr2.c $O/lmbench.a $(LDLIBS)
+-
+-$O/lat_mmap.s:lat_mmap.c timing.h stats.h bench.h
+-$O/lat_mmap: lat_mmap.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/lat_mmap lat_mmap.c $O/lmbench.a $(LDLIBS)
+-
+-$O/lat_mmaprd.s:lat_mmaprd.c timing.h stats.h bench.h
+-$O/lat_mmaprd: lat_mmaprd.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/lat_mmaprd lat_mmaprd.c $O/lmbench.a $(LDLIBS)
+-
+-$O/lat_ops.s:lat_ops.c timing.h stats.h bench.h
+-$O/lat_ops: lat_ops.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/lat_ops lat_ops.c $O/lmbench.a $(LDLIBS)
+-
+-$O/lat_pagefault.s:lat_pagefault.c timing.h stats.h bench.h
+-$O/lat_pagefault: lat_pagefault.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/lat_pagefault lat_pagefault.c $O/lmbench.a $(LDLIBS)
+-
+-$O/lat_pipe.s:lat_pipe.c timing.h stats.h bench.h
+-$O/lat_pipe: lat_pipe.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/lat_pipe lat_pipe.c $O/lmbench.a $(LDLIBS)
+-
+-$O/lat_fifo.s:lat_fifo.c timing.h stats.h bench.h
+-$O/lat_fifo: lat_fifo.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/lat_fifo lat_fifo.c $O/lmbench.a $(LDLIBS)
+-
+-$O/lat_proc.s:lat_proc.c timing.h stats.h bench.h
+-$O/lat_proc: lat_proc.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/lat_proc lat_proc.c $O/lmbench.a $(LDLIBS)
+-
+-$O/lat_rpc.s:lat_rpc.c timing.h stats.h bench.h
+-$O/lat_rpc: lat_rpc.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/lat_rpc lat_rpc.c $O/lmbench.a $(LDLIBS)
+-
+-$O/lat_sig.s:lat_sig.c timing.h stats.h bench.h
+-$O/lat_sig: lat_sig.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/lat_sig lat_sig.c $O/lmbench.a $(LDLIBS)
+-
+-$O/lat_syscall.s:lat_syscall.c timing.h stats.h bench.h
+-$O/lat_syscall: lat_syscall.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/lat_syscall lat_syscall.c $O/lmbench.a $(LDLIBS)
+-
+-$O/lat_select.s: lat_select.c timing.h stats.h bench.h
+-$O/lat_select: lat_select.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/lat_select lat_select.c $O/lmbench.a $(LDLIBS)
+-
+-$O/lat_tcp.s:lat_tcp.c timing.h stats.h bench.h lib_tcp.h
+-$O/lat_tcp: lat_tcp.c timing.h stats.h bench.h lib_tcp.h $O/lmbench.a
+- $(COMPILE) -o $O/lat_tcp lat_tcp.c $O/lmbench.a $(LDLIBS)
+-
+-$O/lat_udp.s:lat_udp.c timing.h stats.h bench.h lib_udp.h
+-$O/lat_udp: lat_udp.c timing.h stats.h bench.h lib_udp.h $O/lmbench.a
+- $(COMPILE) -o $O/lat_udp lat_udp.c $O/lmbench.a $(LDLIBS)
+-
+-$O/lat_unix.s:lat_unix.c timing.h stats.h bench.h
+-$O/lat_unix: lat_unix.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/lat_unix lat_unix.c $O/lmbench.a $(LDLIBS)
+-
+-$O/lib_tcp.s:lib_tcp.c bench.h lib_tcp.h
+-$O/lib_tcp: lib_tcp.c bench.h lib_tcp.h $O/lmbench.a
+- $(COMPILE) -o $O/lib_tcp lib_tcp.c $O/lmbench.a $(LDLIBS)
+-
+-$O/lib_udp.s:lib_udp.c bench.h lib_udp.h
+-$O/lib_udp: lib_udp.c bench.h lib_udp.h $O/lmbench.a
+- $(COMPILE) -o $O/lib_udp lib_udp.c $O/lmbench.a $(LDLIBS)
+-
+-$O/lmdd.s:lmdd.c timing.h stats.h bench.h
+-$O/lmdd: lmdd.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/lmdd lmdd.c $O/lmbench.a $(LDLIBS)
+-
+-$O/enough.s:enough.c timing.h stats.h bench.h
+-$O/enough: enough.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/enough enough.c $O/lmbench.a $(LDLIBS)
+-
+-$O/loop_o.s:loop_o.c timing.h stats.h bench.h
+-$O/loop_o: loop_o.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/loop_o loop_o.c $O/lmbench.a $(LDLIBS)
+-
+-$O/timing_o.s:timing_o.c timing.h stats.h bench.h
+-$O/timing_o: timing_o.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/timing_o timing_o.c $O/lmbench.a $(LDLIBS)
+-
+-$O/memsize.s:memsize.c timing.h stats.h bench.h
+-$O/memsize: memsize.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/memsize memsize.c $O/lmbench.a $(LDLIBS)
+-
+-$O/msleep.s:msleep.c timing.h stats.h bench.h
+-$O/msleep: msleep.c timing.h stats.h bench.h
+- $(COMPILE) -o $O/msleep msleep.c
+-
+-$O/line.s: line.c timing.h stats.h bench.h
+-$O/line: line.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/line line.c $O/lmbench.a $(LDLIBS)
+-
+-$O/tlb.s:tlb.c timing.h stats.h bench.h
+-$O/tlb: tlb.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/tlb tlb.c $O/lmbench.a $(LDLIBS)
+-
+-$O/cache.s:cache.c timing.h stats.h bench.h
+-$O/cache: cache.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/cache cache.c $O/lmbench.a $(LDLIBS)
+-
+-$O/par_mem.s:par_mem.c timing.h stats.h bench.h
+-$O/par_mem: par_mem.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/par_mem par_mem.c $O/lmbench.a $(LDLIBS)
+-
+-$O/par_ops.s:par_ops.c timing.h stats.h bench.h
+-$O/par_ops: par_ops.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/par_ops par_ops.c $O/lmbench.a $(LDLIBS)
+-
+-$O/stream.s:stream.c timing.h stats.h bench.h
+-$O/stream: stream.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/stream stream.c $O/lmbench.a $(LDLIBS)
+-
+-$O/lat_sem.s:lat_sem.c timing.h stats.h bench.h
+-$O/lat_sem: lat_sem.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/lat_sem lat_sem.c $O/lmbench.a $(LDLIBS)
+-
+-$O/par_list.s:par_list.c timing.h stats.h bench.h
+-$O/par_list: par_list.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/par_list par_list.c $O/lmbench.a $(LDLIBS)
+-
+-$O/lat_dram_page.s:lat_dram_page.c timing.h stats.h bench.h
+-$O/lat_dram_page: lat_dram_page.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/lat_dram_page lat_dram_page.c $O/lmbench.a $(LDLIBS)
+-
+-$O/lat_usleep.s:lat_usleep.c timing.h stats.h bench.h
+-$O/lat_usleep: lat_usleep.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/lat_usleep lat_usleep.c $O/lmbench.a $(LDLIBS)
+-
+-$O/lat_pmake.s:lat_pmake.c timing.h stats.h bench.h
+-$O/lat_pmake: lat_pmake.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/lat_pmake lat_pmake.c $O/lmbench.a $(LDLIBS)
+-
+-$O/lat_rand.s:lat_rand.c timing.h stats.h bench.h
+-$O/lat_rand: lat_rand.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/lat_rand lat_rand.c $O/lmbench.a $(LDLIBS)
+-
+-$O/lat_cmd.s:lat_cmd.c timing.h stats.h bench.h
+-$O/lat_cmd: lat_cmd.c timing.h stats.h bench.h $O/lmbench.a
+- $(COMPILE) -o $O/lat_cmd lat_cmd.c $O/lmbench.a $(LDLIBS)
+-
diff --git a/patches/lmbench-3.0-a9/generic/lmbench-3.0-a9-rpcheaders.diff b/patches/lmbench-3.0-a9/generic/lmbench-3.0-a9-rpcheaders.diff
new file mode 100644
index 000000000..677a0ebfa
--- /dev/null
+++ b/patches/lmbench-3.0-a9/generic/lmbench-3.0-a9-rpcheaders.diff
@@ -0,0 +1,29 @@
+--- lmbench-3.0-a9-orig/src/lib_tcp.c 2006-06-27 18:27:19.000000000 +0200
++++ lmbench-3.0-a9/src/lib_tcp.c 2009-04-09 17:56:50.000000000 +0200
+@@ -7,6 +7,7 @@
+ */
+ #define _LIB /* bench.h needs this */
+ #include "bench.h"
++#include <rpc/pmap_clnt.h>
+
+ /*
+ * Get a TCP socket, bind it, figure out the port,
+@@ -148,7 +149,7 @@
+ fprintf(stderr, "Client port %d\n", sockport(sock));
+ #endif
+ sock_optimize(sock, rdwr);
+- if (!h || host != save_host || prog != save_prog) {
++ if (!h || host != save_host || prog != (int)save_prog) {
+ save_host = host; /* XXX - counting on them not
+ * changing it - benchmark only.
+ */
+--- lmbench-3.0-a9-orig/src/lib_udp.c 2006-06-27 18:27:20.000000000 +0200
++++ lmbench-3.0-a9/src/lib_udp.c 2009-04-09 17:57:19.000000000 +0200
+@@ -7,6 +7,7 @@
+ */
+ #define _LIB /* bench.h needs this */
+ #include "bench.h"
++#include <rpc/pmap_clnt.h>
+
+ /*
+ * Get a UDP socket, bind it, figure out the port,
diff --git a/patches/lmbench-3.0-a9/generic/series b/patches/lmbench-3.0-a9/generic/series
new file mode 100644
index 000000000..d899e7240
--- /dev/null
+++ b/patches/lmbench-3.0-a9/generic/series
@@ -0,0 +1,4 @@
+lmbench-3.0-a9-remove-old-buildsystem.diff
+lmbench-3.0-a9-autotoolize.diff
+lmbench-3.0-a9-rpcheaders.diff
+lmbench-3.0-a9-autogen.diff.bz2
diff --git a/rules/lmbench3.in b/rules/lmbench.in
index 23088b768..2a23906e7 100644
--- a/rules/lmbench3.in
+++ b/rules/lmbench.in
@@ -2,7 +2,6 @@
config LMBENCH
tristate
- depends on BROKEN
select LIBC_M
prompt "lmbench"
help
diff --git a/rules/lmbench3.make b/rules/lmbench.make
index df3cc9c2e..606bc2920 100644
--- a/rules/lmbench3.make
+++ b/rules/lmbench.make
@@ -1,7 +1,7 @@
# -*-makefile-*-
# $Id: template-make 9053 2008-11-03 10:58:48Z wsa $
#
-# Copyright (C) 2009 by Juergen Beisert
+# Copyright (C) 2009 by Robert Schwebel
#
# See CREDITS for details about who has contributed to this project.
#
@@ -33,18 +33,37 @@ $(LMBENCH_SOURCE):
@$(call get, LMBENCH)
# ----------------------------------------------------------------------------
+# Extract
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/lmbench.extract:
+ @$(call targetinfo)
+ @$(call clean, $(LMBENCH_DIR))
+ @$(call extract, LMBENCH)
+ @$(call patchin, LMBENCH)
+ @$(call touch)
+
+# ----------------------------------------------------------------------------
# Prepare
# ----------------------------------------------------------------------------
LMBENCH_PATH := PATH=$(CROSS_PATH)
-LMBENCH_ENV := \
- $(CROSS_ENV) \
- OS=$(PTXCONF_GNU_TARGET) \
- MAKE=$(MAKE) \
- TARGET=linux
+LMBENCH_ENV := $(CROSS_ENV)
+
+#
+# autoconf
+#
+LMBENCH_AUTOCONF := \
+ $(CROSS_AUTOCONF_USR) \
+ --disable-debug
$(STATEDIR)/lmbench.prepare:
@$(call targetinfo)
+ @$(call clean, $(LMBENCH_DIR)/config.cache)
+ chmod +x $(LMBENCH_DIR)/configure
+ cd $(LMBENCH_DIR) && \
+ $(LMBENCH_PATH) $(LMBENCH_ENV) \
+ ./configure $(LMBENCH_AUTOCONF)
@$(call touch)
# ----------------------------------------------------------------------------
@@ -53,7 +72,7 @@ $(STATEDIR)/lmbench.prepare:
$(STATEDIR)/lmbench.compile:
@$(call targetinfo)
- cd $(LMBENCH_DIR) && $(LMBENCH_PATH) $(LMBENCH_ENV) $(LMBENCH_DIR)/scripts/build
+ cd $(LMBENCH_DIR) && $(LMBENCH_PATH) $(MAKE) $(PARALLELMFLAGS)
@$(call touch)
# ----------------------------------------------------------------------------
@@ -62,6 +81,7 @@ $(STATEDIR)/lmbench.compile:
$(STATEDIR)/lmbench.install:
@$(call targetinfo)
+ @$(call install, LMBENCH)
@$(call touch)
# ----------------------------------------------------------------------------
@@ -76,18 +96,62 @@ $(STATEDIR)/lmbench.targetinstall:
@$(call install_fixup, lmbench,PRIORITY,optional)
@$(call install_fixup, lmbench,VERSION,$(LMBENCH_VERSION))
@$(call install_fixup, lmbench,SECTION,base)
- @$(call install_fixup, lmbench,AUTHOR,"Juergen Beisert <jbe@pengutronix.de>")
+ @$(call install_fixup, lmbench,AUTHOR,"Robert Schwebel")
@$(call install_fixup, lmbench,DEPENDS,)
@$(call install_fixup, lmbench,DESCRIPTION,missing)
- @cd $(LMBENCH_DIR)/bin/$(PTXCONF_GNU_TARGET); \
- for file in `find . -perm -u+x ! -type d`; do \
- PER=`stat -c "%a" $$file` \
- $(call install_copy, lmbench, 0, 0, $$PER, \
- $$file, \
- /usr/sbin/$$file) \
+ for file in \
+ /usr/bin/par_mem \
+ /usr/bin/lat_tcp \
+ /usr/bin/par_ops \
+ /usr/bin/lat_mmap \
+ /usr/bin/hello \
+ /usr/bin/bw_unix \
+ /usr/bin/lat_syscall \
+ /usr/bin/lat_sem \
+ /usr/bin/lat_fs \
+ /usr/bin/loop_o \
+ /usr/bin/lat_fcntl \
+ /usr/bin/lat_unix \
+ /usr/bin/bw_tcp \
+ /usr/bin/lat_rpc \
+ /usr/bin/lat_unix_connect \
+ /usr/bin/bw_file_rd \
+ /usr/bin/disk \
+ /usr/bin/lat_mem_rd \
+ /usr/bin/lat_select \
+ /usr/bin/lat_connect \
+ /usr/bin/lat_fifo \
+ /usr/bin/line \
+ /usr/bin/timing_o \
+ /usr/bin/lat_ctx \
+ /usr/bin/bw_mem \
+ /usr/bin/lat_sig \
+ /usr/bin/lat_pipe \
+ /usr/bin/lat_pagefault \
+ /usr/bin/lmhttp \
+ /usr/bin/tlb \
+ /usr/bin/bw_pipe \
+ /usr/bin/mhz \
+ /usr/bin/lat_http \
+ /usr/bin/msleep \
+ /usr/bin/lat_ops \
+ /usr/bin/lat_udp \
+ /usr/bin/stream \
+ /usr/bin/enough \
+ /usr/bin/flushdisk \
+ /usr/bin/lmdd \
+ /usr/bin/lat_proc \
+ /usr/bin/bw_mmap_rd \
+ /usr/bin/memsize \
+ ; do \
+ $(call install_copy, lmbench, 0, 0, 0755, -, $$file); \
done
+ @$(call install_copy, lmbench, 0, 0, 0644, -, /usr/lib/liblmbench.so.0.0.0)
+ @$(call install_link, lmbench, liblmbench.so.0.0.0, /usr/lib/liblmbench.so.0)
+ @$(call install_link, lmbench, liblmbench.so.0.0.0, /usr/lib/liblmbench.so)
+
@$(call install_finish, lmbench)
@$(call touch)