From: Alexandru Ardelean Date: Fri, 4 Nov 2016 15:59:08 +0000 (+0200) Subject: devel/strace: fix build on mpc85xx target X-Git-Tag: v17.01.0-rc1~925 X-Git-Url: http://git.ozo.com/?a=commitdiff_plain;ds=sidebyside;h=519a199cbcc0930e229ddd7087309326a846bdce;hp=862e7fb7b31fa0fffeeecd51dd852fce91db2b47;p=openwrt%2F.git devel/strace: fix build on mpc85xx target builbot faillog: https://downloads.lede-project.org/snapshots/faillogs/powerpc_8540/base/strace/compile.txt Seems that for PPC, the header [from uapi] collides with musl's , for the pt_regs struct. Seems I tried to upstream this patch a while back: https://lists.openwrt.org/pipermail/openwrt-devel/2016-April/041093.html It seems to work on current LEDE trunk too. Signed-off-by: Alexandru Ardelean --- diff --git a/package/devel/strace/patches/100-workaround--pt-reg-collisions-ppc.patch b/package/devel/strace/patches/100-workaround--pt-reg-collisions-ppc.patch new file mode 100644 index 0000000000..9b9d12a286 --- /dev/null +++ b/package/devel/strace/patches/100-workaround--pt-reg-collisions-ppc.patch @@ -0,0 +1,14 @@ +--- a/ptrace.h ++++ b/ptrace.h +@@ -52,7 +52,10 @@ extern long ptrace(int, int, char *, long); + # define ptrace_peeksiginfo_args XXX_ptrace_peeksiginfo_args + #endif + ++#include ++#define __ASSEMBLY__ + #include ++#undef __ASSEMBLY__ + + #ifdef HAVE_STRUCT_IA64_FPREG + # undef ia64_fpreg +--