From: Steve Chamberlain Date: Thu, 8 Jun 1995 21:19:31 +0000 (+0000) Subject: * emulparams/armpe.sh, scriptempl/armpe.sc: Add end and stack. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ba0784fe48b448739710c5443b655734cde5e664;p=binutils-gdb.git * emulparams/armpe.sh, scriptempl/armpe.sc: Add end and stack. --- diff --git a/ld/ChangeLog b/ld/ChangeLog index 85246d259d5..d0b0eedce3d 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,17 @@ +Thu Jun 8 14:17:33 1995 Steve Chamberlain + + * emulparams/armpe.sh, scriptempl/armpe.sc: Add end and stack. + +Mon Jun 5 02:16:24 1995 Ken Raeburn + + * configure.in (i[345]86-*-gnu*): Use GNU elf config. + +Thu May 25 11:49:28 1995 Michael Meissner + + From Andrew Cagney + * Makefile.in: Fixup more gotchas from renaming elf32ppcle to + elf32lppc. + Wed May 24 11:23:21 1995 Steve Chamberlain Add support for ARM-PE. diff --git a/ld/scripttempl/armpe.sc b/ld/scripttempl/armpe.sc index 6d7d45a42c0..56a945d3db0 100644 --- a/ld/scripttempl/armpe.sc +++ b/ld/scripttempl/armpe.sc @@ -20,11 +20,6 @@ SECTIONS ${RELOCATING+ etext = .}; } - .bss BLOCK(0x1000) : - { - *(.bss) - *(COMMON); - } .rdata BLOCK(0x1000) : { @@ -46,6 +41,7 @@ SECTIONS *(.idata$7) ; } + .CRT BLOCK(0x1000) : { *(.CRT$XCA) @@ -82,6 +78,13 @@ SECTIONS *(.drectve) ; } + .bss BLOCK(0x1000) : + { + *(.bss) + *(COMMON); + end = . ; + } + .stab 0 ${RELOCATING+(NOLOAD)} : { [ .stab ] @@ -91,5 +94,6 @@ SECTIONS { [ .stabstr ] } + stack = 0x800000 ; } EOF