diff options
author | John Gilmore <gnu@cygnus> | 1991-10-04 08:28:03 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1991-10-04 08:28:03 +0000 |
commit | 89cbb7064f1c7ab461817f488790d0433ed4694f (patch) | |
tree | e1bd730059b346c3d614e1701abd1e588c8c24e4 /include/sysdep.h | |
parent | 76d3134876de33721ccf7fe333a3e3481ab21291 (diff) | |
download | gdb-89cbb7064f1c7ab461817f488790d0433ed4694f.zip gdb-89cbb7064f1c7ab461817f488790d0433ed4694f.tar.gz gdb-89cbb7064f1c7ab461817f488790d0433ed4694f.tar.bz2 |
Add 386 Mach host support.
Diffstat (limited to 'include/sysdep.h')
-rwxr-xr-x | include/sysdep.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/sysdep.h b/include/sysdep.h index 43f49b6..f2c8d1d 100755 --- a/include/sysdep.h +++ b/include/sysdep.h @@ -56,6 +56,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #define ULTRA3_SYS 20 /* NYU Ultracomputer */ #define NEWSOS3_SYS 21 /* Sony NewsOS 3.x (bsd-4.3 based) */ #define AMIX_SYS 22 /* Amiga Unix */ +#define i386_MACH_SYS 23 /* Mach on Intel 386 */ #include <ansidecl.h> @@ -163,4 +164,8 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include <sys/h-amix.h> #endif +#if HOST_SYS == i386_MACH_SYS +#include <sys/h-i386mach.h> +#endif + #endif /* _SYSDEP_H */ |