diff options
author | John Gilmore <gnu@cygnus> | 1991-10-01 19:25:51 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1991-10-01 19:25:51 +0000 |
commit | 927edea6e7b545de8d69ecf5bdaeec2938ae6459 (patch) | |
tree | 0e143bde3fdf5de79523f8f8e078b9a308901458 /include/sysdep.h | |
parent | 30d2c06f1d2ed90c4e6cb098c9c0b0f271a08044 (diff) | |
download | gdb-927edea6e7b545de8d69ecf5bdaeec2938ae6459.zip gdb-927edea6e7b545de8d69ecf5bdaeec2938ae6459.tar.gz gdb-927edea6e7b545de8d69ecf5bdaeec2938ae6459.tar.bz2 |
* bfd.h, elf-common.h, elf-external.h, elf-internal.h:
Add preliminary ELF support, sufficient for GDB, from Fred Fish.
* sysdep.h, sys/h-amix.h: Support Amiga SVR4.
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 db042b2..43f49b6 100755 --- a/include/sysdep.h +++ b/include/sysdep.h @@ -55,6 +55,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #define HP300BSD_SYS 19 #define ULTRA3_SYS 20 /* NYU Ultracomputer */ #define NEWSOS3_SYS 21 /* Sony NewsOS 3.x (bsd-4.3 based) */ +#define AMIX_SYS 22 /* Amiga Unix */ #include <ansidecl.h> @@ -158,4 +159,8 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include <sys/h-ultra3.h> #endif +#if HOST_SYS == AMIX_SYS +#include <sys/h-amix.h> +#endif + #endif /* _SYSDEP_H */ |