diff options
author | Per Bothner <per@bothner.com> | 1991-09-27 20:09:23 +0000 |
---|---|---|
committer | Per Bothner <per@bothner.com> | 1991-09-27 20:09:23 +0000 |
commit | e1e5fbfcbbf5c84d6751318e31101ff382ae284d (patch) | |
tree | 463886cee50ba923bffa8c54aa457ebe9e7ce6be /ld/config.h | |
parent | 9dcb30e3a2fadd0f52bf5c371d122b446aaa0e07 (diff) | |
download | gdb-e1e5fbfcbbf5c84d6751318e31101ff382ae284d.zip gdb-e1e5fbfcbbf5c84d6751318e31101ff382ae284d.tar.gz gdb-e1e5fbfcbbf5c84d6751318e31101ff382ae284d.tar.bz2 |
* ldlnk960.c: Use new naming convention for *.x{,u,r} include scripts.
* ldm88k.sc: "Clean up" script, so that ldm88kUr.sc and ldm88kr.sc
can be automatically generated.
* ldemul.c, configure.in, config.h, Makefile.in:
Add support for Sony NewsOS3.
* Makefile.in: Re-do the way ldemulation scipts and structures
are done. do we only need one or two files for each emulation
target (a TARGET.sc and optionally TARGET.c, if ldtemplate
isn't suitable). This gets rid of lots of extra source files.
Diffstat (limited to 'ld/config.h')
-rw-r--r-- | ld/config.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ld/config.h b/ld/config.h index 931c8bf..c3a2444 100644 --- a/ld/config.h +++ b/ld/config.h @@ -27,6 +27,7 @@ #define GLD68K_EMULATION_NAME "gld68k" #define GLD960_EMULATION_NAME "gld960" #define GLD29K_EMULATION_NAME "gld29k" +#define GLDNEWS_EMULATION_NAME "gldnews" #define LNK960_EMULATION_NAME "lnk960" /* Otherwise default to this emulation */ #ifndef DEFAULT_EMULATION @@ -47,6 +48,8 @@ #define VANILLA_TARGET "a.out-sunos-big" #define GLDM88KBCS_TARGET "m88kbcs" #define GLD29K_TARGET "coff-a29k-big" +#define GLDNEWS_TARGET "a.out-newsos3" + |