You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
315 B
Plaintext

OUTPUT_ARCH(mips)
ENTRY(_start)
EXTERN(_start)
SECTIONS
{
.text :
{
. = ALIGN(4096);
*(.reginfo)
*(.text)
*(.rodata*)
*(.data*)
*(.sdata*)
*(.got2)
*(.bss)
*(.sbss)
*(.pdr)
}
/DISCARD/ :
{
*(.comment)
*(.note.GNU-stack)
*(.gnu.attributes)
}
}