diff options
Diffstat (limited to 'arch')
-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) } } |