24 lines
187 B
Plaintext
24 lines
187 B
Plaintext
OUTPUT_ARCH(arm)
|
|
SECTIONS
|
|
{
|
|
.text :
|
|
{
|
|
*(.text)
|
|
*(.text.*)
|
|
*(.glue_7t) *(.glue_7)
|
|
}
|
|
. = ALIGN(16);
|
|
.data :
|
|
{
|
|
}
|
|
. = ALIGN(16);
|
|
.sbss :
|
|
{
|
|
}
|
|
. = ALIGN(16);
|
|
.bss :
|
|
{
|
|
}
|
|
}
|
|
|