aboutsummaryrefslogtreecommitdiffstats
path: root/package/devel
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2014-07-02 08:19:43 +0000
committerFelix Fietkau <nbd@openwrt.org>2014-07-02 08:19:43 +0000
commit942c91b60be51d684db3098b08fc95069da58e37 (patch)
treebb21aded7b036b45cad656fbf3adf3f6a327dec7 /package/devel
parent513191f33bf5735e7095dd075beee80f6dc1da81 (diff)
downloadupstream-942c91b60be51d684db3098b08fc95069da58e37.tar.gz
upstream-942c91b60be51d684db3098b08fc95069da58e37.tar.bz2
upstream-942c91b60be51d684db3098b08fc95069da58e37.zip
strace: fix build failure on arm
Signed-off-by: Felix Fietkau <nbd@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@41457 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/devel')
-rw-r--r--package/devel/strace/patches/100-musl_fix.patch14
1 files changed, 11 insertions, 3 deletions
diff --git a/package/devel/strace/patches/100-musl_fix.patch b/package/devel/strace/patches/100-musl_fix.patch
index cc29e0126f..e4105bc548 100644
--- a/package/devel/strace/patches/100-musl_fix.patch
+++ b/package/devel/strace/patches/100-musl_fix.patch
@@ -88,7 +88,15 @@
#if defined(SPARC64)
# define r_pc r_tpc
# undef PTRACE_GETREGS
-@@ -2857,7 +2844,7 @@ sys_sched_setscheduler(struct tcb *tcp)
+@@ -94,6 +81,7 @@
+
+ #include <sched.h>
+ #include <asm/posix_types.h>
++#include <asm/ptrace.h>
+ #undef GETGROUPS_T
+ #define GETGROUPS_T __kernel_gid_t
+ #undef GETGROUPS32_T
+@@ -2857,7 +2845,7 @@ sys_sched_setscheduler(struct tcb *tcp)
if (umove(tcp, tcp->u_arg[2], &p) < 0)
tprintf(", %#lx", tcp->u_arg[2]);
else
@@ -97,7 +105,7 @@
}
return 0;
}
-@@ -2872,7 +2859,7 @@ sys_sched_getparam(struct tcb *tcp)
+@@ -2872,7 +2860,7 @@ sys_sched_getparam(struct tcb *tcp)
if (umove(tcp, tcp->u_arg[1], &p) < 0)
tprintf("%#lx", tcp->u_arg[1]);
else
@@ -106,7 +114,7 @@
}
return 0;
}
-@@ -2885,7 +2872,7 @@ sys_sched_setparam(struct tcb *tcp)
+@@ -2885,7 +2873,7 @@ sys_sched_setparam(struct tcb *tcp)
if (umove(tcp, tcp->u_arg[1], &p) < 0)
tprintf("%d, %#lx", (int) tcp->u_arg[0], tcp->u_arg[1]);
else