From b79914ee9b72ffa8adda26d0f48a2abb42dc80cd Mon Sep 17 00:00:00 2001 From: Dominic Sacré Date: Sat, 18 Jul 2015 00:57:47 +0200 Subject: fio: Add PACKAGECONFIG for numa, re-enable ARM build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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é Signed-off-by: Martin Jansa --- meta-oe/recipes-benchmark/fio/fio_2.2.6.bb | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'meta-oe/recipes-benchmark/fio/fio_2.2.6.bb') diff --git a/meta-oe/recipes-benchmark/fio/fio_2.2.6.bb b/meta-oe/recipes-benchmark/fio/fio_2.2.6.bb index 82f9cd4238..dca0e64e66 100644 --- a/meta-oe/recipes-benchmark/fio/fio_2.2.6.bb +++ b/meta-oe/recipes-benchmark/fio/fio_2.2.6.bb @@ -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} -- cgit 1.2.3-korg