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
734 B

SEARCH_DIR(/lib)
SEARCH_DIR(/usr/lib)
SEARCH_DIR(/usr/local/lib)
SECTIONS
{
.text 0:
{
CREATE_OBJECT_SYMBOLS
*(.text)
}
.data SIZEOF(.text) + ADDR(.text) :
{
*(.data)
___DTOR_LIST__ = . ;
LONG((___CTOR_LIST__ - .) / 4 -2)
*(___DTOR_LIST__)
LONG(0)
___CTOR_LIST__ = . ;
LONG((___end_list__ - .) / 4 -2)
*(___CTOR_LIST__)
LONG(0)
___end_list__ = . ;
}
.bss SIZEOF(.data) + ADDR(.data) :
{
*(.bss)
[COMMON]
}
}