diff options
author | Tom Zanussi <tom.zanussi@linux.intel.com> | 2013-12-31 13:59:24 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-02-09 11:04:15 +0000 |
commit | 0be9520921bf3ba9aff5ecc9bbd17d84b57ff714 (patch) | |
tree | ca6a1fb2f98b90ebd09e1819172d16ca20207a48 /meta | |
parent | 81f4de35fcfb748867d55c66330345183dd5473e (diff) | |
download | poky-0be9520921bf3ba9aff5ecc9bbd17d84b57ff714.tar.gz |
systemtap: Add --enable-prologues to configuration
In some cases, the debuginfo generated by the compiler is insufficient
for systemtap to figure out function param locations; using -P allows
it to use prologue searching to find the correct locations.
Enable prologue searching in the configuration so the user doesn't
have to specify it manually.
Fixes [YOCTO #5403].
(From OE-Core master rev: 798faec374cac7743d2b5bf390ef6263a0e6cdf4)
(From OE-Core rev: bff5199a17c7ab293f5bfdd3cdc19c39887dc00d)
Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-kernel/systemtap/systemtap_git.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-kernel/systemtap/systemtap_git.bb b/meta/recipes-kernel/systemtap/systemtap_git.bb index bcc826a62e..3fd27bc2b3 100644 --- a/meta/recipes-kernel/systemtap/systemtap_git.bb +++ b/meta/recipes-kernel/systemtap/systemtap_git.bb | |||
@@ -12,7 +12,7 @@ RDEPENDS_${PN}_class-nativesdk += "python-native" | |||
12 | 12 | ||
13 | EXTRA_OECONF += "--with-libelf=${STAGING_DIR_TARGET} --without-rpm \ | 13 | EXTRA_OECONF += "--with-libelf=${STAGING_DIR_TARGET} --without-rpm \ |
14 | --without-nss --without-avahi --without-dyninst \ | 14 | --without-nss --without-avahi --without-dyninst \ |
15 | --disable-server --disable-grapher \ | 15 | --disable-server --disable-grapher --enable-prologues \ |
16 | ac_cv_prog_have_javac=no \ | 16 | ac_cv_prog_have_javac=no \ |
17 | ac_cv_prog_have_jar=no " | 17 | ac_cv_prog_have_jar=no " |
18 | 18 | ||