diff options
author | Ken Raeburn <raeburn@cygnus> | 1995-06-23 02:05:04 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1995-06-23 02:05:04 +0000 |
commit | a2fb6995e0cd664ca8240ddb80920327073b9331 (patch) | |
tree | 052e01e1929f87465c0871c5a44724186c545d7a /ld/scripttempl | |
parent | b0192f5129f4f428946624d85fbb20d4358646cd (diff) | |
download | gdb-a2fb6995e0cd664ca8240ddb80920327073b9331.zip gdb-a2fb6995e0cd664ca8240ddb80920327073b9331.tar.gz gdb-a2fb6995e0cd664ca8240ddb80920327073b9331.tar.bz2 |
msdos and moss code from Bryan Ford
Diffstat (limited to 'ld/scripttempl')
-rw-r--r-- | ld/scripttempl/.Sanitize | 1 | ||||
-rw-r--r-- | ld/scripttempl/i386msdos.sc | 40 |
2 files changed, 41 insertions, 0 deletions
diff --git a/ld/scripttempl/.Sanitize b/ld/scripttempl/.Sanitize index e060d5f..8e97c30 100644 --- a/ld/scripttempl/.Sanitize +++ b/ld/scripttempl/.Sanitize @@ -53,6 +53,7 @@ i386coff.sc i386pe.sc i386go32.sc i386lynx.sc +i386msdos.sc i960.sc m68kcoff.sc m68klynx.sc diff --git a/ld/scripttempl/i386msdos.sc b/ld/scripttempl/i386msdos.sc new file mode 100644 index 0000000..783f2d9 --- /dev/null +++ b/ld/scripttempl/i386msdos.sc @@ -0,0 +1,40 @@ +cat <<EOF +OUTPUT_FORMAT("${OUTPUT_FORMAT}") +OUTPUT_ARCH(${ARCH}) + +${RELOCATING+${LIB_SEARCH_DIRS}} +${STACKZERO+${RELOCATING+${STACKZERO}}} +SECTIONS +{ + ${RELOCATING+. = ${TEXT_START_ADDR};} + .text : + { + CREATE_OBJECT_SYMBOLS + *(.text) + ${RELOCATING+etext = .;} + ${RELOCATING+_etext = .;} + ${RELOCATING+__etext = .;} + ${PAD_TEXT+${RELOCATING+. = ${DATA_ALIGNMENT};}} + } + ${RELOCATING+. = ${DATA_ALIGNMENT};} + .rodata ${RELOCATING-0} : { *(.rodata) } + .data : + { + *(.data) + ${CONSTRUCTING+CONSTRUCTORS} + ${RELOCATING+edata = .;} + ${RELOCATING+_edata = .;} + ${RELOCATING+__edata = .;} + } + .bss : + { + ${RELOCATING+ _bss_start = .}; + ${RELOCATING+ __bss_start = .}; + *(.bss) + *(COMMON) + ${RELOCATING+end = ALIGN(4) }; + ${RELOCATING+_end = ALIGN(4) }; + ${RELOCATING+__end = ALIGN(4) }; + } +} +EOF |