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.
This commit is contained in:
parent
d61a06dd52
commit
61bbf8b2b7
|
@ -1,3 +1,11 @@
|
|||
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.
|
||||
|
||||
2003-07-14 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
|
||||
|
||||
* m32r/configure.in: fixed bug to delete ../config-ml.in.
|
||||
|
|
|
@ -52,6 +52,15 @@ SECTIONS
|
|||
.rdata : {
|
||||
*(.rdata)
|
||||
}
|
||||
.rodata : {
|
||||
*(.rodata)
|
||||
}
|
||||
.eh_frame :
|
||||
{
|
||||
PROVIDE (__EH_FRAME_BEGIN__ = .);
|
||||
*(.eh_frame)
|
||||
PROVIDE (__EH_FRAME_END__ = .);
|
||||
}
|
||||
_fdata = ALIGN(16);
|
||||
.data : {
|
||||
*(.data)
|
||||
|
|
Loading…
Reference in New Issue