mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +08:00
12 lines
126 B
Perl
12 lines
126 B
Perl
|
SECTIONS {
|
||
|
.text : {
|
||
|
*(.text)
|
||
|
}
|
||
|
. = ALIGN (0x1000);
|
||
|
.data : {
|
||
|
_data_start = .;
|
||
|
*(.data)
|
||
|
}
|
||
|
/DISCARD/ : { *(.*) }
|
||
|
}
|