summaryrefslogtreecommitdiff
path: root/repo/gcc/0038-gcc-go-Disable-printing-of-unaccessible-ppc64-struct.patch
diff options
context:
space:
mode:
Diffstat (limited to 'repo/gcc/0038-gcc-go-Disable-printing-of-unaccessible-ppc64-struct.patch')
-rw-r--r--repo/gcc/0038-gcc-go-Disable-printing-of-unaccessible-ppc64-struct.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/repo/gcc/0038-gcc-go-Disable-printing-of-unaccessible-ppc64-struct.patch b/repo/gcc/0038-gcc-go-Disable-printing-of-unaccessible-ppc64-struct.patch
new file mode 100644
index 0000000..15acfdb
--- /dev/null
+++ b/repo/gcc/0038-gcc-go-Disable-printing-of-unaccessible-ppc64-struct.patch
@@ -0,0 +1,26 @@
+From 570cd2b596daf12e8dfe1a444fe405a7c26fc2bc Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?S=C3=B6ren=20Tempel?= <soeren+git@soeren-tempel.net>
+Date: Mon, 31 Aug 2020 20:26:56 +0200
+Subject: [PATCH] gcc-go: Disable printing of unaccessible ppc64 struct members
+
+These struct members do not seem to exist on musl.
+---
+ libgo/runtime/go-signal.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/libgo/runtime/go-signal.c b/libgo/runtime/go-signal.c
+index fd1c885f043..e845e453332 100644
+--- a/libgo/runtime/go-signal.c
++++ b/libgo/runtime/go-signal.c
+@@ -333,7 +333,7 @@ dumpregs(siginfo_t *info __attribute__((unused)), void *context __attribute__((u
+ runtime_printf("sp %X\n", m->sc_regs[30]);
+ runtime_printf("pc %X\n", m->sc_pc);
+ }
+-#elif defined(__PPC__) && defined(__LITTLE_ENDIAN__) && defined(__linux__)
++#elif defined(__PPC__) && defined(__LITTLE_ENDIAN__) && defined(__GLIBC__)
+ {
+ mcontext_t *m = &((ucontext_t*)(context))->uc_mcontext;
+ int i;
+--
+2.31.1
+