diff options
author | Fabio Berton <fabio.berton@ossystems.com.br> | 2016-02-18 15:19:05 -0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-02-25 17:45:50 +0100 |
commit | e29474b8015801ab0d3ee5c15c5d6de06c5ce394 (patch) | |
tree | 9c7a8d456b132e8b4f1d0c07b767fcf79f8d9053 /meta-oe/recipes-benchmark | |
parent | e74ebdd2345b76ac5b87208db048d207b77098ad (diff) | |
download | meta-openembedded-e29474b8015801ab0d3ee5c15c5d6de06c5ce394.tar.gz |
fio: Remove --disable-static from EXTRA_OECONF
As of commit OE-Core:773c9e18071d71454473dd81aff911104a2e9bc6
EXTRA_OECONF is appended with the option --disable-static on
DISABLE_STATIC variable and this cause the error:
DEBUG: Python function sysroot_cleansstate finished
DEBUG: Executing shell function do_configure
Bad option --disable-static
--cpu= Specify target CPU if auto-detect fails
--cc= Specify compiler to use
--extra-cflags= Specify extra CFLAGS to pass to compiler
--build-32bit-win Enable 32-bit build on Windows
--build-static Build a static fio
--esx Configure build options for esx
--enable-gfio Enable building of gtk gfio
--disable-numa Disable libnuma even if found
--enable-libhdfs Enable hdfs support
WARNING: exit code 1 from a shell command.
So, we need to disable this option.
Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-benchmark')
-rw-r--r-- | meta-oe/recipes-benchmark/fio/fio_2.2.6.bb | 3 |
1 files changed, 3 insertions, 0 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 dca0e64e6..5bf387c3a 100644 --- a/meta-oe/recipes-benchmark/fio/fio_2.2.6.bb +++ b/meta-oe/recipes-benchmark/fio/fio_2.2.6.bb | |||
@@ -25,6 +25,9 @@ SRC_URI = "git://git.kernel.dk/fio.git" | |||
25 | 25 | ||
26 | S = "${WORKDIR}/git" | 26 | S = "${WORKDIR}/git" |
27 | 27 | ||
28 | # avoids build breaks when using no-static-libs.inc | ||
29 | DISABLE_STATIC = "" | ||
30 | |||
28 | EXTRA_OEMAKE = "CC='${CC}' LDFLAGS='${LDFLAGS}'" | 31 | EXTRA_OEMAKE = "CC='${CC}' LDFLAGS='${LDFLAGS}'" |
29 | 32 | ||
30 | do_configure() { | 33 | do_configure() { |