Dirk Mueller 2014-08-17 22:01:57 +00:00 committed by Git OBS Bridge
parent 33b69a3c19
commit 5bb1319931

View File

@ -3760,7 +3760,7 @@ Index: coregrind/Makefile.am
=================================================================== ===================================================================
--- coregrind/Makefile.am.orig --- coregrind/Makefile.am.orig
+++ coregrind/Makefile.am +++ coregrind/Makefile.am
@@ -314,6 +315,7 @@ COREGRIND_SOURCES_COMMON = \ @@ -314,6 +314,7 @@ COREGRIND_SOURCES_COMMON = \
m_dispatch/dispatch-ppc32-linux.S \ m_dispatch/dispatch-ppc32-linux.S \
m_dispatch/dispatch-ppc64-linux.S \ m_dispatch/dispatch-ppc64-linux.S \
m_dispatch/dispatch-arm-linux.S \ m_dispatch/dispatch-arm-linux.S \
@ -3768,7 +3768,7 @@ Index: coregrind/Makefile.am
m_dispatch/dispatch-s390x-linux.S \ m_dispatch/dispatch-s390x-linux.S \
m_dispatch/dispatch-mips32-linux.S \ m_dispatch/dispatch-mips32-linux.S \
m_dispatch/dispatch-mips64-linux.S \ m_dispatch/dispatch-mips64-linux.S \
@@ -330,6 +332,7 @@ COREGRIND_SOURCES_COMMON = \ @@ -330,6 +331,7 @@ COREGRIND_SOURCES_COMMON = \
m_gdbserver/valgrind-low-x86.c \ m_gdbserver/valgrind-low-x86.c \
m_gdbserver/valgrind-low-amd64.c \ m_gdbserver/valgrind-low-amd64.c \
m_gdbserver/valgrind-low-arm.c \ m_gdbserver/valgrind-low-arm.c \
@ -3776,7 +3776,7 @@ Index: coregrind/Makefile.am
m_gdbserver/valgrind-low-ppc32.c \ m_gdbserver/valgrind-low-ppc32.c \
m_gdbserver/valgrind-low-ppc64.c \ m_gdbserver/valgrind-low-ppc64.c \
m_gdbserver/valgrind-low-s390x.c \ m_gdbserver/valgrind-low-s390x.c \
@@ -353,6 +356,7 @@ COREGRIND_SOURCES_COMMON = \ @@ -353,6 +355,7 @@ COREGRIND_SOURCES_COMMON = \
m_sigframe/sigframe-ppc32-linux.c \ m_sigframe/sigframe-ppc32-linux.c \
m_sigframe/sigframe-ppc64-linux.c \ m_sigframe/sigframe-ppc64-linux.c \
m_sigframe/sigframe-arm-linux.c \ m_sigframe/sigframe-arm-linux.c \
@ -3784,7 +3784,7 @@ Index: coregrind/Makefile.am
m_sigframe/sigframe-s390x-linux.c \ m_sigframe/sigframe-s390x-linux.c \
m_sigframe/sigframe-mips32-linux.c \ m_sigframe/sigframe-mips32-linux.c \
m_sigframe/sigframe-mips64-linux.c \ m_sigframe/sigframe-mips64-linux.c \
@@ -363,6 +367,7 @@ COREGRIND_SOURCES_COMMON = \ @@ -363,6 +366,7 @@ COREGRIND_SOURCES_COMMON = \
m_syswrap/syscall-ppc32-linux.S \ m_syswrap/syscall-ppc32-linux.S \
m_syswrap/syscall-ppc64-linux.S \ m_syswrap/syscall-ppc64-linux.S \
m_syswrap/syscall-arm-linux.S \ m_syswrap/syscall-arm-linux.S \
@ -3792,7 +3792,7 @@ Index: coregrind/Makefile.am
m_syswrap/syscall-s390x-linux.S \ m_syswrap/syscall-s390x-linux.S \
m_syswrap/syscall-mips32-linux.S \ m_syswrap/syscall-mips32-linux.S \
m_syswrap/syscall-mips64-linux.S \ m_syswrap/syscall-mips64-linux.S \
@@ -378,6 +383,7 @@ COREGRIND_SOURCES_COMMON = \ @@ -378,6 +382,7 @@ COREGRIND_SOURCES_COMMON = \
m_syswrap/syswrap-ppc32-linux.c \ m_syswrap/syswrap-ppc32-linux.c \
m_syswrap/syswrap-ppc64-linux.c \ m_syswrap/syswrap-ppc64-linux.c \
m_syswrap/syswrap-arm-linux.c \ m_syswrap/syswrap-arm-linux.c \
@ -6509,3 +6509,16 @@ Index: Makefile.vex.am
priv/host_s390_defs.c \ priv/host_s390_defs.c \
priv/host_s390_isel.c \ priv/host_s390_isel.c \
priv/s390_disasm.c \ priv/s390_disasm.c \
Index: coregrind/vgdb.c
===================================================================
--- coregrind/vgdb.c.orig
+++ coregrind/vgdb.c
@@ -80,7 +80,7 @@
can be "waken up". PTRACEINVOKER implies some architecture
specific code and/or some OS specific code. */
#if defined(VGA_arm) || defined(VGA_x86) || defined(VGA_amd64) \
- || defined(VGA_ppc32) || defined(VGA_ppc64) || defined(VGA_s390x) \
+ || defined(VGA_ppc32) || defined(VGA_ppc64le) || defined(VGA_ppc64be) || defined(VGA_s390x) \
|| defined(VGA_mips32) || defined(VGA_mips64)
#define PTRACEINVOKER
#else