1OUTPUT_ARCH(mips)
2SECTIONS {
3	.text : {
4		startup = .;
5		*(.text)
6		*(.text.*)
7		*(.data)
8		*(.data.*)
9	}
10}
11