OUTPUT_ARCH(mips) ENTRY(load_and_run) SECTIONS { . = BZ_TEXT_START; .text : { *(.text) *(.rodata) } .data : { *(.data) } .bss : { *(.bss) } }