From 4305932a214c616b5be37859aa6fcfdce20d3e94 Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Wed, 2 Jun 1999 20:47:23 +0000 Subject: [PATCH] Jason Merrill * scripttempl/v850.sc: Add initp support. --- ld/ChangeLog | 4 ++++ ld/scripttempl/v850.sc | 8 ++++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/ld/ChangeLog b/ld/ChangeLog index c73a3df..2a563fe 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,7 @@ +1999-06-02 Jason Merrill + + * scripttempl/v850.sc: Add initp support. + 1999-06-02 Nick Clifton * emultempl/pe.em: Rename global arm interworking functions to diff --git a/ld/scripttempl/v850.sc b/ld/scripttempl/v850.sc index 6b2f7e5..0a20954 100644 --- a/ld/scripttempl/v850.sc +++ b/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 = .;} } -- 2.7.4