* emultempl/pe.em (gld_${EMULATION_NAME}_place_orphan): Defer
merging sections when not relocating.
This commit is contained in:
parent
abf4be04fa
commit
6eec49fcec
2 changed files with 11 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
1999-09-29 Andrew Haley <aph@cygnus.com>
|
||||
|
||||
* emultempl/pe.em (gld_${EMULATION_NAME}_place_orphan): Defer
|
||||
merging sections when not relocating.
|
||||
|
||||
1999-09-28 Mumit Khan <khan@xraylith.wisc.edu>
|
||||
|
||||
* pe-dll.c (process_def_file): Move the offset lookup from here to
|
||||
|
|
|
@ -1028,9 +1028,12 @@ gld_${EMULATION_NAME}_place_orphan (file, s)
|
|||
hold_section = s;
|
||||
|
||||
hold_section_name = xstrdup (secname);
|
||||
dollar = strchr (hold_section_name, '$');
|
||||
if (dollar != NULL)
|
||||
*dollar = '\0';
|
||||
if (!link_info.relocateable)
|
||||
{
|
||||
dollar = strchr (hold_section_name, '$');
|
||||
if (dollar != NULL)
|
||||
*dollar = '\0';
|
||||
}
|
||||
|
||||
hold_use = NULL;
|
||||
lang_for_each_statement (gld${EMULATION_NAME}_place_section);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue