mirror of
https://github.com/deadw00d/AROS.git
synced 2025-11-23 04:05:01 +00:00
15 lines
179 B
Plaintext
15 lines
179 B
Plaintext
SECTIONS
|
|
{
|
|
.text : {
|
|
*(.text .text.* .fixup .rodata .rodata.* .data .data.* .sdata*)
|
|
}
|
|
|
|
_EDATA = .;
|
|
.bss : {
|
|
*(.bss)
|
|
*(.bss.*)
|
|
*(COMMON)
|
|
}
|
|
_END = .;
|
|
}
|