1999-07-21 Mark Elbrecht <snowball3@bigfoot.com>
* scripttempl/i386go32.sc: Add handling of linkonce sections.
This commit is contained in:
parent
e9f56b1d20
commit
5a1bd109d4
2 changed files with 7 additions and 2 deletions
|
@ -1,5 +1,7 @@
|
|||
1999-07-21 Mark Elbrecht <snowball3@bigfoot.com>
|
||||
|
||||
* scripttempl/i386go32.sc: Add handling of linkonce sections.
|
||||
|
||||
* configure.bat: Remove; obsolete.
|
||||
* emulparams/go32.sh: Remove; obsolete.
|
||||
* scripttempl/go32coff.sc: Remove; obsolete.
|
||||
|
|
|
@ -17,8 +17,10 @@ SECTIONS
|
|||
{
|
||||
.text ${RELOCATING+ ${TARGET_PAGE_SIZE}+SIZEOF_HEADERS} : {
|
||||
*(.text)
|
||||
${RELOCATING+*(.gnu.linkonce.t*)}
|
||||
*(.const*)
|
||||
*(.ro*)
|
||||
${RELOCATING+*(.gnu.linkonce.r*)}
|
||||
${RELOCATING+etext = . ; _etext = .};
|
||||
${RELOCATING+. = ALIGN(${SEGMENT_SIZE});}
|
||||
}
|
||||
|
@ -30,8 +32,9 @@ SECTIONS
|
|||
*(.dtor)
|
||||
djgpp_last_dtor = . ;}
|
||||
*(.data)
|
||||
${RELOCATING+ edata = . ; _edata = .};
|
||||
${RELOCATING+ . = ALIGN(${SEGMENT_SIZE});}
|
||||
${RELOCATING+*(.gnu.linkonce.d*)}
|
||||
${RELOCATING+edata = . ; _edata = .};
|
||||
${RELOCATING+. = ALIGN(${SEGMENT_SIZE});}
|
||||
}
|
||||
${CONSTRUCTING+${RELOCATING-$CTOR}}
|
||||
${CONSTRUCTING+${RELOCATING-$DTOR}}
|
||||
|
|
Loading…
Reference in a new issue