* i386/cygmon.ld (.text): Fix alignment.

(.rodata): Handle .rodata.* sections.
This commit is contained in:
Corinna Vinschen 2004-08-25 16:30:16 +00:00
parent 3029be00db
commit 5796021e86
2 changed files with 7 additions and 0 deletions

View File

@ -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> 2004-06-27 Hideki Iwamoto <h-iwamoto@kit.hi-ho.ne.jp>
* Makefile.in: Support $(DESTDIR). * Makefile.in: Support $(DESTDIR).

View File

@ -34,6 +34,7 @@ SECTIONS
*(.rel.sdata) *(.rel.sdata)
PROVIDE (__runtime_reloc_stop = .); PROVIDE (__runtime_reloc_stop = .);
*(.fini) *(.fini)
. = ALIGN(4);
__CTOR_LIST__ = .; __CTOR_LIST__ = .;
CONSTRUCTORS CONSTRUCTORS
LONG(-1) LONG(-1)
@ -54,6 +55,7 @@ SECTIONS
} }
.rodata : { .rodata : {
*(.rodata) *(.rodata)
*(.rodata.*)
} }
.eh_frame : .eh_frame :
{ {