20 lines
766 B
Diff
20 lines
766 B
Diff
--- binutils.orig/binutils/objcopy.c 2020-10-06 14:53:19.264943750 +0100
|
|
+++ binutils-2.35.1/binutils/objcopy.c 2020-10-06 14:53:47.002761889 +0100
|
|
@@ -3313,14 +3313,12 @@ copy_object (bfd *ibfd, bfd *obfd, const
|
|
/* It is likely that output sections are in the same order
|
|
as the input sections, but do not assume that this is
|
|
the case. */
|
|
- if (strcmp (bfd_section_name (merged->sec),
|
|
- bfd_section_name (osec)) != 0)
|
|
+ if (merged->sec->output_section != osec)
|
|
{
|
|
for (merged = merged_note_sections;
|
|
merged != NULL;
|
|
merged = merged->next)
|
|
- if (strcmp (bfd_section_name (merged->sec),
|
|
- bfd_section_name (osec)) == 0)
|
|
+ if (merged->sec->output_section == osec)
|
|
break;
|
|
|
|
if (merged == NULL)
|