Browse Source

Jason Merrill <jason@yorick.cygnus.com>

* scripttempl/v850.sc: Add initp support.
gdb-premipsmulti-2000-06-06-branch
Richard Henderson 27 years ago
parent
commit
4305932a21
  1. 4
      ld/ChangeLog
  2. 8
      ld/scripttempl/v850.sc

4
ld/ChangeLog

@ -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

8
ld/scripttempl/v850.sc

@ -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 = .;}
}

Loading…
Cancel
Save