mirror of
https://git.yoctoproject.org/poky
synced 2026-09-14 12:49:34 +02:00
perf: fix v3.17 powerpc compilation issues
The powerpc perf arch port has two issues in the current 3.17-rc seriers. Undefined dwarf symbols and undefined pr_debug calls. commit a60335ba [perf tools powerpc: Adjust callchain based on DWARF debug info] introduces skip-callchain-idx.c, and breaks the perf build. Until fixes get into the mainline kernel, we temporarily fix the issues by adding a forced linke to -ldw and modifying skip-callchain-idx.c to include the proper debug files for pr_debug. (From OE-Core rev: 9f204a02f07f8e378e8a078db103a6ba94ec55cb) Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
73ef4032a9
commit
6cb383cab8
@@ -78,6 +78,7 @@ EXTRA_OEMAKE = '\
|
|||||||
ARCH=${ARCH} \
|
ARCH=${ARCH} \
|
||||||
CC="${CC}" \
|
CC="${CC}" \
|
||||||
AR="${AR}" \
|
AR="${AR}" \
|
||||||
|
EXTRA_CFLAGS="-ldw" \
|
||||||
perfexecdir=${libexecdir} \
|
perfexecdir=${libexecdir} \
|
||||||
NO_GTK2=1 ${TUI_DEFINES} NO_DWARF=1 ${LIBUNWIND_DEFINES} ${SCRIPTING_DEFINES} \
|
NO_GTK2=1 ${TUI_DEFINES} NO_DWARF=1 ${LIBUNWIND_DEFINES} ${SCRIPTING_DEFINES} \
|
||||||
'
|
'
|
||||||
@@ -143,6 +144,10 @@ do_configure_prepend () {
|
|||||||
if [ -e "${S}/tools/perf/config/feature-checks/Makefile" ]; then
|
if [ -e "${S}/tools/perf/config/feature-checks/Makefile" ]; then
|
||||||
sed -i 's,CC := $(CROSS_COMPILE)gcc -MD,CC += -MD,' ${S}/tools/perf/config/feature-checks/Makefile
|
sed -i 's,CC := $(CROSS_COMPILE)gcc -MD,CC += -MD,' ${S}/tools/perf/config/feature-checks/Makefile
|
||||||
fi
|
fi
|
||||||
|
# 3.17-rc1+ has a include issue for powerpc. Temporarily sed in the appropriate include
|
||||||
|
if [ -e "${S}/tools/perf/arch/powerpc/util/skip-callchain-idx.c" ]; then
|
||||||
|
sed -i 's,#include "util/callchain.h",#include "util/callchain.h"\n#include "util/debug.h",' ${S}/tools/perf/arch/powerpc/util/skip-callchain-idx.c
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
python do_package_prepend() {
|
python do_package_prepend() {
|
||||||
|
|||||||
Reference in New Issue
Block a user