patches/gdb/6.4/400-mips-coredump.patch-2.4.23-29
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Jun 24 16:24:09 2008 +0000 (2008-06-24)
changeset 611 eac4dc8da8a9
permissions -rw-r--r--
New patches from Ioannis E. VENETIS to allow building more up-to-date Alpha x-compilers.
Some patches are still missing, though.
See: http://sourceware.org/ml/libc-help/2008-06/msg00061.html

/trunk/patches/glibc/2.5.1/270-glibc-alpha-cfi.patch | 25 25 0 0 ++++++++++
/trunk/patches/glibc/2.5.1/280-glibc-alpha-sigsuspend.patch | 24 24 0 0 ++++++++++
/trunk/patches/glibc/2.5/270-glibc-alpha-cfi.patch | 25 25 0 0 ++++++++++
/trunk/patches/glibc/2.5/280-glibc-alpha-sigsuspend.patch | 24 24 0 0 ++++++++++
/trunk/patches/glibc/linuxthreads-2.3.6/270-glibc-linuxthreads-alpha-cfi.patch | 25 25 0 0 ++++++++++
/trunk/patches/gcc/4.2.0/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.2.1/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.3.0/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.2.2/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.3.1/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.2.3/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
11 files changed, 225 insertions(+)
     1 Sometime around 2.4.22-23, the mips pt_regs.h fields were reordered, breaking
     2 coredump handling by gdb for current kernels.  Update the hardcoded constants
     3 to reflect the change.
     4 --- gdb-6.2.1/gdb/mips-linux-tdep.c-orig	2004-10-29 14:23:55.000000000 -0500
     5 +++ gdb-6.2.1/gdb/mips-linux-tdep.c	2004-10-29 14:26:44.000000000 -0500
     6 @@ -53,12 +53,22 @@
     7  
     8  #define EF_REG0			6
     9  #define EF_REG31		37
    10 +
    11 +#if 0
    12  #define EF_LO			38
    13  #define EF_HI			39
    14  #define EF_CP0_EPC		40
    15  #define EF_CP0_BADVADDR		41
    16  #define EF_CP0_STATUS		42
    17  #define EF_CP0_CAUSE		43
    18 +#else
    19 +#define EF_CP0_STATUS		38
    20 +#define EF_LO			39
    21 +#define EF_HI			40
    22 +#define EF_CP0_BADVADDR		41
    23 +#define EF_CP0_CAUSE		42
    24 +#define EF_CP0_EPC		43
    25 +#endif
    26  
    27  #define EF_SIZE			180
    28