mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
25 lines
418 B
Python
25 lines
418 B
Python
|
|
||
|
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)
|
||
|
CONSTRUCTORS
|
||
|
___end_list__ = . ;
|
||
|
}
|
||
|
.bss SIZEOF(.data) + ADDR(.data) :
|
||
|
{
|
||
|
*(.bss)
|
||
|
[COMMON]
|
||
|
}
|
||
|
}
|
||
|
|