mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-16 16:29:18 +00:00
Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
20 lines
618 B
BlitzBasic
20 lines
618 B
BlitzBasic
DESCRIPTION = "Whetstone benchmark is a synthetic benchmark for evaluating the performance of computers"
|
|
SUMMARY = "CPU benchmark to measure floating point performance"
|
|
|
|
LICENSE = "PD"
|
|
LIC_FILES_CHKSUM = "file://${UNPACKDIR}/whetstone.c;beginline=1;endline=52;md5=c795edc15e7e1d92ca8f88ad718449f5"
|
|
|
|
SRC_URI = "http://www.netlib.org/benchmark/whetstone.c"
|
|
SRC_URI[sha256sum] = "333e4ceca042c146f63eec605573d16ae8b07166cbc44a17bec1ea97c6f1efbf"
|
|
|
|
S = "${UNPACKDIR}"
|
|
|
|
do_compile () {
|
|
${CC} ${CFLAGS} ${LDFLAGS} -Ofast -o whetstone whetstone.c -lm
|
|
}
|
|
|
|
do_install () {
|
|
install -Dm 0755 whetstone ${D}${bindir}/whetstone
|
|
}
|
|
|