mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-05-18 23:35:34 +00:00
fio: Add PACKAGECONFIG for numa, re-enable ARM build
Make fio's NUMA support optional via PACKAGECONFIG. Enable this feature by default, except on ARM where libnuma/numactl is not available. Signed-off-by: Dominic Sacré <dominic.sacre@gmx.de> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
parent
6c5bce759e
commit
b79914ee9b
@ -10,10 +10,14 @@ SECTION = "console/tests"
|
||||
LICENSE = "GPLv2"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=393a5ca445f6965873eca0259a17f833"
|
||||
|
||||
DEPENDS = "libaio zlib numactl"
|
||||
DEPENDS = "libaio zlib"
|
||||
|
||||
PACKAGECONFIG_NUMA = "numa"
|
||||
# ARM does not currently support NUMA
|
||||
COMPATIBLE_HOST = "^((?!arm).*)$"
|
||||
PACKAGECONFIG_NUMA_arm = ""
|
||||
|
||||
PACKAGECONFIG ??= "${PACKAGECONFIG_NUMA}"
|
||||
PACKAGECONFIG[numa] = ",--disable-numa,numactl"
|
||||
|
||||
# rev for v2.2.6
|
||||
SRCREV = "f52c9691bc8c285f3445235c69acdfd6de7f9b82"
|
||||
@ -23,6 +27,10 @@ S = "${WORKDIR}/git"
|
||||
|
||||
EXTRA_OEMAKE = "CC='${CC}' LDFLAGS='${LDFLAGS}'"
|
||||
|
||||
do_configure() {
|
||||
./configure ${EXTRA_OECONF}
|
||||
}
|
||||
|
||||
do_install() {
|
||||
oe_runmake install DESTDIR=${D} prefix=${prefix} mandir=${mandir}
|
||||
install -d ${D}/${docdir}/${PN}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user