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
31 lines
511 B
Scala
Executable File
31 lines
511 B
Scala
Executable File
OUTPUT_FORMAT("a.out-newsos3")
|
|
OUTPUT_ARCH(m68k)
|
|
|
|
SEARCH_DIR(/lib)
|
|
SEARCH_DIR(/usr/lib)
|
|
SEARCH_DIR(/usr/local/lib)
|
|
__DYNAMIC = 0;
|
|
SECTIONS
|
|
{
|
|
.text 0:
|
|
{
|
|
CREATE_OBJECT_SYMBOLS
|
|
*(.text)
|
|
_etext = ALIGN(0x1000);
|
|
}
|
|
.data ALIGN(0x1000) :
|
|
{
|
|
*(.data)
|
|
CONSTRUCTORS;
|
|
_edata = .;
|
|
}
|
|
.bss SIZEOF(.data) + ADDR(.data) :
|
|
{
|
|
*(.bss)
|
|
*(COMMON)
|
|
_end = .;
|
|
__end = .;
|
|
}
|
|
}
|
|
|