summaryrefslogtreecommitdiffstats
path: root/arch/mips/ld.script.in
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2001-03-19 03:43:50 +0000
committerRalf Baechle <ralf@linux-mips.org>2001-03-19 03:43:50 +0000
commitf89ee884857407955b79b5580cdea67ae557219c (patch)
tree45d686c4ec4a60cb7f91f0de6e446bffab941af8 /arch/mips/ld.script.in
parent18f50189f7a5585576728b0764052cd5f0e3a2dc (diff)
Workaround for ld bug.
Diffstat (limited to 'arch/mips/ld.script.in')
-rw-r--r--arch/mips/ld.script.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/mips/ld.script.in b/arch/mips/ld.script.in
index dcf8b7346..94b465b33 100644
--- a/arch/mips/ld.script.in
+++ b/arch/mips/ld.script.in
@@ -115,6 +115,8 @@ SECTIONS
*(.exitcall.exit)
}
+ /* This is the MIPS specific mdebug section. */
+ .mdebug : { *(.mdebug) }
/* These are needed for ELF backends which have not yet been
converted to the new style linker. */
.stab 0 : { *(.stab) }
@@ -132,4 +134,6 @@ SECTIONS
/* These must appear regardless of . */
.gptab.sdata : { *(.gptab.data) *(.gptab.sdata) }
.gptab.sbss : { *(.gptab.bss) *(.gptab.sbss) }
+ .comment : { *(.comment) }
+ .note : { *(.note) }
}