mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-21 21:51:34 +02:00
33 lines
1007 B
Diff
33 lines
1007 B
Diff
Patch-Source: https://github.com/void-linux/void-packages/blob/74f16232621ca8dfb6d244beff1df35a6df1647f/srcpkgs/llvm12/patches/lldb-musl.patch
|
|
--- a/source/Plugins/Process/Linux/Procfs.h
|
|
+++ b/source/Plugins/Process/Linux/Procfs.h
|
|
@@ -10,21 +10,12 @@
|
|
// sys/procfs.h on Android/Linux for all supported architectures.
|
|
|
|
#include <sys/ptrace.h>
|
|
+#include <asm/ptrace.h>
|
|
|
|
-#ifdef __ANDROID__
|
|
-#if defined(__arm64__) || defined(__aarch64__)
|
|
-typedef unsigned long elf_greg_t;
|
|
-typedef elf_greg_t
|
|
- elf_gregset_t[(sizeof(struct user_pt_regs) / sizeof(elf_greg_t))];
|
|
-typedef struct user_fpsimd_state elf_fpregset_t;
|
|
-#ifndef NT_FPREGSET
|
|
-#define NT_FPREGSET NT_PRFPREG
|
|
-#endif // NT_FPREGSET
|
|
-#elif defined(__mips__)
|
|
-#ifndef NT_FPREGSET
|
|
-#define NT_FPREGSET NT_PRFPREG
|
|
-#endif // NT_FPREGSET
|
|
-#endif
|
|
-#else // __ANDROID__
|
|
+#if !defined(__GLIBC__) && defined(__powerpc__)
|
|
+#define pt_regs musl_pt_regs
|
|
+#include <sys/procfs.h>
|
|
+#undef pt_regs
|
|
+#else
|
|
#include <sys/procfs.h>
|
|
-#endif // __ANDROID__
|
|
+#endif
|