diff options
author | David Edelsohn <dje.gcc@gmail.com> | 1996-04-30 03:33:23 +0000 |
---|---|---|
committer | David Edelsohn <dje.gcc@gmail.com> | 1996-04-30 03:33:23 +0000 |
commit | f2618f8252fd77391cbaefabce371dc9f96413e9 (patch) | |
tree | 13fe25c597cd6cadba7dfd920be4d82a02335f81 /ld/scripttempl/pe.sc | |
parent | aad0977925596c3e9baeb9c0d4d8a117911a06b5 (diff) | |
download | gdb-f2618f8252fd77391cbaefabce371dc9f96413e9.zip gdb-f2618f8252fd77391cbaefabce371dc9f96413e9.tar.gz gdb-f2618f8252fd77391cbaefabce371dc9f96413e9.tar.bz2 |
* scripttempl/pe.sc (.endjunk): Define __end__.
Diffstat (limited to 'ld/scripttempl/pe.sc')
-rw-r--r-- | ld/scripttempl/pe.sc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ld/scripttempl/pe.sc b/ld/scripttempl/pe.sc index 712c2c4..bd9f27e 100644 --- a/ld/scripttempl/pe.sc +++ b/ld/scripttempl/pe.sc @@ -48,7 +48,7 @@ SECTIONS - .edata BLOCK(__section_alignment__) : { + .edata BLOCK(__section_alignment__) : { *(.edata) ; } @@ -97,7 +97,9 @@ SECTIONS .endjunk BLOCK(__section_alignment__) : { + /* end is deprecated, don't use it */ ${RELOCATING+ end = .}; + ${RELOCATING+ __end__ = .}; } .stab BLOCK(__section_alignment__) ${RELOCATING+(NOLOAD)} : |