Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2003-08-08 20:00:13 +0400
committerJeff Johnston <jjohnstn@redhat.com>2003-08-08 20:00:13 +0400
commit61bbf8b2b7cbfd8d97d8d17eaad58c9fec91d64c (patch)
tree88567fe5062f1a488188f13da1fa63655d71aeef /libgloss/i386
parentd61a06dd5231c99632390da7aeb2cdab07e605d3 (diff)
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.ld11
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)