You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
578 B

36 years ago
OUTPUT_ARCH(sparc)
OUTPUT_FORMAT("a.out-sunos-big")
SEARCH_DIR(/lib)
SEARCH_DIR(/usr/lib)
SEARCH_DIR(/usr/local/lib)
__DYNAMIC = 0;
SECTIONS
{
.text 0x2020 BLOCK(0x2000):
{
CREATE_OBJECT_SYMBOLS ;
*(.text);
_etext = ALIGN( 0x2000);
36 years ago
}
.data ALIGN(0x2000) :
{
*(.data);
CONSTRUCTORS;
36 years ago
_edata = .;
}
36 years ago
.bss SIZEOF(.data) + ADDR(.data) :
{
*(.bss)
[COMMON]
_end = .;
__end = .;
36 years ago
}
}