diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2001-03-19 03:43:50 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2001-03-19 03:43:50 +0000 |
commit | f89ee884857407955b79b5580cdea67ae557219c (patch) | |
tree | 45d686c4ec4a60cb7f91f0de6e446bffab941af8 /arch/mips | |
parent | 18f50189f7a5585576728b0764052cd5f0e3a2dc (diff) |
Workaround for ld bug.
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/ld.script.in | 4 |
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) } } |