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:
Diffstat (limited to 'libgloss/i386/cygmon.ld')
-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)