You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
766 B
19 lines
766 B
--- 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)
|
|
|