[oe-commits] [openembedded-core] 02/19: perf: depend on native versions of bison and flex

git at git.openembedded.org git at git.openembedded.org
Thu Jan 11 23:24:02 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 5f4b54a234ad7a859db8a1e23c6892a8b3bc1b52
Author: Denys Dmytriyenko <denys at ti.com>
AuthorDate: Wed Jan 10 00:09:00 2018 -0500

    perf: depend on native versions of bison and flex
    
    Explicitly depend on bison-native and flex-native for deterministic builds,
    as those are required for the build:
    
    | Makefile.config:129: *** Error: flex is missing on this system, please install it.  Stop.
    | Makefile.perf:205: recipe for target 'sub-make' failed
    | make[1]: *** [sub-make] Error 2
    | Makefile:68: recipe for target 'all' failed
    | make: *** [all] Error 2
    
    | Makefile.config:133: *** Error: bison is missing on this system, please install it.  Stop.
    | Makefile.perf:205: recipe for target 'sub-make' failed
    | make[1]: *** [sub-make] Error 2
    | Makefile:68: recipe for target 'all' failed
    | make: *** [all] Error 2
    
    In most cases, those dependencies come indirectly via toolchain dependencies,
    specifically binutils-cross, which pulls both bison-native and flex-native.
    Different setups, such as with external toolchain, would expose this problem,
    since correct dependency is not marked explicitly.
    
    The change is build-tested on all qemu architectures.
    
    Signed-off-by: Denys Dmytriyenko <denys at ti.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-kernel/perf/perf.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-kernel/perf/perf.bb b/meta/recipes-kernel/perf/perf.bb
index b79b973..bb943ec 100644
--- a/meta/recipes-kernel/perf/perf.bb
+++ b/meta/recipes-kernel/perf/perf.bb
@@ -26,7 +26,7 @@ DEPENDS = " \
     virtual/${MLPREFIX}libc \
     ${MLPREFIX}elfutils \
     ${MLPREFIX}binutils \
-    bison flex xz \
+    bison-native flex-native xz \
     xmlto-native \
     asciidoc-native \
 "

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list