Mon Nov 25 18:28:40 1991 Steve Chamberlain (sac at cygnus.com)
* config.h: h8 is now coff, not ieee * h8300hds.sc: reflect the same
This commit is contained in:
parent
05b4b0e70c
commit
cc5bda54de
2 changed files with 17 additions and 14 deletions
|
@ -53,7 +53,7 @@
|
||||||
#define GLD29K_TARGET "coff-a29k-big"
|
#define GLD29K_TARGET "coff-a29k-big"
|
||||||
#define GLDI386AOUT_TARGET "a.out-i386"
|
#define GLDI386AOUT_TARGET "a.out-i386"
|
||||||
#define GLDNEWS_TARGET "a.out-newsos3"
|
#define GLDNEWS_TARGET "a.out-newsos3"
|
||||||
#define H8300HDS_TARGET "ieee"
|
#define H8300HDS_TARGET "coff-h8300"
|
||||||
#define EBMON29K_TARGET "coff-a29k-big"
|
#define EBMON29K_TARGET "coff-a29k-big"
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,14 +1,17 @@
|
||||||
OUTPUT_FORMAT("ieee")
|
OUTPUT_FORMAT("coff-h8300")
|
||||||
OUTPUT_ARCH(h8300)
|
OUTPUT_ARCH(h8300)
|
||||||
|
|
||||||
SECTIONS
|
SECTIONS
|
||||||
{
|
{
|
||||||
.code 40:
|
.text 0:
|
||||||
{
|
{
|
||||||
|
*(.text)
|
||||||
*(.code)
|
|
||||||
*(.strings)
|
*(.strings)
|
||||||
}
|
}
|
||||||
|
.data . :
|
||||||
|
{
|
||||||
|
*(.data)
|
||||||
|
}
|
||||||
.bss . :
|
.bss . :
|
||||||
{
|
{
|
||||||
*(.bss)
|
*(.bss)
|
||||||
|
|
Loading…
Reference in a new issue