diff options
author | Nick Clifton <nickc@redhat.com> | 2009-04-16 15:39:48 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2009-04-16 15:39:48 +0000 |
commit | 20135e4cea8994900955e560910b2e675881fa95 (patch) | |
tree | f3e60cf7a267184a4d9ffef4f6ab0e54ceb599e9 /ld/scripttempl | |
parent | 335d71d67eab3d9e1cfdefc45af81fa65fbd5c8b (diff) | |
download | gdb-20135e4cea8994900955e560910b2e675881fa95.zip gdb-20135e4cea8994900955e560910b2e675881fa95.tar.gz gdb-20135e4cea8994900955e560910b2e675881fa95.tar.bz2 |
Add new binutils target: moxie
Diffstat (limited to 'ld/scripttempl')
-rw-r--r-- | ld/scripttempl/moxie.sc | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/ld/scripttempl/moxie.sc b/ld/scripttempl/moxie.sc new file mode 100644 index 0000000..f7d788f --- /dev/null +++ b/ld/scripttempl/moxie.sc @@ -0,0 +1,52 @@ +TORS=".tors : + { + ___ctors = . ; + *(.ctors) + ___ctors_end = . ; + ___dtors = . ; + *(.dtors) + ___dtors_end = . ; + } > ram" + +cat <<EOF +OUTPUT_FORMAT("${OUTPUT_FORMAT}") +OUTPUT_ARCH(${ARCH}) + +SECTIONS +{ + .text : + { + *(.text) + .init : { KEEP (*(.init)) } =0 + .fini : { KEEP (*(.fini)) } =0 + *(.strings) + ${RELOCATING+ _etext = . ; } + } ${RELOCATING+ > ram} + ${CONSTRUCTING+${TORS}} + .data : + { + *(.data) + ${RELOCATING+ _edata = . ; } + } ${RELOCATING+ > ram} + .bss : + { + ${RELOCATING+ _bss_start = . ; } + *(.bss) + *(COMMON) + ${RELOCATING+ _end = . ; } + } ${RELOCATING+ > ram} + .stack ${RELOCATING+ 0x30000 } : + { + ${RELOCATING+ _stack = . ; } + *(.stack) + } ${RELOCATING+ > ram} + .stab 0 ${RELOCATING+(NOLOAD)} : + { + *(.stab) + } + .stabstr 0 ${RELOCATING+(NOLOAD)} : + { + *(.stabstr) + } +} +EOF |