mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-09 04:21:49 +08:00
cbbdbb9f29
* ldmain.c: quit using exit * *.sc: use *(COMMON) rather than [COMMON] * ldlex.l, lexsup.c: much thinking moved from .l and put into .c, to allow preprocessing of .l file. * Makefile.in: New ldlex.l mangling * ldexp.c (fold_binary): perform expressions with % and / in integer. * ldfile.c (open_a): open archives on VMS in a special way * lderror.c: forgot to check in from a long while ago
28 lines
287 B
Scala
Executable File
28 lines
287 B
Scala
Executable File
OUTPUT_FORMAT("coff-a29k-big")
|
|
ENTRY(start)
|
|
|
|
SECTIONS {
|
|
.text 0x8000 :
|
|
{
|
|
*(.text);
|
|
_etext = . ;
|
|
}
|
|
.data 0x80002000 :
|
|
{
|
|
*(.data);
|
|
*(.mstack);
|
|
*(.shbss);
|
|
*(.rstack);
|
|
*(.mstack);
|
|
CONSTRUCTORS
|
|
}
|
|
.bss . :
|
|
{
|
|
|
|
*(COMMON)
|
|
*(.bss);
|
|
_end = .;
|
|
}
|
|
|
|
}
|