* i386/cygmon.ld (.text): Fix alignment.
(.rodata): Handle .rodata.* sections.
This commit is contained in:
parent
3029be00db
commit
5796021e86
|
@ -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).
|
||||||
|
|
|
@ -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 :
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue