mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-23 19:50:13 +08:00
2003-11-09 Andrew Cagney <cagney@redhat.com>
* config/s390/s390.mh (XM_FILE, XM_CLIBS): Delete macros. * config/s390/nm-linux.h (KERNEL_U_ADDR): Define. * config/s390/xm-linux.h: Delete file. * config/m88k/xm-delta88v4.h: Delete stray.
This commit is contained in:
@ -1,5 +1,10 @@
|
|||||||
2003-11-09 Andrew Cagney <cagney@redhat.com>
|
2003-11-09 Andrew Cagney <cagney@redhat.com>
|
||||||
|
|
||||||
|
* config/s390/s390.mh (XM_FILE, XM_CLIBS): Delete macros.
|
||||||
|
* config/s390/nm-linux.h (KERNEL_U_ADDR): Define.
|
||||||
|
* config/s390/xm-linux.h: Delete file.
|
||||||
|
* config/m88k/xm-delta88v4.h: Delete stray.
|
||||||
|
|
||||||
* Makefile.in (arch-utils.o): Update dependencies.
|
* Makefile.in (arch-utils.o): Update dependencies.
|
||||||
* arch-utils.c: Include "osabi.h".
|
* arch-utils.c: Include "osabi.h".
|
||||||
(gdbarch_info_fill): New function.
|
(gdbarch_info_fill): New function.
|
||||||
|
@ -1,22 +0,0 @@
|
|||||||
/* Host machine description for Motorola Delta 88 box, for GDB.
|
|
||||||
Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1993
|
|
||||||
Free Software Foundation, Inc.
|
|
||||||
|
|
||||||
This file is part of GDB.
|
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation; either version 2 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this program; if not, write to the Free Software
|
|
||||||
Foundation, Inc., 59 Temple Place - Suite 330,
|
|
||||||
Boston, MA 02111-1307, USA. */
|
|
||||||
|
|
||||||
#include "config/xm-sysv4.h"
|
|
@ -27,6 +27,10 @@
|
|||||||
|
|
||||||
#include "config/nm-linux.h"
|
#include "config/nm-linux.h"
|
||||||
|
|
||||||
|
/* This is the amount to subtract from u.u_ar0
|
||||||
|
to get the offset in the core file of the register values. */
|
||||||
|
#define KERNEL_U_ADDR 0x0
|
||||||
|
|
||||||
#define REGISTER_U_ADDR(addr, blockend, regno) \
|
#define REGISTER_U_ADDR(addr, blockend, regno) \
|
||||||
(addr) = s390_register_u_addr((blockend),(regno));
|
(addr) = s390_register_u_addr((blockend),(regno));
|
||||||
extern int s390_register_u_addr (int, int);
|
extern int s390_register_u_addr (int, int);
|
||||||
|
@ -1,13 +1,6 @@
|
|||||||
# Host: S390, running Linux
|
# Host: S390, running Linux
|
||||||
|
|
||||||
XM_FILE= xm-linux.h
|
|
||||||
XM_CLIBS=
|
|
||||||
|
|
||||||
NAT_FILE= nm-linux.h
|
NAT_FILE= nm-linux.h
|
||||||
NATDEPFILES= infptrace.o inftarg.o fork-child.o corelow.o s390-nat.o \
|
NATDEPFILES= infptrace.o inftarg.o fork-child.o corelow.o s390-nat.o \
|
||||||
core-aout.o core-regset.o linux-proc.o gcore.o thread-db.o lin-lwp.o \
|
core-aout.o core-regset.o linux-proc.o gcore.o thread-db.o lin-lwp.o \
|
||||||
proc-service.o linux-nat.o
|
proc-service.o linux-nat.o
|
||||||
LOADLIBES = -ldl -rdynamic
|
LOADLIBES = -ldl -rdynamic
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,30 +0,0 @@
|
|||||||
/* Native support for GNU/Linux, for GDB, the GNU debugger.
|
|
||||||
Copyright 2001 Free Software Foundation, Inc.
|
|
||||||
Contributed by D.J. Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com)
|
|
||||||
for IBM Deutschland Entwicklung GmbH, IBM Corporation.
|
|
||||||
|
|
||||||
This file is part of GDB.
|
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation; either version 2 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this program; if not, write to the Free Software
|
|
||||||
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
||||||
02111-1307, USA. */
|
|
||||||
|
|
||||||
#ifndef XM_LINUX_H
|
|
||||||
#define XM_LINUX_H
|
|
||||||
|
|
||||||
/* This is the amount to subtract from u.u_ar0
|
|
||||||
to get the offset in the core file of the register values. */
|
|
||||||
#define KERNEL_U_ADDR 0x0
|
|
||||||
|
|
||||||
#endif /* #ifndef XM_LINUX_H */
|
|
Reference in New Issue
Block a user