diff options
author | Khem Raj <raj.khem@gmail.com> | 2011-07-19 13:56:54 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-20 15:25:02 +0100 |
commit | aa66fc48d56385d7bea9c0099fdbc149b0eee7fc (patch) | |
tree | d9ed804ab0e2b1ee4d847b500f9d4f728a3b5eda /meta | |
parent | 22fdaba9813beb276caf2b6194fccc4cccf138c4 (diff) | |
download | openembedded-core-aa66fc48d56385d7bea9c0099fdbc149b0eee7fc.tar.gz openembedded-core-aa66fc48d56385d7bea9c0099fdbc149b0eee7fc.tar.bz2 openembedded-core-aa66fc48d56385d7bea9c0099fdbc149b0eee7fc.zip |
task-core-tools: Exclude systemtap for uclibc
systemtap needs full fledged elfutils which cant be
built on uclibc therefore we live without systemtap
on uclibc
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-core/tasks/task-core-tools.bb | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/meta/recipes-core/tasks/task-core-tools.bb b/meta/recipes-core/tasks/task-core-tools.bb index 44520a75c7..eed4afb69e 100644 --- a/meta/recipes-core/tasks/task-core-tools.bb +++ b/meta/recipes-core/tasks/task-core-tools.bb @@ -53,6 +53,11 @@ RRECOMMENDS_task-core-tools-profile = "\ sysprof \ " +# systemtap needs elfutils which is not fully buildable on uclibc +# hence we exclude it from uclibc based builds +SYSTEMTAP = "systemtap" +SYSTEMTAP_libc-uclibc = "" + # exmap-console # exmap-server @@ -60,9 +65,9 @@ RRECOMMENDS_task-core-tools-profile = "\ # qemux86/qemux86-64/qemuppc/qemuarm/emenlow/atom-pc since upstream liburcu # (which is required by lttng-ust) may not build on other platforms, like # MIPS. -RDEPENDS_task-core-tools-profile_append_qemux86 = " valgrind lttng-ust systemtap" -RDEPENDS_task-core-tools-profile_append_qemux86-64 = " lttng-ust systemtap" -RDEPENDS_task-core-tools-profile_append_qemuppc = " lttng-ust systemtap" +RDEPENDS_task-core-tools-profile_append_qemux86 = " valgrind lttng-ust ${SYSTEMTAP}" +RDEPENDS_task-core-tools-profile_append_qemux86-64 = " lttng-ust ${SYSTEMTAP}" +RDEPENDS_task-core-tools-profile_append_qemuppc = " lttng-ust ${SYSTEMTAP}" RDEPENDS_task-core-tools-profile_append_qemuarm = " lttng-ust" RDEPENDS_task-core-tools-testapps = "\ |