mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
main/strace: fix pt_regs collision on ppc64le
strace build requires <linux/ptrace.h> and it includes <asm/ptrace.h> that, by its turn, defines the pt_regs struct. However the same struct is also define in <bits/user.h> from musl-dev, creating therefore a conflict. A solution is to add the __ASSEMBLY__ guard so pt_regs struct from <asm/ptrace.h> is not include twice, avoiding the collision in question. There is no other way to worki around that issue on Musl since it does not include the linux headers and hence has to define again the pt_regs struct in user.h and the name clashes. In glibc, for instance, user.h includes <asm/ptrace.h> from kernel and does not redefine it. Also Musl community has no better solution at the moment for this issue on ppc, so basically nothing change since [1]. [1] http://www.openwall.com/lists/musl/2016/12/30/5
This commit is contained in:
parent
995ff2aa9e
commit
70e8624cec
@ -9,7 +9,8 @@ license="BSD"
|
||||
depends=
|
||||
makedepends="linux-headers"
|
||||
subpackages="$pkgname-doc"
|
||||
source="http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.xz"
|
||||
source="http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.xz
|
||||
fix-ppc-pt-regs-collision.patch"
|
||||
|
||||
builddir="$srcdir/$pkgname-$pkgver"
|
||||
prepare() {
|
||||
@ -41,4 +42,5 @@ package() {
|
||||
make -j1 DESTDIR="$pkgdir" install
|
||||
}
|
||||
|
||||
sha512sums="d1a7b782cb8196eb95b431b66f9b0eff7886869a7e3a4618d985f73b2eed7590ba73150b9c33e55ee5c65fc8f863588b64c5611dca7b5d7a4183110eaf4451d5 strace-4.16.tar.xz"
|
||||
sha512sums="d1a7b782cb8196eb95b431b66f9b0eff7886869a7e3a4618d985f73b2eed7590ba73150b9c33e55ee5c65fc8f863588b64c5611dca7b5d7a4183110eaf4451d5 strace-4.16.tar.xz
|
||||
b70cee89dd49a2b5a69dc2a56c3a11169d3306e1a73981155188b574486965c034aa52b4ac1c6edff5ef55c9d52f27750acb242fac095a8a9f69689b51b3fad1 fix-ppc-pt-regs-collision.patch"
|
||||
|
19
main/strace/fix-ppc-pt-regs-collision.patch
Normal file
19
main/strace/fix-ppc-pt-regs-collision.patch
Normal file
@ -0,0 +1,19 @@
|
||||
--- a/ptrace.h
|
||||
+++ b/ptrace.h
|
||||
@@ -48,7 +48,15 @@
|
||||
# define ptrace_peeksiginfo_args XXX_ptrace_peeksiginfo_args
|
||||
#endif
|
||||
|
||||
-#include <linux/ptrace.h>
|
||||
+#if defined(__powerpc__) || defined(__powerpc64__)
|
||||
+# include <linux/types.h>
|
||||
+# define __ASSEMBLY__
|
||||
+# include <linux/ptrace.h>
|
||||
+# undef __ASSEMBLY__
|
||||
+#else
|
||||
+# include <linux/ptrace.h>
|
||||
+#endif
|
||||
+
|
||||
|
||||
#ifdef HAVE_STRUCT_IA64_FPREG
|
||||
# undef ia64_fpreg
|
Loading…
Reference in New Issue
Block a user