aboutsummaryrefslogtreecommitdiff
path: root/gdb/config
diff options
context:
space:
mode:
authorJim Kingdon <jkingdon@engr.sgi.com>1993-11-15 23:29:10 +0000
committerJim Kingdon <jkingdon@engr.sgi.com>1993-11-15 23:29:10 +0000
commit5a356fb84f404a58dbc995e4c52ded873f25e238 (patch)
treeb08f28ec9602057d3c9042d7a0d4a9baea0fb3b1 /gdb/config
parent863099f41e81cdb0797878e48d44c205576d59de (diff)
downloadgdb-5a356fb84f404a58dbc995e4c52ded873f25e238.zip
gdb-5a356fb84f404a58dbc995e4c52ded873f25e238.tar.gz
gdb-5a356fb84f404a58dbc995e4c52ded873f25e238.tar.bz2
* config/i386/linux.mh: Remove XM_CLIBS, TERMLIB, SYSV_DEFINE, and
REGEX. * config/i386/xm-linux.h: Don't include xm-i386v.h. Define HOST_BYTE_ORDER ourselves. Define HAVE_TERMIOS not HAVE_TERMIO. Define NEED_POSIX_SETPGID. Include unistd.h.
Diffstat (limited to 'gdb/config')
-rw-r--r--gdb/config/i386/xm-linux.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/gdb/config/i386/xm-linux.h b/gdb/config/i386/xm-linux.h
index 0e5b07f..3b09ac3 100644
--- a/gdb/config/i386/xm-linux.h
+++ b/gdb/config/i386/xm-linux.h
@@ -17,10 +17,14 @@ 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., 675 Mass Ave, Cambridge, MA 02139, USA. */
-#include "i386/xm-i386v.h"
+#define HOST_BYTE_ORDER LITTLE_ENDIAN
/* This is the amount to subtract from u.u_ar0
to get the offset in the core file of the register values. */
-#undef KERNEL_U_ADDR
#define KERNEL_U_ADDR 0x0
#define PSIGNAL_IN_SIGNAL_H
+
+#define NEED_POSIX_SETPGID
+
+/* Need R_OK etc, but USG isn't defined. */
+#include <unistd.h>