summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/oprofile/oprofile
diff options
context:
space:
mode:
authorMatthew McClintock <msm@freescale.com>2013-02-05 11:46:48 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-02-06 09:37:26 +0000
commitf1dc17dc3271049ebce5024ecb6a2eaa59a8480b (patch)
tree1325d4aa6f0daadf7b9173f387736a8523b82355 /meta/recipes-kernel/oprofile/oprofile
parent44f5f3f12848f256f83eee746752eba493984efe (diff)
downloadpoky-f1dc17dc3271049ebce5024ecb6a2eaa59a8480b.tar.gz
oprofile: fix cross compile on powerpc and add libpfm4 dep
Fixes [YOCTO #3717] (From OE-Core rev: 88959e42411a40b15fe8907da00a97a7732a9cc1) Signed-off-by: Matthew McClintock <msm@freescale.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/oprofile/oprofile')
-rw-r--r--meta/recipes-kernel/oprofile/oprofile/0001-fix-powerpc-cross-compiling.patch35
1 files changed, 35 insertions, 0 deletions
diff --git a/meta/recipes-kernel/oprofile/oprofile/0001-fix-powerpc-cross-compiling.patch b/meta/recipes-kernel/oprofile/oprofile/0001-fix-powerpc-cross-compiling.patch
new file mode 100644
index 0000000000..d4dffb18d0
--- /dev/null
+++ b/meta/recipes-kernel/oprofile/oprofile/0001-fix-powerpc-cross-compiling.patch
@@ -0,0 +1,35 @@
1Upstream-Status: Submitted
2
3From cd8aafe5ca48e8d809188df6e42f20efd5cbefd1 Mon Sep 17 00:00:00 2001
4From: Matthew McClintock <msm@freescale.com>
5Date: Tue, 5 Feb 2013 11:05:00 -0600
6Subject: [PATCH] fix powerpc cross compiling
7
8You can't determine the target for running on by running uname
9on the build machine. Use a better method instead.
10
11Signed-off-by: Matthew McClintock <msm@freescale.com>
12---
13 configure.ac | 4 ++--
14 1 file changed, 2 insertions(+), 2 deletions(-)
15
16diff --git a/configure.ac b/configure.ac
17index a9b1ee4..4b73cdd 100644
18--- a/configure.ac
19+++ b/configure.ac
20@@ -155,10 +155,10 @@ fi
21
22 AC_DEFINE_UNQUOTED(HAVE_PERF_EVENTS, $HAVE_PERF_EVENTS, [Kernel support for perf_events exists])
23
24+AC_CANONICAL_HOST
25 if test "$HAVE_PERF_EVENTS" = "1"; then
26 PFM_LIB=
27- arch="`uname -m`"
28- if test "$arch" = "ppc64" || test "$arch" = "ppc"; then
29+ if test "$host_cpu" = "powerpc"; then
30 AC_CHECK_HEADER(perfmon/pfmlib.h,,[AC_MSG_ERROR([pfmlib.h not found; usually provided in papi devel package])])
31 AC_CHECK_LIB(pfm,pfm_get_os_event_encoding, HAVE_LIBPFM3='0'; HAVE_LIBPFM='1', [
32 AC_CHECK_LIB(pfm, pfm_get_event_name, HAVE_LIBPFM3='1'; HAVE_LIBPFM='1',
33--
341.7.9.7
35