about summary refs log tree commit diff
path: root/pkgs/development/compilers/llvm/10/lldb-procfs.patch
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2020-01-25 00:17:00 +0100
committerGabor Greif <ggreif@gmail.com>2020-02-25 13:24:27 +0100
commitf111c6f9cebacc0201f59c25d6be0683014a3935 (patch)
tree4e75bed915f9b292898e97f022a5e4687a4ae723 /pkgs/development/compilers/llvm/10/lldb-procfs.patch
parent82cbc6af3cbb77a07e1725554119e0fb032d7cf6 (diff)
downloadnixlib-f111c6f9cebacc0201f59c25d6be0683014a3935.tar
nixlib-f111c6f9cebacc0201f59c25d6be0683014a3935.tar.gz
nixlib-f111c6f9cebacc0201f59c25d6be0683014a3935.tar.bz2
nixlib-f111c6f9cebacc0201f59c25d6be0683014a3935.tar.lz
nixlib-f111c6f9cebacc0201f59c25d6be0683014a3935.tar.xz
nixlib-f111c6f9cebacc0201f59c25d6be0683014a3935.tar.zst
nixlib-f111c6f9cebacc0201f59c25d6be0683014a3935.zip
llvmPackages_10: copy llvmPackages_9
* starting with rc2
* make `lldb` compilable again on Darwin
* separate out manpage creation for `lldb` into a new derivation
* minor tweaks to the patching of sources,
  some of which are backportable to earlier versions
Diffstat (limited to 'pkgs/development/compilers/llvm/10/lldb-procfs.patch')
-rw-r--r--pkgs/development/compilers/llvm/10/lldb-procfs.patch31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/development/compilers/llvm/10/lldb-procfs.patch b/pkgs/development/compilers/llvm/10/lldb-procfs.patch
new file mode 100644
index 000000000000..b075dbaeee0a
--- /dev/null
+++ b/pkgs/development/compilers/llvm/10/lldb-procfs.patch
@@ -0,0 +1,31 @@
+--- a/source/Plugins/Process/Linux/Procfs.h
++++ b/source/Plugins/Process/Linux/Procfs.h
+@@ -11,21 +11,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