mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-25 13:09:48 +00:00
* ldlang.c (section_already_linked): Only discard link once
sections if we are building constructors.
This commit is contained in:
parent
464e1740d2
commit
7b9eea348f
@ -1,3 +1,8 @@
|
||||
1999-06-23 Ian Lance Taylor <ian@zembu.com>
|
||||
|
||||
* ldlang.c (section_already_linked): Only discard link once
|
||||
sections if we are building constructors.
|
||||
|
||||
1999-06-22 Nick Clifton <nickc@cygnus.com>
|
||||
|
||||
* ld.texinfo (Location Counter): Describe behaviour of
|
||||
|
@ -890,6 +890,11 @@ section_already_linked (abfd, sec, data)
|
||||
return;
|
||||
}
|
||||
|
||||
/* If we aren't building constructors, don't discard link once
|
||||
sections. Otherwise we can get confused when generating relocs. */
|
||||
if (! config.build_constructors)
|
||||
return;
|
||||
|
||||
flags = bfd_get_section_flags (abfd, sec);
|
||||
|
||||
if ((flags & SEC_LINK_ONCE) == 0)
|
||||
|
Loading…
Reference in New Issue
Block a user