forked from pool/binutils
- Update binutils-2.30-branch.diff: 2.30 branch @cd2de6083def3
* Includes fix for PR22836. [boo#1085784] OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=271
This commit is contained in:
parent
ddcf44b372
commit
6c3622185a
@ -1,8 +1,19 @@
|
||||
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
|
||||
index c310da6ed3..6d1a9678a4 100644
|
||||
index c310da6ed3..13ccbc5eb0 100644
|
||||
--- a/bfd/ChangeLog
|
||||
+++ b/bfd/ChangeLog
|
||||
@@ -1,3 +1,98 @@
|
||||
@@ -1,3 +1,109 @@
|
||||
+2018-03-19 H.J. Lu <hongjiu.lu@intel.com>
|
||||
+
|
||||
+ Backport from master branch
|
||||
+ 2018-02-13 Alan Modra <amodra@gmail.com>
|
||||
+
|
||||
+ PR 22836
|
||||
+ * elf.c (_bfd_elf_fixup_group_sections): Account for removed
|
||||
+ relocation sections. If size reduces to just the flag word,
|
||||
+ remove that too and mark with SEC_EXCLUDE.
|
||||
+ * elflink.c (bfd_elf_final_link): Strip empty group sections.
|
||||
+
|
||||
+2018-03-14 H.J. Lu <hongjiu.lu@intel.com>
|
||||
+
|
||||
+ PR ld/20882
|
||||
@ -198,7 +209,7 @@ index 918150f30b..27a7150e6d 100644
|
||||
-development=false
|
||||
+development=true
|
||||
diff --git a/bfd/elf.c b/bfd/elf.c
|
||||
index 90aef09132..325bdd545a 100644
|
||||
index 90aef09132..e95c8a9c83 100644
|
||||
--- a/bfd/elf.c
|
||||
+++ b/bfd/elf.c
|
||||
@@ -4727,33 +4727,35 @@ _bfd_elf_map_sections_to_segments (bfd *abfd, struct bfd_link_info *info)
|
||||
@ -274,7 +285,55 @@ index 90aef09132..325bdd545a 100644
|
||||
new_segment = TRUE;
|
||||
}
|
||||
else
|
||||
@@ -11019,6 +11011,8 @@ elf_parse_notes (bfd *abfd, char *buf, size_t size, file_ptr offset,
|
||||
@@ -7587,7 +7579,16 @@ _bfd_elf_fixup_group_sections (bfd *ibfd, asection *discarded)
|
||||
but the SHT_GROUP section is, then adjust its size. */
|
||||
else if (s->output_section == discarded
|
||||
&& isec->output_section != discarded)
|
||||
- removed += 4;
|
||||
+ {
|
||||
+ struct bfd_elf_section_data *elf_sec = elf_section_data (s);
|
||||
+ removed += 4;
|
||||
+ if (elf_sec->rel.hdr != NULL
|
||||
+ && (elf_sec->rel.hdr->sh_flags & SHF_GROUP) != 0)
|
||||
+ removed += 4;
|
||||
+ if (elf_sec->rela.hdr != NULL
|
||||
+ && (elf_sec->rela.hdr->sh_flags & SHF_GROUP) != 0)
|
||||
+ removed += 4;
|
||||
+ }
|
||||
s = elf_next_in_group (s);
|
||||
if (s == first)
|
||||
break;
|
||||
@@ -7597,18 +7598,26 @@ _bfd_elf_fixup_group_sections (bfd *ibfd, asection *discarded)
|
||||
if (discarded != NULL)
|
||||
{
|
||||
/* If we've been called for ld -r, then we need to
|
||||
- adjust the input section size. This function may
|
||||
- be called multiple times, so save the original
|
||||
- size. */
|
||||
+ adjust the input section size. */
|
||||
if (isec->rawsize == 0)
|
||||
isec->rawsize = isec->size;
|
||||
isec->size = isec->rawsize - removed;
|
||||
+ if (isec->size <= 4)
|
||||
+ {
|
||||
+ isec->size = 0;
|
||||
+ isec->flags |= SEC_EXCLUDE;
|
||||
+ }
|
||||
}
|
||||
else
|
||||
{
|
||||
/* Adjust the output section size when called from
|
||||
objcopy. */
|
||||
isec->output_section->size -= removed;
|
||||
+ if (isec->output_section->size <= 4)
|
||||
+ {
|
||||
+ isec->output_section->size = 0;
|
||||
+ isec->output_section->flags |= SEC_EXCLUDE;
|
||||
+ }
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -11019,6 +11028,8 @@ elf_parse_notes (bfd *abfd, char *buf, size_t size, file_ptr offset,
|
||||
align is less than 4, we use 4 byte alignment. */
|
||||
if (align < 4)
|
||||
align = 4;
|
||||
@ -586,10 +645,24 @@ index b3d4d599ed..8fa01405ac 100644
|
||||
.opd entries. */
|
||||
int non_overlapping_opd;
|
||||
diff --git a/bfd/elflink.c b/bfd/elflink.c
|
||||
index e3751fa122..72aa3ac9c2 100644
|
||||
index e3751fa122..69cb5abbac 100644
|
||||
--- a/bfd/elflink.c
|
||||
+++ b/bfd/elflink.c
|
||||
@@ -12785,20 +12785,31 @@ _bfd_elf_gc_mark_hook (asection *sec,
|
||||
@@ -11618,6 +11618,13 @@ bfd_elf_final_link (bfd *abfd, struct bfd_link_info *info)
|
||||
else
|
||||
o->flags |= SEC_EXCLUDE;
|
||||
}
|
||||
+ else if ((o->flags & SEC_GROUP) != 0 && o->size == 0)
|
||||
+ {
|
||||
+ /* Remove empty group section from linker output. */
|
||||
+ o->flags |= SEC_EXCLUDE;
|
||||
+ bfd_section_list_remove (abfd, o);
|
||||
+ abfd->section_count--;
|
||||
+ }
|
||||
}
|
||||
|
||||
/* Count up the number of relocations we will output for each output
|
||||
@@ -12785,20 +12792,31 @@ _bfd_elf_gc_mark_hook (asection *sec,
|
||||
return NULL;
|
||||
}
|
||||
|
||||
@ -990,7 +1063,7 @@ index 7a65f1755d..e1e20b45bc 100644
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
diff --git a/bfd/version.h b/bfd/version.h
|
||||
index 3d00b319e8..078ad38d77 100644
|
||||
index 3d00b319e8..4f5f353a54 100644
|
||||
--- a/bfd/version.h
|
||||
+++ b/bfd/version.h
|
||||
@@ -16,7 +16,7 @@
|
||||
@ -998,7 +1071,7 @@ index 3d00b319e8..078ad38d77 100644
|
||||
In releases, the date is not included in either version strings or
|
||||
sonames. */
|
||||
-#define BFD_VERSION_DATE 20180127
|
||||
+#define BFD_VERSION_DATE 20180314
|
||||
+#define BFD_VERSION_DATE 20180319
|
||||
#define BFD_VERSION @bfd_version@
|
||||
#define BFD_VERSION_STRING @bfd_version_package@ @bfd_version_string@
|
||||
#define REPORT_BUGS_TO @report_bugs_to@
|
||||
@ -1010,10 +1083,22 @@ index e8d31525d3..e1d6ded223 100644
|
||||
-m4_define([BFD_VERSION], [2.30])
|
||||
+m4_define([BFD_VERSION], [2.30.0])
|
||||
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
|
||||
index 03f4fd3104..674b9f9d88 100644
|
||||
index 03f4fd3104..0eba8440e8 100644
|
||||
--- a/binutils/ChangeLog
|
||||
+++ b/binutils/ChangeLog
|
||||
@@ -1,3 +1,15 @@
|
||||
@@ -1,3 +1,27 @@
|
||||
+2018-03-19 H.J. Lu <hongjiu.lu@intel.com>
|
||||
+
|
||||
+ Backport from master branch
|
||||
+ 2018-02-13 Alan Modra <amodra@gmail.com>
|
||||
+
|
||||
+ PR 22836
|
||||
+ * testsuite/binutils-all/group-7.s,
|
||||
+ * testsuite/binutils-all/group-7a.d,
|
||||
+ * testsuite/binutils-all/group-7b.d,
|
||||
+ * testsuite/binutils-all/group-7c.d: New tests.
|
||||
+ * testsuite/binutils-all/objcopy.exp: Run them.
|
||||
+
|
||||
+2018-02-27 Nick Clifton <nickc@redhat.com>
|
||||
+
|
||||
+ * po/pt.po: New Portuguese translation.
|
||||
@ -13094,6 +13179,93 @@ index 0000000000..ad0153fa96
|
||||
+#, c-format
|
||||
+msgid "%s: warning: unknown size for field `%s' in struct"
|
||||
+msgstr "%s: aviso - tamanho desconhecido para o campo \"%s\" em struct"
|
||||
diff --git a/binutils/testsuite/binutils-all/group-7.s b/binutils/testsuite/binutils-all/group-7.s
|
||||
new file mode 100644
|
||||
index 0000000000..5028afc1f5
|
||||
--- /dev/null
|
||||
+++ b/binutils/testsuite/binutils-all/group-7.s
|
||||
@@ -0,0 +1,6 @@
|
||||
+ .section .data.foo,"awG",%progbits,foo,comdat
|
||||
+here:
|
||||
+ .dc.a here
|
||||
+
|
||||
+ .section .data2.foo,"awG",%progbits,foo,comdat
|
||||
+ .dc.a 0
|
||||
diff --git a/binutils/testsuite/binutils-all/group-7a.d b/binutils/testsuite/binutils-all/group-7a.d
|
||||
new file mode 100644
|
||||
index 0000000000..fa8db60d9e
|
||||
--- /dev/null
|
||||
+++ b/binutils/testsuite/binutils-all/group-7a.d
|
||||
@@ -0,0 +1,16 @@
|
||||
+#name: copy removing reloc group member
|
||||
+#source: group-7.s
|
||||
+#PROG: objcopy
|
||||
+#DUMPPROG: readelf
|
||||
+#objcopy: --remove-section .data.foo
|
||||
+#readelf: -Sg --wide
|
||||
+
|
||||
+#...
|
||||
+ \[[ 0-9]+\] \.group[ \t]+GROUP[ \t]+.*
|
||||
+#...
|
||||
+ \[[ 0-9]+\] \.data2\.foo[ \t]+PROGBITS[ \t0-9a-f]+WAG.*
|
||||
+#...
|
||||
+COMDAT group section \[[ 0-9]+\] `\.group' \[foo\] contains 1 section.*
|
||||
+ \[Index\] Name
|
||||
+ \[[ 0-9]+\] \.data2\.foo
|
||||
+#pass
|
||||
diff --git a/binutils/testsuite/binutils-all/group-7b.d b/binutils/testsuite/binutils-all/group-7b.d
|
||||
new file mode 100644
|
||||
index 0000000000..b674545362
|
||||
--- /dev/null
|
||||
+++ b/binutils/testsuite/binutils-all/group-7b.d
|
||||
@@ -0,0 +1,19 @@
|
||||
+#name: copy removing non-reloc group member
|
||||
+#source: group-7.s
|
||||
+#PROG: objcopy
|
||||
+#DUMPPROG: readelf
|
||||
+#objcopy: --remove-section .data2.foo
|
||||
+#readelf: -Sg --wide
|
||||
+
|
||||
+#...
|
||||
+ \[[ 0-9]+\] \.group[ \t]+GROUP[ \t]+.*
|
||||
+#...
|
||||
+ \[[ 0-9]+\] \.data\.foo[ \t]+PROGBITS[ \t0-9a-f]+WAG.*
|
||||
+#...
|
||||
+ \[[ 0-9]+\] \.rela?\.data\.foo[ \t]+RELA?[ \t0-9a-f]+IG.*
|
||||
+#...
|
||||
+COMDAT group section \[[ 0-9]+\] `\.group' \[foo\] contains 2 sections:
|
||||
+ \[Index\] Name
|
||||
+ \[[ 0-9]+\] \.data\.foo
|
||||
+ \[[ 0-9]+\] \.rela?\.data\.foo
|
||||
+#pass
|
||||
diff --git a/binutils/testsuite/binutils-all/group-7c.d b/binutils/testsuite/binutils-all/group-7c.d
|
||||
new file mode 100644
|
||||
index 0000000000..83e91156ee
|
||||
--- /dev/null
|
||||
+++ b/binutils/testsuite/binutils-all/group-7c.d
|
||||
@@ -0,0 +1,8 @@
|
||||
+#name: copy removing reloc and non-reloc group member
|
||||
+#source: group-7.s
|
||||
+#PROG: objcopy
|
||||
+#DUMPPROG: readelf
|
||||
+#objcopy: -R .data.foo -R .data2.foo
|
||||
+#readelf: -g --wide
|
||||
+
|
||||
+There are no section groups in this file\.
|
||||
diff --git a/binutils/testsuite/binutils-all/objcopy.exp b/binutils/testsuite/binutils-all/objcopy.exp
|
||||
index 377f88c0e1..f4a7692cdf 100644
|
||||
--- a/binutils/testsuite/binutils-all/objcopy.exp
|
||||
+++ b/binutils/testsuite/binutils-all/objcopy.exp
|
||||
@@ -1051,6 +1051,9 @@ if [is_elf_format] {
|
||||
objcopy_test_readelf "GNU_MBIND section" mbind1.s
|
||||
run_dump_test "group-5"
|
||||
run_dump_test "group-6"
|
||||
+ run_dump_test "group-7a"
|
||||
+ run_dump_test "group-7b"
|
||||
+ run_dump_test "group-7c"
|
||||
run_dump_test "copy-1"
|
||||
run_dump_test "note-1"
|
||||
if [is_elf64 tmpdir/bintest.o] {
|
||||
diff --git a/gas/ChangeLog b/gas/ChangeLog
|
||||
index 98a09cd8b9..16660acf80 100644
|
||||
--- a/gas/ChangeLog
|
||||
@ -43431,10 +43603,29 @@ index e3e9632c3d..e5bf189382 100644
|
||||
"Language: pt_BR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
diff --git a/ld/ChangeLog b/ld/ChangeLog
|
||||
index 6337cd0cb6..b5cf58ace2 100644
|
||||
index 6337cd0cb6..6cea82b6ad 100644
|
||||
--- a/ld/ChangeLog
|
||||
+++ b/ld/ChangeLog
|
||||
@@ -1,3 +1,57 @@
|
||||
@@ -1,3 +1,76 @@
|
||||
+2018-03-19 H.J. Lu <hongjiu.lu@intel.com>
|
||||
+
|
||||
+ Backport from master branch
|
||||
+ 2018-02-14 H.J. Lu <hongjiu.lu@intel.com>
|
||||
+
|
||||
+ PR 22836
|
||||
+ * testsuite/ld-elf/pr22836-1.s: New file.
|
||||
+ * testsuite/ld-elf/pr22836-1a.d: Likewise.
|
||||
+ * testsuite/ld-elf/pr22836-1b.d: Likewise.
|
||||
+
|
||||
+2018-03-19 H.J. Lu <hongjiu.lu@intel.com>
|
||||
+
|
||||
+ Backport from master branch
|
||||
+ 2018-02-13 Alan Modra <amodra@gmail.com>
|
||||
+
|
||||
+ PR 22836
|
||||
+ * testsuite/ld-elf/pr22836-2.d,
|
||||
+ * testsuite/ld-elf/pr22836-2.s: New test.
|
||||
+
|
||||
+2018-03-14 H.J. Lu <hongjiu.lu@intel.com>
|
||||
+
|
||||
+ PR ld/20882
|
||||
@ -43492,7 +43683,7 @@ index 6337cd0cb6..b5cf58ace2 100644
|
||||
2018-01-27 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
This is the 2.30 release:
|
||||
@@ -108,7 +162,7 @@
|
||||
@@ -108,7 +181,7 @@
|
||||
|
||||
2018-01-16 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
@ -43930,6 +44121,68 @@ index 26853bc9b8..5b219b7795 100644
|
||||
# Fails on CRX because readelf does not know how to apply CRX reloc number 20 (R_CRX_SWITCH32).
|
||||
|
||||
#...
|
||||
diff --git a/ld/testsuite/ld-elf/pr22836-1.s b/ld/testsuite/ld-elf/pr22836-1.s
|
||||
new file mode 100644
|
||||
index 0000000000..8be549ecca
|
||||
--- /dev/null
|
||||
+++ b/ld/testsuite/ld-elf/pr22836-1.s
|
||||
@@ -0,0 +1,4 @@
|
||||
+ .section .debug_macro,"G",%progbits,foo,comdat
|
||||
+ .long .LASF0
|
||||
+.LASF0:
|
||||
+ .string "__STDC__ 1"
|
||||
diff --git a/ld/testsuite/ld-elf/pr22836-1a.d b/ld/testsuite/ld-elf/pr22836-1a.d
|
||||
new file mode 100644
|
||||
index 0000000000..4acf45d421
|
||||
--- /dev/null
|
||||
+++ b/ld/testsuite/ld-elf/pr22836-1a.d
|
||||
@@ -0,0 +1,7 @@
|
||||
+#source: pr22836-1.s
|
||||
+#ld: -r -s
|
||||
+#readelf: -g --wide
|
||||
+#xfail: d30v-*-* dlx-*-* i960-*-* pj-*-*
|
||||
+# Targets using the generic linker don't properly support comdat group sections
|
||||
+
|
||||
+There are no section groups in this file\.
|
||||
diff --git a/ld/testsuite/ld-elf/pr22836-1b.d b/ld/testsuite/ld-elf/pr22836-1b.d
|
||||
new file mode 100644
|
||||
index 0000000000..30d6fa3f67
|
||||
--- /dev/null
|
||||
+++ b/ld/testsuite/ld-elf/pr22836-1b.d
|
||||
@@ -0,0 +1,7 @@
|
||||
+#source: pr22836-1.s
|
||||
+#ld: -r -S
|
||||
+#readelf: -g --wide
|
||||
+#xfail: d30v-*-* dlx-*-* i960-*-* pj-*-*
|
||||
+# Targets using the generic linker don't properly support comdat group sections
|
||||
+
|
||||
+There are no section groups in this file\.
|
||||
diff --git a/ld/testsuite/ld-elf/pr22836-2.d b/ld/testsuite/ld-elf/pr22836-2.d
|
||||
new file mode 100644
|
||||
index 0000000000..10133e4b90
|
||||
--- /dev/null
|
||||
+++ b/ld/testsuite/ld-elf/pr22836-2.d
|
||||
@@ -0,0 +1,7 @@
|
||||
+#source: pr22836-2.s
|
||||
+#ld: -r -S
|
||||
+#readelf: -g --wide
|
||||
+
|
||||
+group section \[[ 0-9]+\] `\.group' \[foo\] contains 1 section.*
|
||||
+ \[Index\] Name
|
||||
+ \[[ 0-9]+\] \.comment
|
||||
diff --git a/ld/testsuite/ld-elf/pr22836-2.s b/ld/testsuite/ld-elf/pr22836-2.s
|
||||
new file mode 100644
|
||||
index 0000000000..77cd83a0c6
|
||||
--- /dev/null
|
||||
+++ b/ld/testsuite/ld-elf/pr22836-2.s
|
||||
@@ -0,0 +1,7 @@
|
||||
+ .section .debug_macro,"G",%progbits,foo
|
||||
+ .long .LASF0
|
||||
+.LASF0:
|
||||
+ .string "__STDC__ 1"
|
||||
+
|
||||
+ .section .comment,"G",%progbits,foo
|
||||
+ .asciz "hi"
|
||||
diff --git a/ld/testsuite/ld-gc/pr20882.d b/ld/testsuite/ld-gc/pr20882.d
|
||||
index dd388c51c9..1d68d05f38 100644
|
||||
--- a/ld/testsuite/ld-gc/pr20882.d
|
||||
@ -44078,10 +44331,17 @@ index 510ba845ae..6f3db7d014 100644
|
||||
|
||||
.*
|
||||
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog
|
||||
index e051921105..dcca8ce5c9 100644
|
||||
index e051921105..cae90ebe12 100644
|
||||
--- a/opcodes/ChangeLog
|
||||
+++ b/opcodes/ChangeLog
|
||||
@@ -1,3 +1,14 @@
|
||||
@@ -1,3 +1,21 @@
|
||||
+2018-03-16 Thomas Preud'homme <thomas.preudhomme@arm.com>
|
||||
+
|
||||
+ Backport from mainline
|
||||
+ 2018-02-19 Thomas Preud'homme <thomas.preudhomme@arm.com>
|
||||
+
|
||||
+ * arm-dis.c (thumb_opcodes): Fix BXNS mask.
|
||||
+
|
||||
+2018-02-05 Nick Clifton <nickc@redhat.com>
|
||||
+
|
||||
+ * po/pt_BR.po: Updated Brazilian Portuguese translation.
|
||||
@ -44096,6 +44356,19 @@ index e051921105..dcca8ce5c9 100644
|
||||
2018-01-27 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
This is the 2.30 release:
|
||||
diff --git a/opcodes/arm-dis.c b/opcodes/arm-dis.c
|
||||
index 5efe031622..afa9410b4f 100644
|
||||
--- a/opcodes/arm-dis.c
|
||||
+++ b/opcodes/arm-dis.c
|
||||
@@ -2530,7 +2530,7 @@ static const struct opcode16 thumb_opcodes[] =
|
||||
|
||||
/* ARMv8-M Security Extensions instructions. */
|
||||
{ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8M), 0x4784, 0xff87, "blxns\t%3-6r"},
|
||||
- {ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8M), 0x4704, 0xff07, "bxns\t%3-6r"},
|
||||
+ {ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8M), 0x4704, 0xff87, "bxns\t%3-6r"},
|
||||
|
||||
/* ARM V8 instructions. */
|
||||
{ARM_FEATURE_CORE_LOW (ARM_EXT_V8), 0xbf50, 0xffff, "sevl%c"},
|
||||
diff --git a/opcodes/configure b/opcodes/configure
|
||||
index 3186094b48..54753f4d99 100755
|
||||
--- a/opcodes/configure
|
||||
|
@ -1,8 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 14 13:15:03 UTC 2018 - rguenther@suse.com
|
||||
Mon Mar 19 15:12:19 UTC 2018 - rguenther@suse.com
|
||||
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @da8c5cfcc9
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @cd2de6083def3
|
||||
* Includes more complete fix for PR20882.
|
||||
* Includes fix for PR22836. [boo#1085784]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 8 11:33:31 UTC 2018 - schwab@suse.de
|
||||
|
@ -1,8 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 14 13:15:03 UTC 2018 - rguenther@suse.com
|
||||
Mon Mar 19 15:12:19 UTC 2018 - rguenther@suse.com
|
||||
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @da8c5cfcc9
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @cd2de6083def3
|
||||
* Includes more complete fix for PR20882.
|
||||
* Includes fix for PR22836. [boo#1085784]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 8 11:33:31 UTC 2018 - schwab@suse.de
|
||||
|
@ -1,8 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 14 13:15:03 UTC 2018 - rguenther@suse.com
|
||||
Mon Mar 19 15:12:19 UTC 2018 - rguenther@suse.com
|
||||
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @da8c5cfcc9
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @cd2de6083def3
|
||||
* Includes more complete fix for PR20882.
|
||||
* Includes fix for PR22836. [boo#1085784]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 8 11:33:31 UTC 2018 - schwab@suse.de
|
||||
|
@ -1,8 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 14 13:15:03 UTC 2018 - rguenther@suse.com
|
||||
Mon Mar 19 15:12:19 UTC 2018 - rguenther@suse.com
|
||||
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @da8c5cfcc9
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @cd2de6083def3
|
||||
* Includes more complete fix for PR20882.
|
||||
* Includes fix for PR22836. [boo#1085784]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 8 11:33:31 UTC 2018 - schwab@suse.de
|
||||
|
@ -1,8 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 14 13:15:03 UTC 2018 - rguenther@suse.com
|
||||
Mon Mar 19 15:12:19 UTC 2018 - rguenther@suse.com
|
||||
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @da8c5cfcc9
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @cd2de6083def3
|
||||
* Includes more complete fix for PR20882.
|
||||
* Includes fix for PR22836. [boo#1085784]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 8 11:33:31 UTC 2018 - schwab@suse.de
|
||||
|
@ -1,8 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 14 13:15:03 UTC 2018 - rguenther@suse.com
|
||||
Mon Mar 19 15:12:19 UTC 2018 - rguenther@suse.com
|
||||
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @da8c5cfcc9
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @cd2de6083def3
|
||||
* Includes more complete fix for PR20882.
|
||||
* Includes fix for PR22836. [boo#1085784]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 8 11:33:31 UTC 2018 - schwab@suse.de
|
||||
|
@ -1,8 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 14 13:15:03 UTC 2018 - rguenther@suse.com
|
||||
Mon Mar 19 15:12:19 UTC 2018 - rguenther@suse.com
|
||||
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @da8c5cfcc9
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @cd2de6083def3
|
||||
* Includes more complete fix for PR20882.
|
||||
* Includes fix for PR22836. [boo#1085784]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 8 11:33:31 UTC 2018 - schwab@suse.de
|
||||
|
@ -1,8 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 14 13:15:03 UTC 2018 - rguenther@suse.com
|
||||
Mon Mar 19 15:12:19 UTC 2018 - rguenther@suse.com
|
||||
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @da8c5cfcc9
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @cd2de6083def3
|
||||
* Includes more complete fix for PR20882.
|
||||
* Includes fix for PR22836. [boo#1085784]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 8 11:33:31 UTC 2018 - schwab@suse.de
|
||||
|
@ -1,8 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 14 13:15:03 UTC 2018 - rguenther@suse.com
|
||||
Mon Mar 19 15:12:19 UTC 2018 - rguenther@suse.com
|
||||
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @da8c5cfcc9
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @cd2de6083def3
|
||||
* Includes more complete fix for PR20882.
|
||||
* Includes fix for PR22836. [boo#1085784]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 8 11:33:31 UTC 2018 - schwab@suse.de
|
||||
|
@ -1,8 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 14 13:15:03 UTC 2018 - rguenther@suse.com
|
||||
Mon Mar 19 15:12:19 UTC 2018 - rguenther@suse.com
|
||||
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @da8c5cfcc9
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @cd2de6083def3
|
||||
* Includes more complete fix for PR20882.
|
||||
* Includes fix for PR22836. [boo#1085784]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 8 11:33:31 UTC 2018 - schwab@suse.de
|
||||
|
@ -1,8 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 14 13:15:03 UTC 2018 - rguenther@suse.com
|
||||
Mon Mar 19 15:12:19 UTC 2018 - rguenther@suse.com
|
||||
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @da8c5cfcc9
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @cd2de6083def3
|
||||
* Includes more complete fix for PR20882.
|
||||
* Includes fix for PR22836. [boo#1085784]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 8 11:33:31 UTC 2018 - schwab@suse.de
|
||||
|
@ -1,8 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 14 13:15:03 UTC 2018 - rguenther@suse.com
|
||||
Mon Mar 19 15:12:19 UTC 2018 - rguenther@suse.com
|
||||
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @da8c5cfcc9
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @cd2de6083def3
|
||||
* Includes more complete fix for PR20882.
|
||||
* Includes fix for PR22836. [boo#1085784]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 8 11:33:31 UTC 2018 - schwab@suse.de
|
||||
|
@ -1,8 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 14 13:15:03 UTC 2018 - rguenther@suse.com
|
||||
Mon Mar 19 15:12:19 UTC 2018 - rguenther@suse.com
|
||||
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @da8c5cfcc9
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @cd2de6083def3
|
||||
* Includes more complete fix for PR20882.
|
||||
* Includes fix for PR22836. [boo#1085784]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 8 11:33:31 UTC 2018 - schwab@suse.de
|
||||
|
@ -1,8 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 14 13:15:03 UTC 2018 - rguenther@suse.com
|
||||
Mon Mar 19 15:12:19 UTC 2018 - rguenther@suse.com
|
||||
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @da8c5cfcc9
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @cd2de6083def3
|
||||
* Includes more complete fix for PR20882.
|
||||
* Includes fix for PR22836. [boo#1085784]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 8 11:33:31 UTC 2018 - schwab@suse.de
|
||||
|
@ -1,8 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 14 13:15:03 UTC 2018 - rguenther@suse.com
|
||||
Mon Mar 19 15:12:19 UTC 2018 - rguenther@suse.com
|
||||
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @da8c5cfcc9
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @cd2de6083def3
|
||||
* Includes more complete fix for PR20882.
|
||||
* Includes fix for PR22836. [boo#1085784]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 8 11:33:31 UTC 2018 - schwab@suse.de
|
||||
|
@ -1,8 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 14 13:15:03 UTC 2018 - rguenther@suse.com
|
||||
Mon Mar 19 15:12:19 UTC 2018 - rguenther@suse.com
|
||||
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @da8c5cfcc9
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @cd2de6083def3
|
||||
* Includes more complete fix for PR20882.
|
||||
* Includes fix for PR22836. [boo#1085784]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 8 11:33:31 UTC 2018 - schwab@suse.de
|
||||
|
@ -1,8 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 14 13:15:03 UTC 2018 - rguenther@suse.com
|
||||
Mon Mar 19 15:12:19 UTC 2018 - rguenther@suse.com
|
||||
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @da8c5cfcc9
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @cd2de6083def3
|
||||
* Includes more complete fix for PR20882.
|
||||
* Includes fix for PR22836. [boo#1085784]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 8 11:33:31 UTC 2018 - schwab@suse.de
|
||||
|
@ -1,8 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 14 13:15:03 UTC 2018 - rguenther@suse.com
|
||||
Mon Mar 19 15:12:19 UTC 2018 - rguenther@suse.com
|
||||
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @da8c5cfcc9
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @cd2de6083def3
|
||||
* Includes more complete fix for PR20882.
|
||||
* Includes fix for PR22836. [boo#1085784]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 8 11:33:31 UTC 2018 - schwab@suse.de
|
||||
|
@ -1,8 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 14 13:15:03 UTC 2018 - rguenther@suse.com
|
||||
Mon Mar 19 15:12:19 UTC 2018 - rguenther@suse.com
|
||||
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @da8c5cfcc9
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @cd2de6083def3
|
||||
* Includes more complete fix for PR20882.
|
||||
* Includes fix for PR22836. [boo#1085784]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 8 11:33:31 UTC 2018 - schwab@suse.de
|
||||
|
@ -1,8 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 14 13:15:03 UTC 2018 - rguenther@suse.com
|
||||
Mon Mar 19 15:12:19 UTC 2018 - rguenther@suse.com
|
||||
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @da8c5cfcc9
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @cd2de6083def3
|
||||
* Includes more complete fix for PR20882.
|
||||
* Includes fix for PR22836. [boo#1085784]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 8 11:33:31 UTC 2018 - schwab@suse.de
|
||||
|
@ -1,8 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 14 13:15:03 UTC 2018 - rguenther@suse.com
|
||||
Mon Mar 19 15:12:19 UTC 2018 - rguenther@suse.com
|
||||
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @da8c5cfcc9
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @cd2de6083def3
|
||||
* Includes more complete fix for PR20882.
|
||||
* Includes fix for PR22836. [boo#1085784]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 8 11:33:31 UTC 2018 - schwab@suse.de
|
||||
|
@ -1,8 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 14 13:15:03 UTC 2018 - rguenther@suse.com
|
||||
Mon Mar 19 15:12:19 UTC 2018 - rguenther@suse.com
|
||||
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @da8c5cfcc9
|
||||
- Update binutils-2.30-branch.diff: 2.30 branch @cd2de6083def3
|
||||
* Includes more complete fix for PR20882.
|
||||
* Includes fix for PR22836. [boo#1085784]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 8 11:33:31 UTC 2018 - schwab@suse.de
|
||||
|
Loading…
Reference in New Issue
Block a user