mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-13 09:09:01 -04:00
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 :
|
|
{
|
|
}
|
|
}
|
|
|