From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.17]) by mail.openembedded.org (Postfix) with ESMTP id DEE4C78345 for ; Fri, 3 Nov 2017 17:22:23 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mailout4.zoneedit.com (Postfix) with ESMTP id C81FF20AA4; Fri, 3 Nov 2017 17:22:24 +0000 (UTC) Received: from mailout4.zoneedit.com ([127.0.0.1]) by localhost (zmo03-pco.easydns.vpn [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 2LKVZ3xauU0g; Fri, 3 Nov 2017 17:22:24 +0000 (UTC) Received: from mail.denix.org (pool-100-15-85-143.washdc.fios.verizon.net [100.15.85.143]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id A6DA3204D6; Fri, 3 Nov 2017 17:22:23 +0000 (UTC) Received: by mail.denix.org (Postfix, from userid 1000) id 278E7162714; Fri, 3 Nov 2017 13:22:23 -0400 (EDT) Date: Fri, 3 Nov 2017 13:22:23 -0400 From: Denys Dmytriyenko To: Manjukumar Matha Message-ID: <20171103172223.GO9221@denix.org> References: <1509684158-12893-1-git-send-email-manjukumar.harthikote-matha@xilinx.com> MIME-Version: 1.0 In-Reply-To: <1509684158-12893-1-git-send-email-manjukumar.harthikote-matha@xilinx.com> User-Agent: Mutt/1.5.20 (2009-06-14) Cc: openembedded-devel@lists.openembedded.org Subject: Re: [meta-oe][PATCH v4] whetstone_1.2.bb: Add whetstone benchmark X-BeenThere: openembedded-devel@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Using the OpenEmbedded metadata to build Distributions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Nov 2017 17:22:24 -0000 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, Nov 02, 2017 at 09:42:38PM -0700, Manjukumar Matha wrote: > The Whetstone benchmark is a synthetic benchmark for evaluating the > performance of computers. > > https://en.wikipedia.org/wiki/Whetstone_(benchmark) > > Signed-off-by: Manjukumar Matha Acked-by: Denys Dmytriyenko > --- > meta-oe/recipes-benchmark/whetstone/whetstone_1.2.bb | 20 ++++++++++++++++++++ > 1 file changed, 20 insertions(+) > create mode 100644 meta-oe/recipes-benchmark/whetstone/whetstone_1.2.bb > > diff --git a/meta-oe/recipes-benchmark/whetstone/whetstone_1.2.bb b/meta-oe/recipes-benchmark/whetstone/whetstone_1.2.bb > new file mode 100644 > index 0000000..8fad04e > --- /dev/null > +++ b/meta-oe/recipes-benchmark/whetstone/whetstone_1.2.bb > @@ -0,0 +1,20 @@ > +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://${WORKDIR}/whetstone.c;beginline=1;endline=52;md5=c795edc15e7e1d92ca8f88ad718449f5" > + > +SRC_URI = "http://www.netlib.org/benchmark/whetstone.c" > +SRC_URI[md5sum] = "d8eb2cd7104bb5a12d614ac6d3f1f9fb" > +SRC_URI[sha256sum] = "333e4ceca042c146f63eec605573d16ae8b07166cbc44a17bec1ea97c6f1efbf" > + > +S = "${WORKDIR}" > + > +do_compile () { > + ${CC} ${CFLAGS} ${LDFLAGS} -Ofast -o whetstone whetstone.c -lm > +} > + > +do_install () { > + install -Dm 0755 whetstone ${D}${bindir}/whetstone > +} > + > -- > 2.7.4 > > -- > _______________________________________________ > Openembedded-devel mailing list > Openembedded-devel@lists.openembedded.org > http://lists.openembedded.org/mailman/listinfo/openembedded-devel