mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-24 12:35:55 +08:00
8 lines
116 B
Perl
8 lines
116 B
Perl
|
_START = DEFINED(_START) ? _START : 0x9000000;
|
||
|
SECTIONS
|
||
|
{
|
||
|
. = _START;
|
||
|
.text : {*(.text)}
|
||
|
/DISCARD/ : {*(*)}
|
||
|
}
|