diff options
author | Steve Chamberlain <sac@cygnus> | 1995-07-27 22:43:44 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1995-07-27 22:43:44 +0000 |
commit | 66a61efd3770f4bad13f08c4093bed73bbbb7dae (patch) | |
tree | 0963e7a709b43918543e5ada220e68d2f3a60ad2 /ld/scripttempl | |
parent | c32dc3904b5ff3298c004a84ac0802122e1ffeb3 (diff) | |
download | gdb-66a61efd3770f4bad13f08c4093bed73bbbb7dae.zip gdb-66a61efd3770f4bad13f08c4093bed73bbbb7dae.tar.gz gdb-66a61efd3770f4bad13f08c4093bed73bbbb7dae.tar.bz2 |
Thu Jul 27 15:26:28 1995 steve chamberlain <sac@slash.cygnus.com>
* scripttempl/i386pe.sc: Cope with constructors.
* scripttempl/z8ksim.sc: Deleted.
* scripttempl/z8000.sc: Resurrected as this, but
can handle z8001 and z8002 formats.
* emulparams/z8ksim.sh: Deleted.
* emulparams/{z8001.sh, z8002.sh}: New files.
* config/z8ksim.mt: Deleted
* config/z8k-coff.mt: New, generates both emulations.
Diffstat (limited to 'ld/scripttempl')
-rw-r--r-- | ld/scripttempl/.Sanitize | 2 | ||||
-rw-r--r-- | ld/scripttempl/i386pe.sc | 2 | ||||
-rw-r--r-- | ld/scripttempl/z8000.sc (renamed from ld/scripttempl/z8ksim.sc) | 12 |
3 files changed, 9 insertions, 7 deletions
diff --git a/ld/scripttempl/.Sanitize b/ld/scripttempl/.Sanitize index 8e97c30..0cb1172 100644 --- a/ld/scripttempl/.Sanitize +++ b/ld/scripttempl/.Sanitize @@ -69,7 +69,7 @@ sparclynx.sc st2000.sc vanilla.sc w65.sc -z8ksim.sc +z8000.sc Things-to-lose: diff --git a/ld/scripttempl/i386pe.sc b/ld/scripttempl/i386pe.sc index 8923ad7..4219736 100644 --- a/ld/scripttempl/i386pe.sc +++ b/ld/scripttempl/i386pe.sc @@ -16,6 +16,8 @@ SECTIONS { ${RELOCATING+ *(.init);} *(.text) + ${CONSTRUCTING+ ___CTOR_LIST__ = .; LONG (-1); *(.ctor); LONG (0); } + ${CONSTRUCTING+ ___DTOR_LIST__ = .; LONG (-1); *(.dtor); LONG (0); } ${RELOCATING+ *(.fini);} ${RELOCATING+ etext = .}; } diff --git a/ld/scripttempl/z8ksim.sc b/ld/scripttempl/z8000.sc index e9627d8..2b87930 100644 --- a/ld/scripttempl/z8ksim.sc +++ b/ld/scripttempl/z8000.sc @@ -1,17 +1,17 @@ cat <<EOF OUTPUT_FORMAT("${OUTPUT_FORMAT}") -OUTPUT_ARCH(z8002) +OUTPUT_ARCH("${OUTPUT_ARCH}") ENTRY(_start) SECTIONS { -.text : { +.text ${BIG+ ${RELOCATING+ 0x0000000}} : { *(.text) *(.strings) *(.rdata) } -.ctors : +.ctors ${BIG+ ${RELOCATING+ 0x2000000}} : { ${RELOCATING+ ___ctors = . ; } *(.ctors); @@ -21,11 +21,11 @@ SECTIONS ${RELOCATING+ ___dtors_end = . ; } } -.data : { +.data ${BIG+ ${RELOCATING+ 0x3000000}} : { *(.data) } -.bss : +.bss ${BIG+ ${RELOCATING+ 0x4000000}} : { ${RELOCATING+ __start_bss = . ; } *(.bss); @@ -33,7 +33,7 @@ SECTIONS ${RELOCATING+ __end_bss = . ; } } -.heap : { +.heap ${BIG+ ${RELOCATING+ 0x5000000}} : { ${RELOCATING+ __start_heap = . ; } ${RELOCATING+ . = . + 20k ; } ${RELOCATING+ __end_heap = . ; } |