[oe-commits] =?UTF-8?Q?Dominic=20Sacr=C3=A9=20?=: fio: Add PACKAGECONFIG for numa, re-enable ARM build

git at git.openembedded.org git at git.openembedded.org
Fri Sep 18 12:07:10 UTC 2015


Module: meta-openembedded.git
Branch: fido
Commit: b79914ee9b72ffa8adda26d0f48a2abb42dc80cd
URL:    http://git.openembedded.org/?p=meta-openembedded.git&a=commit;h=b79914ee9b72ffa8adda26d0f48a2abb42dc80cd

Author: Dominic Sacré <dominic.sacre at gmx.de>
Date:   Sat Jul 18 00:57:47 2015 +0200

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 at gmx.de>
Signed-off-by: Martin Jansa <Martin.Jansa at gmail.com>

---

 meta-oe/recipes-benchmark/fio/fio_2.2.6.bb | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

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 82f9cd4..dca0e64 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}



More information about the Openembedded-commits mailing list