diff options
author | Khem Raj <raj.khem@gmail.com> | 2011-07-20 23:10:13 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-22 11:51:04 +0100 |
commit | 48966d90f2b3efd4a0d50b3a9d059f19e4a7f8ea (patch) | |
tree | 77768d6c02b012427ecbdb09477d9805a5278c51 /meta/recipes-core | |
parent | a9aa45ce9e5fd6cf7b38d2148a0f48b188f67430 (diff) | |
download | poky-48966d90f2b3efd4a0d50b3a9d059f19e4a7f8ea.tar.gz |
task-core-tools.bb: Exclude lttng-ust for x86_64/uclibc
(From OE-Core rev: 172e8de050673bedd1d7a17e5b9bd099448e20fa)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/tasks/task-core-tools.bb | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/meta/recipes-core/tasks/task-core-tools.bb b/meta/recipes-core/tasks/task-core-tools.bb index eed4afb69e..b0eb7d46e6 100644 --- a/meta/recipes-core/tasks/task-core-tools.bb +++ b/meta/recipes-core/tasks/task-core-tools.bb | |||
@@ -58,6 +58,15 @@ RRECOMMENDS_task-core-tools-profile = "\ | |||
58 | SYSTEMTAP = "systemtap" | 58 | SYSTEMTAP = "systemtap" |
59 | SYSTEMTAP_libc-uclibc = "" | 59 | SYSTEMTAP_libc-uclibc = "" |
60 | 60 | ||
61 | # lttng-ust uses sched_getcpu() which is not there on uclibc | ||
62 | # for some of the architectures it can be patched to call the | ||
63 | # syscall directly but for x86_64 __NR_getcpu is a vsyscall | ||
64 | # which means we can not use syscall() to call it. So we ignore | ||
65 | # it for x86_64/uclibc | ||
66 | |||
67 | LTTNGUST = "lttng-ust" | ||
68 | LTTNGUST_libc-uclibc = "" | ||
69 | |||
61 | # exmap-console | 70 | # exmap-console |
62 | # exmap-server | 71 | # exmap-server |
63 | 72 | ||
@@ -66,7 +75,7 @@ SYSTEMTAP_libc-uclibc = "" | |||
66 | # (which is required by lttng-ust) may not build on other platforms, like | 75 | # (which is required by lttng-ust) may not build on other platforms, like |
67 | # MIPS. | 76 | # MIPS. |
68 | RDEPENDS_task-core-tools-profile_append_qemux86 = " valgrind lttng-ust ${SYSTEMTAP}" | 77 | RDEPENDS_task-core-tools-profile_append_qemux86 = " valgrind lttng-ust ${SYSTEMTAP}" |
69 | RDEPENDS_task-core-tools-profile_append_qemux86-64 = " lttng-ust ${SYSTEMTAP}" | 78 | RDEPENDS_task-core-tools-profile_append_qemux86-64 = " ${LTTNGUST} ${SYSTEMTAP}" |
70 | RDEPENDS_task-core-tools-profile_append_qemuppc = " lttng-ust ${SYSTEMTAP}" | 79 | RDEPENDS_task-core-tools-profile_append_qemuppc = " lttng-ust ${SYSTEMTAP}" |
71 | RDEPENDS_task-core-tools-profile_append_qemuarm = " lttng-ust" | 80 | RDEPENDS_task-core-tools-profile_append_qemuarm = " lttng-ust" |
72 | 81 | ||