diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2003-08-08 16:00:13 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2003-08-08 16:00:13 +0000 |
commit | 61bbf8b2b7cbfd8d97d8d17eaad58c9fec91d64c (patch) | |
tree | 88567fe5062f1a488188f13da1fa63655d71aeef /libgloss/i386 | |
parent | d61a06dd5231c99632390da7aeb2cdab07e605d3 (diff) | |
download | cygnal-61bbf8b2b7cbfd8d97d8d17eaad58c9fec91d64c.tar.gz cygnal-61bbf8b2b7cbfd8d97d8d17eaad58c9fec91d64c.tar.bz2 cygnal-61bbf8b2b7cbfd8d97d8d17eaad58c9fec91d64c.zip |
2003-08-08 Mark Salter <msalter@redhat.com>
* i386/cygmon.ld: Add 4 byte alignment to __CTOR_LIST__
Bernd Schmidt <bernds@redhat.com>
* i386/cygmon.ld: Add entry for .rodata.
Diffstat (limited to 'libgloss/i386')
-rw-r--r-- | libgloss/i386/cygmon.ld | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/libgloss/i386/cygmon.ld b/libgloss/i386/cygmon.ld index f5c506967..e3f567174 100644 --- a/libgloss/i386/cygmon.ld +++ b/libgloss/i386/cygmon.ld @@ -52,7 +52,16 @@ SECTIONS .rdata : { *(.rdata) } - _fdata = ALIGN(16); + .rodata : { + *(.rodata) + } + .eh_frame : + { + PROVIDE (__EH_FRAME_BEGIN__ = .); + *(.eh_frame) + PROVIDE (__EH_FRAME_END__ = .); + } + _fdata = ALIGN(16); .data : { *(.data) *(.gcc_except_table) |