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