From c20ec07b9a527782998d094dd3099b7f6c48fd8e Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Fri, 23 Mar 2001 23:05:07 +0000 Subject: [PATCH] Support the GCC flags '-ffunction-sections' and '-fdata-sections'. Set the VMA of STABS sections to zero. --- ld/ChangeLog | 5 +++++ ld/scripttempl/i386go32.sc | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/ld/ChangeLog b/ld/ChangeLog index 8ce54f8d475..9f8c66b8382 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2001-03-23 Mark Elbrecht + + * scripttempl/i386go32.sc: Support the GCC flags '-ffunction-sections' + and '-fdata-sections'. Set the VMA of STABS sections to zero. + 2001-03-17 Ulrich Drepper * emultmpl/elf32.em (gld${EMULATION_NAME}_search_needed): If NAME diff --git a/ld/scripttempl/i386go32.sc b/ld/scripttempl/i386go32.sc index ac67b92296c..482a8cbd885 100644 --- a/ld/scripttempl/i386go32.sc +++ b/ld/scripttempl/i386go32.sc @@ -23,6 +23,7 @@ SECTIONS { .text ${RELOCATING+ ${TARGET_PAGE_SIZE}+SIZEOF_HEADERS} : { *(.text) + ${RELOCATING+*(.text.*)} ${RELOCATING+*(.gnu.linkonce.t*)} *(.const*) *(.ro*) @@ -40,6 +41,7 @@ SECTIONS *(.dtor) djgpp_last_dtor = . ;} *(.data) + ${RELOCATING+*(.data.*)} ${RELOCATING+*(.gcc_exc*)} ${RELOCATING+___EH_FRAME_BEGIN__ = . ;} @@ -60,6 +62,9 @@ SECTIONS ${RELOCATING+ end = . ; PROVIDE(_end = .) ;} ${RELOCATING+ . = ALIGN(${SEGMENT_SIZE});} } + /* Stabs debugging sections. */ + .stab 0 : { *(.stab) } + .stabstr 0 : { *(.stabstr) } /* DWARF 2 */ .debug_aranges 0 : { *(.debug_aranges) } .debug_pubnames 0 : { *(.debug_pubnames) } -- 2.30.2