mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 04:17:25 +00:00
7a35bc7d6e
This extends the dependencies on pointer.h to fix following error: | ./sysinfo.sh arm-poky-linux-gnueabi-gcc ... | In file included from misc.h:36:0, | from misc.c:23: | nmglobal.h:29:21: fatal error: pointer.h: No such file or directory | #include "pointer.h" | ^ | compilation terminated. | make: *** [misc.o] Error 1 | make: *** Waiting for unfinished jobs.... | ERROR: oe_runmake failed | WARNING: exit code 1 from a shell command. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
26 lines
881 B
BlitzBasic
26 lines
881 B
BlitzBasic
DESCRIPTION = "BYTE Magazine's native benchmarks (also called BYTEmark) \
|
|
designed to expose the capabilities of a system's CPU, FPU, \
|
|
and memory system."
|
|
HOMEPAGE = "http://www.tux.org/~mayer/linux/"
|
|
LICENSE = "freely distributable"
|
|
LIC_FILES_CHKSUM = "file://README;beginline=57;endline=66;md5=020ef579f8fa5746b7e307a54707834f"
|
|
SECTION = "console/utils"
|
|
|
|
SRC_URI = "http://www.tux.org/~mayer/linux/${PN}-${PV}.tar.gz \
|
|
file://nbench_32bits.patch \
|
|
file://Makefile-add-more-dependencies-to-pointer.h.patch"
|
|
|
|
SRC_URI[md5sum] = "285dfab361080759d477ea1fe7d3093a"
|
|
SRC_URI[sha256sum] = "723dd073f80e9969639eb577d2af4b540fc29716b6eafdac488d8f5aed9101ac"
|
|
|
|
TARGET_CC_ARCH += "${CFLAGS} ${LDFLAGS}"
|
|
do_compile() {
|
|
oe_runmake
|
|
}
|
|
|
|
do_install () {
|
|
install -d ${D}${bindir}
|
|
install -m 0644 NNET.DAT ${D}${bindir}/
|
|
install -m 0755 nbench ${D}${bindir}/
|
|
}
|