This patch adds recipe for dhrystone benchmarks. Dhrystone benchmarks measure CPU performance.
Signed-off-by: Mubin Sayyed <[email protected]> --- .../recipes-benchmark/dhrystone/dhrystone_2.1.bb | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 meta-oe/recipes-benchmark/dhrystone/dhrystone_2.1.bb diff --git a/meta-oe/recipes-benchmark/dhrystone/dhrystone_2.1.bb b/meta-oe/recipes-benchmark/dhrystone/dhrystone_2.1.bb new file mode 100644 index 0000000..d0026d5 --- /dev/null +++ b/meta-oe/recipes-benchmark/dhrystone/dhrystone_2.1.bb @@ -0,0 +1,22 @@ +DESCRIPTION = "CPU Benchmark to measure integer performance" +SECTION = "benchmark/tests" +HOMEPAGE = "http://en.wikipedia.org/wiki/Dhrystone" + +LICENSE = "NCSA" +LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/NCSA;md5=1b5fdec70ee13ad8a91667f16c1959d7" + +SRC_URI = "http://fossies.org/linux/privat/old/dhrystone-${PV}.tar.gz" + +SRC_URI[md5sum] = "15e13d1d2329571a60c04b2f05920d24" +SRC_URI[sha256sum] = "8c8da46c34fde271b8f60a96a432164d2918706911199f43514861f07ef6b2f1" + +EXTRA_OEMAKE = "-e MAKEFLAGS='GCC=${CC}' 'PROGS=unix' 'TIME_FUNC= -DTIME' \ + 'HZ=60' 'OPTIMIZE= -O4' 'GCCOPTIM=-O'" +S = "${WORKDIR}" + +do_install () { + + install -d ${D}${bindir} + install -m 0755 gcc_dry2 ${D}${bindir} + install -m 0755 gcc_dry2reg ${D}${bindir} +} -- 1.9.1 -- _______________________________________________ Openembedded-devel mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-devel
