diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2004-08-25 16:30:16 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2004-08-25 16:30:16 +0000 |
commit | 5796021e866211cc4661217ec37b234b334292d4 (patch) | |
tree | 37938b070d7b3df621767b75567e031ba23304b4 /libgloss | |
parent | 3029be00db95e1d3381c05d388b6d8f8cba71f15 (diff) | |
download | newlib-5796021e866211cc4661217ec37b234b334292d4.zip newlib-5796021e866211cc4661217ec37b234b334292d4.tar.gz newlib-5796021e866211cc4661217ec37b234b334292d4.tar.bz2 |
* i386/cygmon.ld (.text): Fix alignment.
(.rodata): Handle .rodata.* sections.
Diffstat (limited to 'libgloss')
-rw-r--r-- | libgloss/ChangeLog | 5 | ||||
-rw-r--r-- | libgloss/i386/cygmon.ld | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/libgloss/ChangeLog b/libgloss/ChangeLog index e67f5a1..2173807 100644 --- a/libgloss/ChangeLog +++ b/libgloss/ChangeLog @@ -1,3 +1,8 @@ +2004-08-25 Corinna Vinschen <vinschen@redhat.com> + + * i386/cygmon.ld (.text): Fix alignment. + (.rodata): Handle .rodata.* sections. + 2004-06-27 Hideki Iwamoto <h-iwamoto@kit.hi-ho.ne.jp> * Makefile.in: Support $(DESTDIR). diff --git a/libgloss/i386/cygmon.ld b/libgloss/i386/cygmon.ld index e3f5671..ae0d908 100644 --- a/libgloss/i386/cygmon.ld +++ b/libgloss/i386/cygmon.ld @@ -34,6 +34,7 @@ SECTIONS *(.rel.sdata) PROVIDE (__runtime_reloc_stop = .); *(.fini) + . = ALIGN(4); __CTOR_LIST__ = .; CONSTRUCTORS LONG(-1) @@ -54,6 +55,7 @@ SECTIONS } .rodata : { *(.rodata) + *(.rodata.*) } .eh_frame : { |