From: Nathan Lynch Date: Sat, 12 Sep 2015 00:02:50 +0000 (-0500) Subject: as-needed.inc: add babeltrace exception X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~28940 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d3fc696bf1c0c5e9a0d238fb86e58771cfbe9cae;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git as-needed.inc: add babeltrace exception The babeltrace command has plugins which it specifies in its link step but on which (in the linker's view) it does not depend, so --as-needed causes some of them to be omitted from the executable's dependencies. This prevents babeltrace on OE-built systems from handling streaming/live tracing sessions. Babeltrace's makefiles already try to prevent this by using --no-as-needed, but --as-needed gets placed afterward in the command line, so it wins. Signed-off-by: Nathan Lynch Signed-off-by: Richard Purdie --- diff --git a/meta/conf/distro/include/as-needed.inc b/meta/conf/distro/include/as-needed.inc index 9d2056e17a9..4f249fd3e65 100644 --- a/meta/conf/distro/include/as-needed.inc +++ b/meta/conf/distro/include/as-needed.inc @@ -1,6 +1,7 @@ ASNEEDED = "-Wl,--as-needed" +ASNEEDED_pn-babeltrace = "" ASNEEDED_pn-console-tools = "" ASNEEDED_pn-distcc = "" ASNEEDED_pn-openobex = ""