Index: libc/arch/mips32/Makefile.inc
===================================================================
--- libc/arch/mips32/Makefile.inc	(revision 1a030b81c465d23c2fff25eaf91615fbf427c804)
+++ libc/arch/mips32/Makefile.inc	(revision 8286c3baa7ed9a56bfa0b25632208c2a0724d8a4)
@@ -35,2 +35,5 @@
 
 ARCH_SOURCES += arch/$(ARCH)/src/syscall.c
+
+LFLAGS += -N
+
Index: libc/arch/mips32/_link.ld.in
===================================================================
--- libc/arch/mips32/_link.ld.in	(revision 1a030b81c465d23c2fff25eaf91615fbf427c804)
+++ libc/arch/mips32/_link.ld.in	(revision 8286c3baa7ed9a56bfa0b25632208c2a0724d8a4)
@@ -1,8 +1,9 @@
-OUTPUT_FORMAT(binary)
 STARTUP(../libc/arch/ARCH/src/entry.o)
 ENTRY(__entry)
 
 SECTIONS {
- .text 0x00004000 : {
- }
+	. = 0x4000;
+	.image : SUBALIGN(0x4000) {
+		*(*);
+	}
 }
