All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][PATCH] fio: Remove --disable-static from EXTRA_OECONF
@ 2016-02-18 17:19 Fabio Berton
  2016-02-18 20:43 ` Christopher Larson
  0 siblings, 1 reply; 7+ messages in thread
From: Fabio Berton @ 2016-02-18 17:19 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Fabio Berton

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>
---
 meta-oe/recipes-benchmark/fio/fio_2.2.6.bb | 3 +++
 1 file changed, 3 insertions(+)

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 dca0e64..5bf387c 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"
 
 S = "${WORKDIR}/git"
 
+# avoids build breaks when using no-static-libs.inc
+DISABLE_STATIC = ""
+
 EXTRA_OEMAKE = "CC='${CC}' LDFLAGS='${LDFLAGS}'"
 
 do_configure() {
-- 
2.1.4



^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2016-02-22  9:52 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-18 17:19 [meta-oe][PATCH] fio: Remove --disable-static from EXTRA_OECONF Fabio Berton
2016-02-18 20:43 ` Christopher Larson
2016-02-19 13:23   ` Otavio Salvador
2016-02-21 10:30   ` Richard Purdie
2016-02-21 10:47     ` Martin Jansa
2016-02-21 22:44       ` Richard Purdie
2016-02-22  9:52         ` Burton, Ross

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.