From 3637916721826ea3ad0a19ade02278c9137861be Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Wed, 23 Oct 2002 11:21:27 +0000 Subject: [PATCH] (__RUNTIME_PSEUDO_RELOC_LIST__, __RUNTIME_PSEUDO_RELOC_LIST_END__): Add only when relocating. --- ld/ChangeLog | 5 +++++ ld/scripttempl/pe.sc | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/ld/ChangeLog b/ld/ChangeLog index 93e37d9..2a4080b 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2002-10-21 Danny Smith + + * scripttempl/pe.sc (__RUNTIME_PSEUDO_RELOC_LIST__, + __RUNTIME_PSEUDO_RELOC_LIST_END__): Add only when relocating. + 2002-10-22 Alexandre Oliva * emulparams/elf32bmipn32-defs.sh: Set ELFSIZE according to diff --git a/ld/scripttempl/pe.sc b/ld/scripttempl/pe.sc index 0ca777f..a22611c 100644 --- a/ld/scripttempl/pe.sc +++ b/ld/scripttempl/pe.sc @@ -85,11 +85,11 @@ SECTIONS *(.rdata) ${R_RDATA} *(.eh_frame) - ___RUNTIME_PSEUDO_RELOC_LIST__ = .; - __RUNTIME_PSEUDO_RELOC_LIST__ = .; + ${RELOCATING+___RUNTIME_PSEUDO_RELOC_LIST__ = .;} + ${RELOCATING+__RUNTIME_PSEUDO_RELOC_LIST__ = .;} *(.rdata_runtime_pseudo_reloc) - ___RUNTIME_PSEUDO_RELOC_LIST_END__ = .; - __RUNTIME_PSEUDO_RELOC_LIST_END__ = .; + ${RELOCATING+___RUNTIME_PSEUDO_RELOC_LIST_END__ = .;} + ${RELOCATING+__RUNTIME_PSEUDO_RELOC_LIST_END__ = .;} } .pdata ${RELOCATING+BLOCK(__section_alignment__)} : -- 2.7.4