Jason Merrill <jason@yorick.cygnus.com>

* scripttempl/v850.sc: Add initp support.
This commit is contained in:
Richard Henderson 1999-06-02 20:47:23 +00:00
parent 2581206fa2
commit 4305932a21
2 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,7 @@
1999-06-02 Jason Merrill <jason@yorick.cygnus.com>
* scripttempl/v850.sc: Add initp support.
1999-06-02 Nick Clifton <nickc@cygnus.com>
* emultempl/pe.em: Rename global arm interworking functions to

View File

@ -94,13 +94,17 @@ SECTIONS
.data1 : { *(.data1) }
.ctors : {
${RELOCATING+___ctors = .;}
KEEP (*(.ctors))
KEEP (*(EXCLUDE_FILE (*crtend.o) .ctors))
KEEP (*(SORT(.ctors.*)))
KEEP (*crtend(.ctors))
${RELOCATING+___ctors_end = .;}
}
.dtors : {
${RELOCATING+___dtors = .;}
KEEP (*(.dtors))
KEEP (*(EXCLUDE_FILE (*crtend.o) .dtors))
KEEP (*(SORT(.dtors.*)))
KEEP (*crtend.o(.dtors))
${RELOCATING+___dtors_end = .;}
}