mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-17 04:37:19 +00:00
49dac62f88
Add a new recipe for osbench, a collection of micro-benchmarks to measure operating system primitives such as process creation, thread creation, file operations, and memory allocation. Signed-off-by: Ashwin Prabhakar <ashwin.prabhakar@qti.qualcomm.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
24 lines
790 B
BlitzBasic
24 lines
790 B
BlitzBasic
SUMMARY = "Operating system benchmark tools"
|
|
DESCRIPTION = "A collection of micro-benchmarks that measure the performance of OS primitives"
|
|
HOMEPAGE = "https://gitlab.com/mbitsnbites/osbench"
|
|
|
|
LICENSE = "Unlicense"
|
|
LIC_FILES_CHKSUM = "file://UNLICENSE;md5=7246f848faa4e9c9fc0ea91122d6e680"
|
|
|
|
SRC_URI = "git://gitlab.com/mbitsnbites/osbench.git;protocol=https;branch=master"
|
|
SRCREV = "c59c7c58649162c33250a326ca8fa582b520a29e"
|
|
|
|
inherit meson
|
|
|
|
MESON_SOURCEPATH = "${S}/src"
|
|
|
|
do_install() {
|
|
install -d ${D}${bindir}
|
|
|
|
install -m 0755 ${B}/create_processes ${D}${bindir}/
|
|
install -m 0755 ${B}/create_threads ${D}${bindir}/
|
|
install -m 0755 ${B}/create_files ${D}${bindir}/
|
|
install -m 0755 ${B}/launch_programs ${D}${bindir}/
|
|
install -m 0755 ${B}/mem_alloc ${D}${bindir}/
|
|
}
|