From: Hongxu Jia Date: Fri, 18 Mar 2016 09:01:46 +0000 (-0400) Subject: valgrind: fix buildpath QA issue X-Git-Tag: 2016-4~365 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=7b75303e6df5d685c1b50c53c53af3962d6b3722;p=openembedded-core.git valgrind: fix buildpath QA issue Pass DEBUG_FLAGS to SELECTED_OPTIMIZATION which fixes build path issue in DWARF. [YOCTO #8457] Signed-off-by: Hongxu Jia Signed-off-by: Ross Burton --- diff --git a/meta/recipes-devtools/valgrind/valgrind_3.11.0.bb b/meta/recipes-devtools/valgrind/valgrind_3.11.0.bb index e8a235781b..51c88bf7aa 100644 --- a/meta/recipes-devtools/valgrind/valgrind_3.11.0.bb +++ b/meta/recipes-devtools/valgrind/valgrind_3.11.0.bb @@ -49,8 +49,9 @@ EXTRA_OEMAKE = "-w" # valgrind likes to control its own optimisation flags. It generally defaults # to -O2 but uses -O0 for some specific test apps etc. Passing our own flags -# (via CFLAGS) means we interfere with that. -SELECTED_OPTIMIZATION = "" +# (via CFLAGS) means we interfere with that. Only pass DEBUG_FLAGS to it +# which fixes build path issue in DWARF. +SELECTED_OPTIMIZATION = "${DEBUG_FLAGS}" CFLAGS_append_libc-uclibc = " -D__UCLIBC__ "