From a922d937e8cd392599ecbd86720237d9b54ddb312345ef1769354e4d6b084247 Mon Sep 17 00:00:00 2001 From: Michael Matz Date: Wed, 8 Sep 2021 18:16:29 +0000 Subject: [PATCH 01/12] - Adjust for testsuite fails on older products that configure binutils in different ways, adds binutils-compat-old-behaviour.diff and adjusts binutils-revert-nm-symversion.diff and binutils-revert-plt32-in-branches.diff. OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=366 --- binutils-compat-old-behaviour.diff | 181 +++++++++++++++++++ binutils-revert-nm-symversion.diff | 81 ++++++--- binutils-revert-plt32-in-branches.diff | 236 +++++++++++++------------ binutils.changes | 8 + binutils.spec | 6 +- cross-aarch64-binutils.changes | 8 + cross-aarch64-binutils.spec | 6 +- cross-arm-binutils.changes | 8 + cross-arm-binutils.spec | 6 +- cross-avr-binutils.changes | 8 + cross-avr-binutils.spec | 6 +- cross-epiphany-binutils.changes | 8 + cross-epiphany-binutils.spec | 6 +- cross-hppa-binutils.changes | 8 + cross-hppa-binutils.spec | 6 +- cross-hppa64-binutils.changes | 8 + cross-hppa64-binutils.spec | 6 +- cross-i386-binutils.changes | 8 + cross-i386-binutils.spec | 6 +- cross-ia64-binutils.changes | 8 + cross-ia64-binutils.spec | 6 +- cross-m68k-binutils.changes | 8 + cross-m68k-binutils.spec | 6 +- cross-mips-binutils.changes | 8 + cross-mips-binutils.spec | 6 +- cross-ppc-binutils.changes | 8 + cross-ppc-binutils.spec | 6 +- cross-ppc64-binutils.changes | 8 + cross-ppc64-binutils.spec | 6 +- cross-ppc64le-binutils.changes | 8 + cross-ppc64le-binutils.spec | 6 +- cross-riscv64-binutils.changes | 8 + cross-riscv64-binutils.spec | 6 +- cross-rx-binutils.changes | 8 + cross-rx-binutils.spec | 6 +- cross-s390-binutils.changes | 8 + cross-s390-binutils.spec | 6 +- cross-s390x-binutils.changes | 8 + cross-s390x-binutils.spec | 6 +- cross-sparc-binutils.changes | 8 + cross-sparc-binutils.spec | 6 +- cross-sparc64-binutils.changes | 8 + cross-sparc64-binutils.spec | 6 +- cross-spu-binutils.changes | 8 + cross-spu-binutils.spec | 6 +- cross-x86_64-binutils.changes | 8 + cross-x86_64-binutils.spec | 6 +- cross-xtensa-binutils.changes | 8 + cross-xtensa-binutils.spec | 6 +- 49 files changed, 662 insertions(+), 158 deletions(-) create mode 100644 binutils-compat-old-behaviour.diff diff --git a/binutils-compat-old-behaviour.diff b/binutils-compat-old-behaviour.diff new file mode 100644 index 0000000..a5d2fa9 --- /dev/null +++ b/binutils-compat-old-behaviour.diff @@ -0,0 +1,181 @@ +This adjusts some testcases that expect new behaviour: +* that relaxable relocations are generated +* that separate-code is default + - this also implies that default max-page-size is 0x1000, instead of the + old 0x200000, so some testcases need to encode that as well +Index: binutils-2.37/ld/testsuite/ld-elf/linux-x86.exp +=================================================================== +--- binutils-2.37.orig/ld/testsuite/ld-elf/linux-x86.exp ++++ binutils-2.37/ld/testsuite/ld-elf/linux-x86.exp +@@ -125,7 +125,7 @@ proc check_pr25749a {testname srcfilea s + } + + # Suppress warning for unsupported attribute from older GCC. +- append cflags " -w" ++ append cflags " -w -Wa,-mrelax-relocations=yes" + + exec cp $srcdir/$subdir/$srcfilea $srcfilea + exec chmod +w $srcfilea +@@ -246,7 +246,7 @@ proc check_pr25749b {testname srcfilea s + [list \ + "Build lib${testname}.so ($dsoldflags)" \ + "-shared $dsoldflags tmpdir/pr25749-bin.o" \ +- "-fPIC -I../bfd" \ ++ "-fPIC -I../bfd -Wa,-mrelax-relocations=yes" \ + [list $srcfileb] \ + {{readelf {-Wr} pr25749.rd}} \ + "lib${testname}.so" \ +Index: binutils-2.37/ld/testsuite/ld-i386/report-reloc-1.d +=================================================================== +--- binutils-2.37.orig/ld/testsuite/ld-i386/report-reloc-1.d ++++ binutils-2.37/ld/testsuite/ld-i386/report-reloc-1.d +@@ -1,6 +1,6 @@ + #source: report-reloc-1.s + #as: --32 +-#ld: -pie -melf_i386 -z report-relative-reloc ++#ld: -pie -melf_i386 -z report-relative-reloc -z separate-code + #warning_output: report-reloc-1.l + #readelf: -r --wide + +Index: binutils-2.37/ld/testsuite/ld-x86-64/pe-x86-64.exp +=================================================================== +--- binutils-2.37.orig/ld/testsuite/ld-x86-64/pe-x86-64.exp ++++ binutils-2.37/ld/testsuite/ld-x86-64/pe-x86-64.exp +@@ -27,7 +27,7 @@ if {![istarget "x86_64-*-linux*"] } { + run_ld_link_tests [list \ + [list \ + "Build pe-x86-64-1" \ +- "-m elf_x86_64 --entry=begin" \ ++ "-m elf_x86_64 --entry=begin -z separate-code -z max-page-size=4096" \ + "" \ + "" \ + {pe-x86-64-1a.obj.bz2 pe-x86-64-1b.obj.bz2 pe-x86-64-1c.obj.bz2} \ +@@ -36,7 +36,7 @@ run_ld_link_tests [list \ + ] \ + [list \ + "Build pe-x86-64-2" \ +- "-m elf_x86_64 --entry=begin" \ ++ "-m elf_x86_64 --entry=begin -z separate-code -z max-page-size=4096" \ + "" \ + "" \ + {pe-x86-64-2a.obj.bz2 pe-x86-64-2b.obj.bz2 pe-x86-64-2c.obj.bz2} \ +@@ -45,7 +45,7 @@ run_ld_link_tests [list \ + ] \ + [list \ + "Build pe-x86-64-3" \ +- "-m elf_x86_64 --entry=begin" \ ++ "-m elf_x86_64 --entry=begin -z separate-code -z max-page-size=4096" \ + "" \ + "" \ + {pe-x86-64-3a.obj.bz2 pe-x86-64-3b.obj.bz2 pe-x86-64-3c.obj.bz2 \ +@@ -55,7 +55,7 @@ run_ld_link_tests [list \ + ] \ + [list \ + "Build pe-x86-64-4" \ +- "-m elf_x86_64 --entry=begin" \ ++ "-m elf_x86_64 --entry=begin -z separate-code -z max-page-size=4096" \ + "" \ + "" \ + {pe-x86-64-4a.obj.bz2 pe-x86-64-4b.obj.bz2 pe-x86-64-4c.obj.bz2 \ +@@ -65,7 +65,7 @@ run_ld_link_tests [list \ + ] \ + [list \ + "Build pe-x86-64-5" \ +- "-m elf_x86_64 --entry=begin" \ ++ "-m elf_x86_64 --entry=begin -z separate-code -z max-page-size=4096" \ + "" \ + "" \ + {pe-x86-64-5.obj.bz2 } \ +@@ -75,7 +75,7 @@ run_ld_link_tests [list \ + ] \ + [list \ + "Build pe-x86-64-6" \ +- "-m elf_x86_64 --entry=main" \ ++ "-m elf_x86_64 --entry=main -z separate-code -z max-page-size=4096" \ + "" \ + "" \ + {pe-x86-64-6.obj.bz2 } \ +Index: binutils-2.37/ld/testsuite/ld-x86-64/report-reloc-1-x32.d +=================================================================== +--- binutils-2.37.orig/ld/testsuite/ld-x86-64/report-reloc-1-x32.d ++++ binutils-2.37/ld/testsuite/ld-x86-64/report-reloc-1-x32.d +@@ -1,6 +1,6 @@ + #source: report-reloc-1.s + #as: --x32 +-#ld: -pie -melf32_x86_64 -z report-relative-reloc ++#ld: -pie -melf32_x86_64 -z report-relative-reloc -z separate-code -z max-page-size=4096 + #warning_output: report-reloc-1.l + #readelf: -r --wide + +Index: binutils-2.37/ld/testsuite/ld-x86-64/report-reloc-1.d +=================================================================== +--- binutils-2.37.orig/ld/testsuite/ld-x86-64/report-reloc-1.d ++++ binutils-2.37/ld/testsuite/ld-x86-64/report-reloc-1.d +@@ -1,6 +1,6 @@ + #source: report-reloc-1.s + #as: --64 +-#ld: -pie -melf_x86_64 -z report-relative-reloc ++#ld: -pie -melf_x86_64 -z report-relative-reloc -z separate-code -z max-page-size=4096 + #warning_output: report-reloc-1.l + #readelf: -r --wide + +Index: binutils-2.37/ld/testsuite/ld-x86-64/pr19609-4e.d +=================================================================== +--- binutils-2.37.orig/ld/testsuite/ld-x86-64/pr19609-4e.d ++++ binutils-2.37/ld/testsuite/ld-x86-64/pr19609-4e.d +@@ -1,6 +1,6 @@ + #source: pr19609-4.s + #as: --64 -mrelax-relocations=yes +-#ld: -melf_x86_64 -Ttext=0x70000000 -Tdata=0xa0000000 --no-relax ++#ld: -melf_x86_64 -Ttext=0x70000000 -Tdata=0xa0000000 --no-relax -z separate-code -z max-page-size=4096 + #objdump: -dw + + .*: +file format .* +Index: binutils-2.37/ld/testsuite/ld-x86-64/pr19609-6a.d +=================================================================== +--- binutils-2.37.orig/ld/testsuite/ld-x86-64/pr19609-6a.d ++++ binutils-2.37/ld/testsuite/ld-x86-64/pr19609-6a.d +@@ -1,6 +1,6 @@ + #source: pr19609-6.s + #as: --64 -mrelax-relocations=yes +-#ld: -melf_x86_64 --defsym foobar=0x80000000 ++#ld: -melf_x86_64 --defsym foobar=0x80000000 -z separate-code -z max-page-size=4096 + #objdump: -dw + + .*: +file format .* +Index: binutils-2.37/ld/testsuite/ld-x86-64/pr19609-6b.d +=================================================================== +--- binutils-2.37.orig/ld/testsuite/ld-x86-64/pr19609-6b.d ++++ binutils-2.37/ld/testsuite/ld-x86-64/pr19609-6b.d +@@ -1,6 +1,6 @@ + #source: pr19609-6.s + #as: --64 -mrelax-relocations=yes +-#ld: -melf_x86_64 --defsym foobar=0x80000000 --no-relax ++#ld: -melf_x86_64 --defsym foobar=0x80000000 --no-relax -z separate-code -z max-page-size=4096 + #objdump: -dw + + .*: +file format .* +Index: binutils-2.37/ld/testsuite/ld-x86-64/pr19609-7b.d +=================================================================== +--- binutils-2.37.orig/ld/testsuite/ld-x86-64/pr19609-7b.d ++++ binutils-2.37/ld/testsuite/ld-x86-64/pr19609-7b.d +@@ -1,6 +1,6 @@ + #source: pr19609-7.s + #as: --64 -mrelax-relocations=yes +-#ld: -melf_x86_64 -Ttext=0x80000000 --no-relax ++#ld: -melf_x86_64 -Ttext=0x80000000 --no-relax -z separate-code -z max-page-size=4096 + #objdump: -dw + + .*: +file format .* +Index: binutils-2.37/ld/testsuite/ld-x86-64/pr19609-7d.d +=================================================================== +--- binutils-2.37.orig/ld/testsuite/ld-x86-64/pr19609-7d.d ++++ binutils-2.37/ld/testsuite/ld-x86-64/pr19609-7d.d +@@ -1,6 +1,6 @@ + #source: pr19609-7.s + #as: --x32 -mrelax-relocations=yes +-#ld: -melf32_x86_64 -Ttext=0x80000000 --no-relax ++#ld: -melf32_x86_64 -Ttext=0x80000000 --no-relax -z separate-code -z max-page-size=4096 + #objdump: -dw + + .*: +file format .* diff --git a/binutils-revert-nm-symversion.diff b/binutils-revert-nm-symversion.diff index 1bc52e8..210ee0f 100644 --- a/binutils-revert-nm-symversion.diff +++ b/binutils-revert-nm-symversion.diff @@ -4,31 +4,60 @@ file with symbol names. ld errors on the '@' characters. Until those packages are fixed we use this patch. We have to carry it for old code streams forever. -diff --git a/binutils/nm.c b/binutils/nm.c -index 2637756c647..253714ef179 100644 ---- a/binutils/nm.c -+++ b/binutils/nm.c -@@ -458,7 +458,7 @@ print_symname (const char *form, struct extended_symbol_info *info, - name = alloc; - } +Index: binutils-2.37/binutils/nm.c +=================================================================== +--- binutils-2.37.orig/binutils/nm.c ++++ binutils-2.37/binutils/nm.c +@@ -183,7 +183,7 @@ static int show_version = 0; /* Show the + static int show_synthetic = 0; /* Display synthesized symbols too. */ + static int line_numbers = 0; /* Print line numbers for symbols. */ + static int allow_special_symbols = 0; /* Allow special symbols. */ +-static int with_symbol_versions = -1; /* Output symbol version information. */ ++static int with_symbol_versions = 0; /* Output symbol version information. */ + static int quiet = 0; /* Suppress "no symbols" diagnostic. */ -- if (info != NULL && info->elfinfo && with_symbol_versions) -+ if (info != NULL && info->elfinfo && with_symbol_versions && 0) - { - const char *version_string; - bool hidden; -diff --git a/ld/testsuite/ld-elf/pr25708.d b/ld/testsuite/ld-elf/pr25708.d -index 60b8e31807a..1b62e25347e 100644 ---- a/ld/testsuite/ld-elf/pr25708.d -+++ b/ld/testsuite/ld-elf/pr25708.d -@@ -2,8 +2,9 @@ - #ld: -shared -version-script pr13195.t - #nm: -D --with-symbol-versions - #target: *-*-linux* *-*-gnu* arm*-*-uclinuxfdpiceabi --#xfail: hppa64-*-* ![check_shared_lib_support] -+#xfail: *-*-* ![check_shared_lib_support] - # h8300 doesn't support -shared, and hppa64 creates .foo -+# our binutils revert the printing of symversions with nm -D + /* The characters to use for global and local ifunc symbols. */ +Index: binutils-2.37/ld/testsuite/ld-elf/shared.exp +=================================================================== +--- binutils-2.37.orig/ld/testsuite/ld-elf/shared.exp ++++ binutils-2.37/ld/testsuite/ld-elf/shared.exp +@@ -938,8 +938,7 @@ run_cc_link_tests [list \ + "-fPIC" \ + {pr26302b.c} \ + {{readelf {-sW} pr26302.rd} \ +- {nm {-u} pr26302.nd} \ +- {nm {-u -D} pr26302.nd} \ ++ {nm {-u --with-symbol-versions} pr26302.nd} \ + {nm {-u -D --with-symbol-versions} pr26302.nd}} \ + "pr26302b.so" \ + ] \ +Index: binutils-2.37/gas/testsuite/gas/symver/symver0.d +=================================================================== +--- binutils-2.37.orig/gas/testsuite/gas/symver/symver0.d ++++ binutils-2.37/gas/testsuite/gas/symver/symver0.d +@@ -1,4 +1,4 @@ +-#nm: -n ++#nm: -n --with-symbol-versions + #name: symver symver0 + # + # The #... and #pass are there to match extra symbols inserted by +Index: binutils-2.37/gas/testsuite/gas/symver/symver1.d +=================================================================== +--- binutils-2.37.orig/gas/testsuite/gas/symver/symver1.d ++++ binutils-2.37/gas/testsuite/gas/symver/symver1.d +@@ -1,4 +1,4 @@ +-#nm: -n ++#nm: -n --with-symbol-versions + #name: symver symver1 + # + # The #... and #pass are there to match extra symbols inserted by +Index: binutils-2.37/gas/testsuite/gas/symver/symver6.d +=================================================================== +--- binutils-2.37.orig/gas/testsuite/gas/symver/symver6.d ++++ binutils-2.37/gas/testsuite/gas/symver/symver6.d +@@ -1,4 +1,4 @@ +-#nm: -n ++#nm: -n --with-symbol-versions + #name: symver symver6 + # - #.. - 0+ A VERS_2.0 diff --git a/binutils-revert-plt32-in-branches.diff b/binutils-revert-plt32-in-branches.diff index c4c0849..93f9fee 100644 --- a/binutils-revert-plt32-in-branches.diff +++ b/binutils-revert-plt32-in-branches.diff @@ -79,11 +79,11 @@ Date: Tue Feb 13 07:34:22 2018 -0800 * testsuite/ld-x86-64/pr22791-2c.s: Likewise. * testsuite/ld-x86-64/x86-64.exp: Run PR ld/22791 tests. -diff --git a/bfd/elf64-x86-64.c b/bfd/elf64-x86-64.c -index dc416a7f..b9f96729 100644 ---- a/bfd/elf64-x86-64.c -+++ b/bfd/elf64-x86-64.c -@@ -1832,6 +1832,24 @@ elf_x86_64_convert_load_reloc (bfd *abfd, +Index: binutils-2.37/bfd/elf64-x86-64.c +=================================================================== +--- binutils-2.37.orig/bfd/elf64-x86-64.c ++++ binutils-2.37/bfd/elf64-x86-64.c +@@ -1832,6 +1832,24 @@ elf_x86_64_convert_load_reloc (bfd *abfd return true; } @@ -108,7 +108,7 @@ index dc416a7f..b9f96729 100644 /* Look through the relocs for a section during the first phase, and calculate needed space in the global offset table, procedure linkage table, and dynamic reloc sections. */ -@@ -3159,9 +3177,6 @@ elf_x86_64_relocate_section (bfd *output_bfd, +@@ -3154,9 +3172,6 @@ elf_x86_64_relocate_section (bfd *output && (eh == NULL || !UNDEFINED_WEAK_RESOLVED_TO_ZERO (info, eh))) @@ -118,7 +118,7 @@ index dc416a7f..b9f96729 100644 || (no_copyreloc_p && h->def_dynamic && !(h->root.u.def.section->flags & SEC_CODE)))) -@@ -3170,20 +3185,25 @@ elf_x86_64_relocate_section (bfd *output_bfd, +@@ -3165,20 +3180,25 @@ elf_x86_64_relocate_section (bfd *output || bfd_link_dll (info))) { bool fail = false; @@ -148,7 +148,7 @@ index dc416a7f..b9f96729 100644 } else if (no_copyreloc_p || bfd_link_dll (info)) { -@@ -3192,9 +3212,10 @@ elf_x86_64_relocate_section (bfd *output_bfd, +@@ -3187,9 +3207,10 @@ elf_x86_64_relocate_section (bfd *output relocations against default and protected symbols since address of protected function and location of protected data may not be in @@ -161,11 +161,11 @@ index dc416a7f..b9f96729 100644 } if (fail) -diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c -index d3441988e34..8f8fb086cd8 100644 ---- a/gas/config/tc-i386.c -+++ b/gas/config/tc-i386.c -@@ -8793,55 +8793,12 @@ output_branch (void) +Index: binutils-2.37/gas/config/tc-i386.c +=================================================================== +--- binutils-2.37.orig/gas/config/tc-i386.c ++++ binutils-2.37/gas/config/tc-i386.c +@@ -8770,55 +8770,12 @@ output_branch (void) frag_var (rs_machine_dependent, 5, i.reloc[0], subtype, sym, off, p); } @@ -221,7 +221,7 @@ index d3441988e34..8f8fb086cd8 100644 if (i.tm.opcode_modifier.jump == JUMP_BYTE) { -@@ -8915,17 +8872,8 @@ output_jump (void) +@@ -8892,17 +8849,8 @@ output_jump (void) abort (); } @@ -240,7 +240,7 @@ index d3441988e34..8f8fb086cd8 100644 /* All jumps handled here are signed, but don't unconditionally use a signed limit check for 32 and 16 bit jumps as we want to allow wrap -@@ -12184,10 +12132,6 @@ md_estimate_size_before_relax (fragS *fragP, segT segment) +@@ -12190,10 +12138,6 @@ md_estimate_size_before_relax (fragS *fr reloc_type = (enum bfd_reloc_code_real) fragP->fr_var; else if (size == 2) reloc_type = BFD_RELOC_16_PCREL; @@ -251,10 +251,10 @@ index d3441988e34..8f8fb086cd8 100644 else reloc_type = BFD_RELOC_32_PCREL; -diff --git a/gas/testsuite/gas/i386/ilp32/reloc64.d b/gas/testsuite/gas/i386/ilp32/reloc64.d -index 78ca3fd9e38..a961679754a 100644 ---- a/gas/testsuite/gas/i386/ilp32/reloc64.d -+++ b/gas/testsuite/gas/i386/ilp32/reloc64.d +Index: binutils-2.37/gas/testsuite/gas/i386/ilp32/reloc64.d +=================================================================== +--- binutils-2.37.orig/gas/testsuite/gas/i386/ilp32/reloc64.d ++++ binutils-2.37/gas/testsuite/gas/i386/ilp32/reloc64.d @@ -17,7 +17,7 @@ Disassembly of section \.text: .*[ ]+R_X86_64_PC8[ ]+xtrn\+0x0*1 .*[ ]+R_X86_64_PC32[ ]+xtrn-0x0*4 @@ -264,10 +264,10 @@ index 78ca3fd9e38..a961679754a 100644 .*[ ]+R_X86_64_PC8[ ]+xtrn-0x0*1 .*[ ]+R_X86_64_GOT32[ ]+xtrn .*[ ]+R_X86_64_GOT32[ ]+xtrn -diff --git a/gas/testsuite/gas/i386/ilp32/x86-64-branch.d b/gas/testsuite/gas/i386/ilp32/x86-64-branch.d -index acf8c42ca97..57845fdc208 100644 ---- a/gas/testsuite/gas/i386/ilp32/x86-64-branch.d -+++ b/gas/testsuite/gas/i386/ilp32/x86-64-branch.d +Index: binutils-2.37/gas/testsuite/gas/i386/ilp32/x86-64-branch.d +=================================================================== +--- binutils-2.37.orig/gas/testsuite/gas/i386/ilp32/x86-64-branch.d ++++ binutils-2.37/gas/testsuite/gas/i386/ilp32/x86-64-branch.d @@ -20,9 +20,9 @@ Disassembly of section .text: [ ]*[a-f0-9]+: 66 ff 20 data16 jmp \*\(%rax\) [ ]*[a-f0-9]+: e8 00 00 00 00 call (0x)?1f <.*> 1b: R_X86_64_PC32 \*ABS\*\+0x10003c @@ -281,10 +281,10 @@ index acf8c42ca97..57845fdc208 100644 [ ]*[a-f0-9]+: 66 c3 data16 ret * [ ]*[a-f0-9]+: 66 c2 08 00 data16 ret \$0x8 [ ]*[a-f0-9]+: 3e 74 03[ ]+je,pt +[0-9a-fx]+ <.*> -diff --git a/gas/testsuite/gas/i386/reloc64.d b/gas/testsuite/gas/i386/reloc64.d -index 540a9b77d35..ea16c68de4b 100644 ---- a/gas/testsuite/gas/i386/reloc64.d -+++ b/gas/testsuite/gas/i386/reloc64.d +Index: binutils-2.37/gas/testsuite/gas/i386/reloc64.d +=================================================================== +--- binutils-2.37.orig/gas/testsuite/gas/i386/reloc64.d ++++ binutils-2.37/gas/testsuite/gas/i386/reloc64.d @@ -20,7 +20,7 @@ Disassembly of section \.text: .*[ ]+R_X86_64_PC8[ ]+xtrn\+0x0*1 .*[ ]+R_X86_64_PC32[ ]+xtrn-0x0*4 @@ -294,10 +294,10 @@ index 540a9b77d35..ea16c68de4b 100644 .*[ ]+R_X86_64_PC8[ ]+xtrn-0x0*1 .*[ ]+R_X86_64_GOT64[ ]+xtrn .*[ ]+R_X86_64_GOT32[ ]+xtrn -diff --git a/gas/testsuite/gas/i386/x86-64-branch-2.d b/gas/testsuite/gas/i386/x86-64-branch-2.d -index fab75a6394c..e025de90b68 100644 ---- a/gas/testsuite/gas/i386/x86-64-branch-2.d -+++ b/gas/testsuite/gas/i386/x86-64-branch-2.d +Index: binutils-2.37/gas/testsuite/gas/i386/x86-64-branch-2.d +=================================================================== +--- binutils-2.37.orig/gas/testsuite/gas/i386/x86-64-branch-2.d ++++ binutils-2.37/gas/testsuite/gas/i386/x86-64-branch-2.d @@ -9,12 +9,12 @@ Disassembly of section .text: 0+ : @@ -313,10 +313,10 @@ index fab75a6394c..e025de90b68 100644 [ ]*[a-f0-9]+: 66 c3 retw * [ ]*[a-f0-9]+: 66 c2 08 00 retw \$0x8 #pass -diff --git a/gas/testsuite/gas/i386/x86-64-jump.d b/gas/testsuite/gas/i386/x86-64-jump.d -index 7d2c994ce26..58ad424badb 100644 ---- a/gas/testsuite/gas/i386/x86-64-jump.d -+++ b/gas/testsuite/gas/i386/x86-64-jump.d +Index: binutils-2.37/gas/testsuite/gas/i386/x86-64-jump.d +=================================================================== +--- binutils-2.37.orig/gas/testsuite/gas/i386/x86-64-jump.d ++++ binutils-2.37/gas/testsuite/gas/i386/x86-64-jump.d @@ -9,7 +9,7 @@ Disassembly of section .text: 0+ <.text>: @@ -335,10 +335,10 @@ index 7d2c994ce26..58ad424badb 100644 [ ]*[a-f0-9]+: ff 14 25 00 00 00 00 call \*0x0 3d: R_X86_64_32S xxx [ ]*[a-f0-9]+: ff d7 call \*%rdi [ ]*[a-f0-9]+: ff 17 call \*\(%rdi\) -diff --git a/gas/testsuite/gas/i386/x86-64-mpx-branch-1.d b/gas/testsuite/gas/i386/x86-64-mpx-branch-1.d -index 795f3fdacc4..1d692e8f04d 100644 ---- a/gas/testsuite/gas/i386/x86-64-mpx-branch-1.d -+++ b/gas/testsuite/gas/i386/x86-64-mpx-branch-1.d +Index: binutils-2.37/gas/testsuite/gas/i386/x86-64-mpx-branch-1.d +=================================================================== +--- binutils-2.37.orig/gas/testsuite/gas/i386/x86-64-mpx-branch-1.d ++++ binutils-2.37/gas/testsuite/gas/i386/x86-64-mpx-branch-1.d @@ -23,9 +23,9 @@ Disassembly of section .text: [ ]*[a-f0-9]+: f2 e8 00 00 00 00 bnd call 34 @@ -352,10 +352,10 @@ index 795f3fdacc4..1d692e8f04d 100644 [ ]*[a-f0-9]+: f2 e9 00 00 00 00 bnd jmp 4d 49: R_X86_64_PLT32 foo-0x4 [ ]*[a-f0-9]+: f2 0f 82 00 00 00 00 bnd jb 54 50: R_X86_64_PLT32 foo-0x4 [ ]*[a-f0-9]+: f2 e8 00 00 00 00 bnd call 5a 56: R_X86_64_PLT32 foo-0x4 -diff --git a/gas/testsuite/gas/i386/x86-64-nop-3.d b/gas/testsuite/gas/i386/x86-64-nop-3.d -index 1975481cc59..436487b5a99 100644 ---- a/gas/testsuite/gas/i386/x86-64-nop-3.d -+++ b/gas/testsuite/gas/i386/x86-64-nop-3.d +Index: binutils-2.37/gas/testsuite/gas/i386/x86-64-nop-3.d +=================================================================== +--- binutils-2.37.orig/gas/testsuite/gas/i386/x86-64-nop-3.d ++++ binutils-2.37/gas/testsuite/gas/i386/x86-64-nop-3.d @@ -18,5 +18,5 @@ Disassembly of section .text: Disassembly of section .altinstr_replacement: @@ -363,32 +363,32 @@ index 1975481cc59..436487b5a99 100644 - +[a-f0-9]+: e9 00 00 00 00 jmp 5 <_start\+0x5> 1: R_X86_64_PLT32 foo-0x4 + +[a-f0-9]+: e9 00 00 00 00 jmp 5 <_start\+0x5> 1: R_X86_64_PC32 foo-0x4 #pass -diff --git a/gas/testsuite/gas/i386/x86-64-nop-4.d b/gas/testsuite/gas/i386/x86-64-nop-4.d -index 2da858db994..e390628b335 100644 ---- a/gas/testsuite/gas/i386/x86-64-nop-4.d -+++ b/gas/testsuite/gas/i386/x86-64-nop-4.d -@@ -21,5 +21,5 @@ Disassembly of section .altinstr_replacement: +Index: binutils-2.37/gas/testsuite/gas/i386/x86-64-nop-4.d +=================================================================== +--- binutils-2.37.orig/gas/testsuite/gas/i386/x86-64-nop-4.d ++++ binutils-2.37/gas/testsuite/gas/i386/x86-64-nop-4.d +@@ -21,5 +21,5 @@ Disassembly of section .altinstr_replace +[a-f0-9]+: 89 c0 mov %eax,%eax +[a-f0-9]+: 89 c0 mov %eax,%eax +[a-f0-9]+: 89 c0 mov %eax,%eax - +[a-f0-9]+: e9 00 00 00 00 jmp b <_start\+0xb> 7: R_X86_64_PLT32 foo-0x4 + +[a-f0-9]+: e9 00 00 00 00 jmp b <_start\+0xb> 7: R_X86_64_PC32 foo-0x4 #pass -diff --git a/gas/testsuite/gas/i386/x86-64-nop-5.d b/gas/testsuite/gas/i386/x86-64-nop-5.d -index d5c84c1edf8..69820d54de8 100644 ---- a/gas/testsuite/gas/i386/x86-64-nop-5.d -+++ b/gas/testsuite/gas/i386/x86-64-nop-5.d -@@ -24,5 +24,5 @@ Disassembly of section .altinstr_replacement: +Index: binutils-2.37/gas/testsuite/gas/i386/x86-64-nop-5.d +=================================================================== +--- binutils-2.37.orig/gas/testsuite/gas/i386/x86-64-nop-5.d ++++ binutils-2.37/gas/testsuite/gas/i386/x86-64-nop-5.d +@@ -24,5 +24,5 @@ Disassembly of section .altinstr_replace +[a-f0-9]+: 89 c0 mov %eax,%eax +[a-f0-9]+: 89 c0 mov %eax,%eax +[a-f0-9]+: 89 c0 mov %eax,%eax - +[a-f0-9]+: e9 00 00 00 00 jmp d <_start\+0xd> 9: R_X86_64_PLT32 foo-0x4 + +[a-f0-9]+: e9 00 00 00 00 jmp d <_start\+0xd> 9: R_X86_64_PC32 foo-0x4 #pass -diff --git a/gas/testsuite/gas/i386/x86-64-relax-2.d b/gas/testsuite/gas/i386/x86-64-relax-2.d -index fba47c14850..0949ab23907 100644 ---- a/gas/testsuite/gas/i386/x86-64-relax-2.d -+++ b/gas/testsuite/gas/i386/x86-64-relax-2.d +Index: binutils-2.37/gas/testsuite/gas/i386/x86-64-relax-2.d +=================================================================== +--- binutils-2.37.orig/gas/testsuite/gas/i386/x86-64-relax-2.d ++++ binutils-2.37/gas/testsuite/gas/i386/x86-64-relax-2.d @@ -11,12 +11,12 @@ Disassembly of section .text: 0+ : [ ]*[a-f0-9]+: eb 24 jmp 26 @@ -407,10 +407,10 @@ index fba47c14850..0949ab23907 100644 0+22 : [ ]*[a-f0-9]+: c3 ret * -diff --git a/gas/testsuite/gas/i386/x86-64-relax-3.d b/gas/testsuite/gas/i386/x86-64-relax-3.d -index 01df9ef340e..d16e6a55395 100644 ---- a/gas/testsuite/gas/i386/x86-64-relax-3.d -+++ b/gas/testsuite/gas/i386/x86-64-relax-3.d +Index: binutils-2.37/gas/testsuite/gas/i386/x86-64-relax-3.d +=================================================================== +--- binutils-2.37.orig/gas/testsuite/gas/i386/x86-64-relax-3.d ++++ binutils-2.37/gas/testsuite/gas/i386/x86-64-relax-3.d @@ -12,10 +12,10 @@ Disassembly of section .text: [ ]*[a-f0-9]+: eb 1b jmp 1f [ ]*[a-f0-9]+: eb 1b jmp 21 @@ -426,37 +426,34 @@ index 01df9ef340e..d16e6a55395 100644 0+1f : [ ]*[a-f0-9]+: c3 ret * -diff --git a/ld/testsuite/ld-x86-64/mpx1c.rd b/ld/testsuite/ld-x86-64/mpx1c.rd -index d66524c8834..d3b292cbdc1 100644 ---- a/ld/testsuite/ld-x86-64/mpx1c.rd -+++ b/ld/testsuite/ld-x86-64/mpx1c.rd +Index: binutils-2.37/ld/testsuite/ld-x86-64/mpx1c.rd +=================================================================== +--- binutils-2.37.orig/ld/testsuite/ld-x86-64/mpx1c.rd ++++ binutils-2.37/ld/testsuite/ld-x86-64/mpx1c.rd @@ -1,3 +1,3 @@ #... -[0-9a-f ]+R_X86_64_PLT32 +0+ +.* +[0-9a-f ]+R_X86_64_PC32 +0+ +.* #... -diff --git a/ld/testsuite/ld-x86-64/pr22791-1.err b/ld/testsuite/ld-x86-64/pr22791-1.err -deleted file mode 100644 -index 8c5565992e7..00000000000 ---- a/ld/testsuite/ld-x86-64/pr22791-1.err +Index: binutils-2.37/ld/testsuite/ld-x86-64/pr22791-1.err +=================================================================== +--- binutils-2.37.orig/ld/testsuite/ld-x86-64/pr22791-1.err +++ /dev/null @@ -1,2 +0,0 @@ -.*relocation R_X86_64_PC32 against symbol `foo' can not be used when making a PIE object; recompile with -fPIE -#... -diff --git a/ld/testsuite/ld-x86-64/pr22791-1a.c b/ld/testsuite/ld-x86-64/pr22791-1a.c -deleted file mode 100644 -index cd0130cacdf..00000000000 ---- a/ld/testsuite/ld-x86-64/pr22791-1a.c +Index: binutils-2.37/ld/testsuite/ld-x86-64/pr22791-1a.c +=================================================================== +--- binutils-2.37.orig/ld/testsuite/ld-x86-64/pr22791-1a.c +++ /dev/null @@ -1,4 +0,0 @@ -void -foo (void) -{ -} -diff --git a/ld/testsuite/ld-x86-64/pr22791-1b.s b/ld/testsuite/ld-x86-64/pr22791-1b.s -deleted file mode 100644 -index 9751db49aa5..00000000000 ---- a/ld/testsuite/ld-x86-64/pr22791-1b.s +Index: binutils-2.37/ld/testsuite/ld-x86-64/pr22791-1b.s +=================================================================== +--- binutils-2.37.orig/ld/testsuite/ld-x86-64/pr22791-1b.s +++ /dev/null @@ -1,6 +0,0 @@ - .text @@ -465,10 +462,9 @@ index 9751db49aa5..00000000000 -main: - movl foo(%rip), %eax - .size main, .-main -diff --git a/ld/testsuite/ld-x86-64/pr22791-2.rd b/ld/testsuite/ld-x86-64/pr22791-2.rd -deleted file mode 100644 -index 70deb30d84d..00000000000 ---- a/ld/testsuite/ld-x86-64/pr22791-2.rd +Index: binutils-2.37/ld/testsuite/ld-x86-64/pr22791-2.rd +=================================================================== +--- binutils-2.37.orig/ld/testsuite/ld-x86-64/pr22791-2.rd +++ /dev/null @@ -1,6 +0,0 @@ -#failif @@ -477,10 +473,9 @@ index 70deb30d84d..00000000000 -#... -[0-9a-f ]+R_X86_64_NONE.* -#... -diff --git a/ld/testsuite/ld-x86-64/pr22791-2a.s b/ld/testsuite/ld-x86-64/pr22791-2a.s -deleted file mode 100644 -index 0a855024d74..00000000000 ---- a/ld/testsuite/ld-x86-64/pr22791-2a.s +Index: binutils-2.37/ld/testsuite/ld-x86-64/pr22791-2a.s +=================================================================== +--- binutils-2.37.orig/ld/testsuite/ld-x86-64/pr22791-2a.s +++ /dev/null @@ -1,8 +0,0 @@ - .text @@ -491,10 +486,9 @@ index 0a855024d74..00000000000 - jmp bar - .size foo, .-foo - .section .note.GNU-stack,"",@progbits -diff --git a/ld/testsuite/ld-x86-64/pr22791-2b.c b/ld/testsuite/ld-x86-64/pr22791-2b.c -deleted file mode 100644 -index 79ef27c0857..00000000000 ---- a/ld/testsuite/ld-x86-64/pr22791-2b.c +Index: binutils-2.37/ld/testsuite/ld-x86-64/pr22791-2b.c +=================================================================== +--- binutils-2.37.orig/ld/testsuite/ld-x86-64/pr22791-2b.c +++ /dev/null @@ -1,7 +0,0 @@ -#include @@ -504,10 +498,9 @@ index 79ef27c0857..00000000000 -{ - puts ("PASS"); -} -diff --git a/ld/testsuite/ld-x86-64/pr22791-2c.s b/ld/testsuite/ld-x86-64/pr22791-2c.s -deleted file mode 100644 -index 1460d1b8288..00000000000 ---- a/ld/testsuite/ld-x86-64/pr22791-2c.s +Index: binutils-2.37/ld/testsuite/ld-x86-64/pr22791-2c.s +=================================================================== +--- binutils-2.37.orig/ld/testsuite/ld-x86-64/pr22791-2c.s +++ /dev/null @@ -1,12 +0,0 @@ - .text @@ -522,10 +515,10 @@ index 1460d1b8288..00000000000 - ret - .size main, .-main - .section .note.GNU-stack,"",@progbits -diff --git a/ld/testsuite/ld-x86-64/pr22842b.S b/ld/testsuite/ld-x86-64/pr22842b.S -index f0659cd901e..b9dd81345b7 100644 ---- a/ld/testsuite/ld-x86-64/pr22842b.S -+++ b/ld/testsuite/ld-x86-64/pr22842b.S +Index: binutils-2.37/ld/testsuite/ld-x86-64/pr22842b.S +=================================================================== +--- binutils-2.37.orig/ld/testsuite/ld-x86-64/pr22842b.S ++++ binutils-2.37/ld/testsuite/ld-x86-64/pr22842b.S @@ -7,7 +7,7 @@ main: leaq bar(%rip), %rdi addq %rax, %rdi @@ -535,15 +528,14 @@ index f0659cd901e..b9dd81345b7 100644 xorl %eax, %eax popq %rcx retq -diff --git a/ld/testsuite/ld-x86-64/x86-64.exp b/ld/testsuite/ld-x86-64/x86-64.exp -index 17fd10ee121..b4ae52ab376 100644 ---- a/ld/testsuite/ld-x86-64/x86-64.exp -+++ b/ld/testsuite/ld-x86-64/x86-64.exp -@@ -1264,44 +1264,6 @@ if { [isnative] && [check_compiler_available] } { - {readelf -lW pr22393-3b.rd}} \ +Index: binutils-2.37/ld/testsuite/ld-x86-64/x86-64.exp +=================================================================== +--- binutils-2.37.orig/ld/testsuite/ld-x86-64/x86-64.exp ++++ binutils-2.37/ld/testsuite/ld-x86-64/x86-64.exp +@@ -1272,44 +1272,6 @@ if { [isnative] && [check_compiler_avail "pr22393-3-static" \ ] \ -- [list \ + [list \ - "Build pr22791-1.so" \ - "-shared" \ - "-fPIC -Wa,-mx86-used-note=yes" \ @@ -581,14 +573,14 @@ index 17fd10ee121..b4ae52ab376 100644 - {{readelf -drW pr22791-2.rd}} \ - "pr22791-2" \ - ] \ - [list \ +- [list \ "Build pr22842.so" \ "-shared" \ -@@ -1703,15 +1665,6 @@ if { [isnative] && [check_compiler_available] } { - "pr22393-3-static" \ + "-fPIC -Wa,-mx86-used-note=yes" \ +@@ -1719,15 +1681,6 @@ if { [isnative] && [check_compiler_avail "pass.out" \ ] \ -- [list \ + [list \ - "Run pr22791-2" \ - "-pie -Wl,--no-as-needed tmpdir/pr22791-2.so" \ - "-Wa,-mx86-used-note=yes" \ @@ -597,6 +589,32 @@ index 17fd10ee121..b4ae52ab376 100644 - "pass.out" \ - "$NOPIE_CFLAGS" \ - ] \ - [list \ +- [list \ "Run pr22842" \ "-pie -Wl,--no-as-needed tmpdir/pr22842.so" \ + "-Wa,-mx86-used-note=yes" \ +Index: binutils-2.37/gas/testsuite/gas/i386/x86-64-branch-3.d +=================================================================== +--- binutils-2.37.orig/gas/testsuite/gas/i386/x86-64-branch-3.d ++++ binutils-2.37/gas/testsuite/gas/i386/x86-64-branch-3.d +@@ -8,15 +8,15 @@ + Disassembly of section .text: + + 0+ : +-[ ]*[a-f0-9]+: 66 e9 00 00 00 00 data16 jmp 6 2: R_X86_64_PLT32 foo-0x4 +-[ ]*[a-f0-9]+: 66 48 e9 00 00 00 00 data16 rex\.W jmp d 9: R_X86_64_PLT32 foo-0x4 ++[ ]*[a-f0-9]+: 66 e9 00 00 00 00 data16 jmp 6 2: R_X86_64_PC32 foo-0x4 ++[ ]*[a-f0-9]+: 66 48 e9 00 00 00 00 data16 rex\.W jmp d 9: R_X86_64_PC32 foo-0x4 + + 0+d : + [ ]*[a-f0-9]+: 89 c3 mov %eax,%ebx +-[ ]*[a-f0-9]+: 66 e8 00 00 00 00 data16 call 15 11: R_X86_64_PLT32 foo-0x4 +-[ ]*[a-f0-9]+: 66 48 e8 00 00 00 00 data16 rex\.W call 1c 18: R_X86_64_PLT32 foo-0x4 ++[ ]*[a-f0-9]+: 66 e8 00 00 00 00 data16 call 15 11: R_X86_64_PC32 foo-0x4 ++[ ]*[a-f0-9]+: 66 48 e8 00 00 00 00 data16 rex\.W call 1c 18: R_X86_64_PC32 foo-0x4 + [ ]*[a-f0-9]+: 66 c7 f8 00 00 xbeginw 21 1f: R_X86_64_PC16 foo-0x2 +-[ ]*[a-f0-9]+: 66 48 c7 f8 00 00 00 00 data16 rex\.W xbegin 29 25: R_X86_64_PLT32 foo-0x4 ++[ ]*[a-f0-9]+: 66 48 c7 f8 00 00 00 00 data16 rex\.W xbegin 29 25: R_X86_64_PC32 foo-0x4 + [ ]*[a-f0-9]+: 48 ff 18 lcallq \*\(%rax\) + [ ]*[a-f0-9]+: 48 ff 29 ljmpq \*\(%rcx\) + #pass diff --git a/binutils.changes b/binutils.changes index f657b19..55207d8 100644 --- a/binutils.changes +++ b/binutils.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Wed Sep 8 15:09:58 UTC 2021 - Michael Matz + +- Adjust for testsuite fails on older products that configure + binutils in different ways, adds binutils-compat-old-behaviour.diff + and adjusts binutils-revert-nm-symversion.diff and + binutils-revert-plt32-in-branches.diff. + ------------------------------------------------------------------- Tue Aug 3 13:36:19 UTC 2021 - Martin Liška diff --git a/binutils.spec b/binutils.spec index af17631..764a535 100644 --- a/binutils.spec +++ b/binutils.spec @@ -101,6 +101,7 @@ Patch38: binutils-fix-invalid-op-errata.diff Patch39: binutils-revert-nm-symversion.diff Patch40: binutils-fix-abierrormsg.diff Patch41: binutils-fix-relax.diff +Patch42: binutils-compat-old-behaviour.diff Patch100: add-ulp-section.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -192,6 +193,9 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch39 -p1 %patch40 -p1 %patch41 -p1 +%if %{suse_version} < 1550 +%patch42 -p1 +%endif %patch100 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h @@ -369,7 +373,7 @@ cd build-dir %if 0%{?cross:1} make -k check CFLAGS="-O2 -g" CXXFLAGS="-O2 -g" CFLAGS_FOR_TARGET="-O2 -g" CXXFLAGS_FOR_TARGET="-O2 -g" || %{make_check_handling} %else -make -k check CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" || %{make_check_handling} +make -k check CFLAGS="-g $RPM_OPT_FLAGS" CXXFLAGS="-g $RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" || %{make_check_handling} %endif %install diff --git a/cross-aarch64-binutils.changes b/cross-aarch64-binutils.changes index f657b19..55207d8 100644 --- a/cross-aarch64-binutils.changes +++ b/cross-aarch64-binutils.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Wed Sep 8 15:09:58 UTC 2021 - Michael Matz + +- Adjust for testsuite fails on older products that configure + binutils in different ways, adds binutils-compat-old-behaviour.diff + and adjusts binutils-revert-nm-symversion.diff and + binutils-revert-plt32-in-branches.diff. + ------------------------------------------------------------------- Tue Aug 3 13:36:19 UTC 2021 - Martin Liška diff --git a/cross-aarch64-binutils.spec b/cross-aarch64-binutils.spec index 602deda..8281ce8 100644 --- a/cross-aarch64-binutils.spec +++ b/cross-aarch64-binutils.spec @@ -104,6 +104,7 @@ Patch38: binutils-fix-invalid-op-errata.diff Patch39: binutils-revert-nm-symversion.diff Patch40: binutils-fix-abierrormsg.diff Patch41: binutils-fix-relax.diff +Patch42: binutils-compat-old-behaviour.diff Patch100: add-ulp-section.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -195,6 +196,9 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch39 -p1 %patch40 -p1 %patch41 -p1 +%if %{suse_version} < 1550 +%patch42 -p1 +%endif %patch100 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h @@ -372,7 +376,7 @@ cd build-dir %if 0%{?cross:1} make -k check CFLAGS="-O2 -g" CXXFLAGS="-O2 -g" CFLAGS_FOR_TARGET="-O2 -g" CXXFLAGS_FOR_TARGET="-O2 -g" || %{make_check_handling} %else -make -k check CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" || %{make_check_handling} +make -k check CFLAGS="-g $RPM_OPT_FLAGS" CXXFLAGS="-g $RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" || %{make_check_handling} %endif %install diff --git a/cross-arm-binutils.changes b/cross-arm-binutils.changes index f657b19..55207d8 100644 --- a/cross-arm-binutils.changes +++ b/cross-arm-binutils.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Wed Sep 8 15:09:58 UTC 2021 - Michael Matz + +- Adjust for testsuite fails on older products that configure + binutils in different ways, adds binutils-compat-old-behaviour.diff + and adjusts binutils-revert-nm-symversion.diff and + binutils-revert-plt32-in-branches.diff. + ------------------------------------------------------------------- Tue Aug 3 13:36:19 UTC 2021 - Martin Liška diff --git a/cross-arm-binutils.spec b/cross-arm-binutils.spec index bc23ce5..611756a 100644 --- a/cross-arm-binutils.spec +++ b/cross-arm-binutils.spec @@ -104,6 +104,7 @@ Patch38: binutils-fix-invalid-op-errata.diff Patch39: binutils-revert-nm-symversion.diff Patch40: binutils-fix-abierrormsg.diff Patch41: binutils-fix-relax.diff +Patch42: binutils-compat-old-behaviour.diff Patch100: add-ulp-section.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -195,6 +196,9 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch39 -p1 %patch40 -p1 %patch41 -p1 +%if %{suse_version} < 1550 +%patch42 -p1 +%endif %patch100 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h @@ -372,7 +376,7 @@ cd build-dir %if 0%{?cross:1} make -k check CFLAGS="-O2 -g" CXXFLAGS="-O2 -g" CFLAGS_FOR_TARGET="-O2 -g" CXXFLAGS_FOR_TARGET="-O2 -g" || %{make_check_handling} %else -make -k check CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" || %{make_check_handling} +make -k check CFLAGS="-g $RPM_OPT_FLAGS" CXXFLAGS="-g $RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" || %{make_check_handling} %endif %install diff --git a/cross-avr-binutils.changes b/cross-avr-binutils.changes index f657b19..55207d8 100644 --- a/cross-avr-binutils.changes +++ b/cross-avr-binutils.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Wed Sep 8 15:09:58 UTC 2021 - Michael Matz + +- Adjust for testsuite fails on older products that configure + binutils in different ways, adds binutils-compat-old-behaviour.diff + and adjusts binutils-revert-nm-symversion.diff and + binutils-revert-plt32-in-branches.diff. + ------------------------------------------------------------------- Tue Aug 3 13:36:19 UTC 2021 - Martin Liška diff --git a/cross-avr-binutils.spec b/cross-avr-binutils.spec index b08a703..7863b61 100644 --- a/cross-avr-binutils.spec +++ b/cross-avr-binutils.spec @@ -104,6 +104,7 @@ Patch38: binutils-fix-invalid-op-errata.diff Patch39: binutils-revert-nm-symversion.diff Patch40: binutils-fix-abierrormsg.diff Patch41: binutils-fix-relax.diff +Patch42: binutils-compat-old-behaviour.diff Patch100: add-ulp-section.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -195,6 +196,9 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch39 -p1 %patch40 -p1 %patch41 -p1 +%if %{suse_version} < 1550 +%patch42 -p1 +%endif %patch100 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h @@ -372,7 +376,7 @@ cd build-dir %if 0%{?cross:1} make -k check CFLAGS="-O2 -g" CXXFLAGS="-O2 -g" CFLAGS_FOR_TARGET="-O2 -g" CXXFLAGS_FOR_TARGET="-O2 -g" || %{make_check_handling} %else -make -k check CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" || %{make_check_handling} +make -k check CFLAGS="-g $RPM_OPT_FLAGS" CXXFLAGS="-g $RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" || %{make_check_handling} %endif %install diff --git a/cross-epiphany-binutils.changes b/cross-epiphany-binutils.changes index f657b19..55207d8 100644 --- a/cross-epiphany-binutils.changes +++ b/cross-epiphany-binutils.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Wed Sep 8 15:09:58 UTC 2021 - Michael Matz + +- Adjust for testsuite fails on older products that configure + binutils in different ways, adds binutils-compat-old-behaviour.diff + and adjusts binutils-revert-nm-symversion.diff and + binutils-revert-plt32-in-branches.diff. + ------------------------------------------------------------------- Tue Aug 3 13:36:19 UTC 2021 - Martin Liška diff --git a/cross-epiphany-binutils.spec b/cross-epiphany-binutils.spec index b088fbe..c4dc222 100644 --- a/cross-epiphany-binutils.spec +++ b/cross-epiphany-binutils.spec @@ -104,6 +104,7 @@ Patch38: binutils-fix-invalid-op-errata.diff Patch39: binutils-revert-nm-symversion.diff Patch40: binutils-fix-abierrormsg.diff Patch41: binutils-fix-relax.diff +Patch42: binutils-compat-old-behaviour.diff Patch100: add-ulp-section.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -195,6 +196,9 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch39 -p1 %patch40 -p1 %patch41 -p1 +%if %{suse_version} < 1550 +%patch42 -p1 +%endif %patch100 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h @@ -372,7 +376,7 @@ cd build-dir %if 0%{?cross:1} make -k check CFLAGS="-O2 -g" CXXFLAGS="-O2 -g" CFLAGS_FOR_TARGET="-O2 -g" CXXFLAGS_FOR_TARGET="-O2 -g" || %{make_check_handling} %else -make -k check CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" || %{make_check_handling} +make -k check CFLAGS="-g $RPM_OPT_FLAGS" CXXFLAGS="-g $RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" || %{make_check_handling} %endif %install diff --git a/cross-hppa-binutils.changes b/cross-hppa-binutils.changes index f657b19..55207d8 100644 --- a/cross-hppa-binutils.changes +++ b/cross-hppa-binutils.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Wed Sep 8 15:09:58 UTC 2021 - Michael Matz + +- Adjust for testsuite fails on older products that configure + binutils in different ways, adds binutils-compat-old-behaviour.diff + and adjusts binutils-revert-nm-symversion.diff and + binutils-revert-plt32-in-branches.diff. + ------------------------------------------------------------------- Tue Aug 3 13:36:19 UTC 2021 - Martin Liška diff --git a/cross-hppa-binutils.spec b/cross-hppa-binutils.spec index 4e12f6c..6581bf2 100644 --- a/cross-hppa-binutils.spec +++ b/cross-hppa-binutils.spec @@ -104,6 +104,7 @@ Patch38: binutils-fix-invalid-op-errata.diff Patch39: binutils-revert-nm-symversion.diff Patch40: binutils-fix-abierrormsg.diff Patch41: binutils-fix-relax.diff +Patch42: binutils-compat-old-behaviour.diff Patch100: add-ulp-section.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -195,6 +196,9 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch39 -p1 %patch40 -p1 %patch41 -p1 +%if %{suse_version} < 1550 +%patch42 -p1 +%endif %patch100 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h @@ -372,7 +376,7 @@ cd build-dir %if 0%{?cross:1} make -k check CFLAGS="-O2 -g" CXXFLAGS="-O2 -g" CFLAGS_FOR_TARGET="-O2 -g" CXXFLAGS_FOR_TARGET="-O2 -g" || %{make_check_handling} %else -make -k check CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" || %{make_check_handling} +make -k check CFLAGS="-g $RPM_OPT_FLAGS" CXXFLAGS="-g $RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" || %{make_check_handling} %endif %install diff --git a/cross-hppa64-binutils.changes b/cross-hppa64-binutils.changes index f657b19..55207d8 100644 --- a/cross-hppa64-binutils.changes +++ b/cross-hppa64-binutils.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Wed Sep 8 15:09:58 UTC 2021 - Michael Matz + +- Adjust for testsuite fails on older products that configure + binutils in different ways, adds binutils-compat-old-behaviour.diff + and adjusts binutils-revert-nm-symversion.diff and + binutils-revert-plt32-in-branches.diff. + ------------------------------------------------------------------- Tue Aug 3 13:36:19 UTC 2021 - Martin Liška diff --git a/cross-hppa64-binutils.spec b/cross-hppa64-binutils.spec index 29487e4..74b60c3 100644 --- a/cross-hppa64-binutils.spec +++ b/cross-hppa64-binutils.spec @@ -104,6 +104,7 @@ Patch38: binutils-fix-invalid-op-errata.diff Patch39: binutils-revert-nm-symversion.diff Patch40: binutils-fix-abierrormsg.diff Patch41: binutils-fix-relax.diff +Patch42: binutils-compat-old-behaviour.diff Patch100: add-ulp-section.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -195,6 +196,9 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch39 -p1 %patch40 -p1 %patch41 -p1 +%if %{suse_version} < 1550 +%patch42 -p1 +%endif %patch100 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h @@ -372,7 +376,7 @@ cd build-dir %if 0%{?cross:1} make -k check CFLAGS="-O2 -g" CXXFLAGS="-O2 -g" CFLAGS_FOR_TARGET="-O2 -g" CXXFLAGS_FOR_TARGET="-O2 -g" || %{make_check_handling} %else -make -k check CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" || %{make_check_handling} +make -k check CFLAGS="-g $RPM_OPT_FLAGS" CXXFLAGS="-g $RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" || %{make_check_handling} %endif %install diff --git a/cross-i386-binutils.changes b/cross-i386-binutils.changes index f657b19..55207d8 100644 --- a/cross-i386-binutils.changes +++ b/cross-i386-binutils.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Wed Sep 8 15:09:58 UTC 2021 - Michael Matz + +- Adjust for testsuite fails on older products that configure + binutils in different ways, adds binutils-compat-old-behaviour.diff + and adjusts binutils-revert-nm-symversion.diff and + binutils-revert-plt32-in-branches.diff. + ------------------------------------------------------------------- Tue Aug 3 13:36:19 UTC 2021 - Martin Liška diff --git a/cross-i386-binutils.spec b/cross-i386-binutils.spec index e153186..ca65215 100644 --- a/cross-i386-binutils.spec +++ b/cross-i386-binutils.spec @@ -104,6 +104,7 @@ Patch38: binutils-fix-invalid-op-errata.diff Patch39: binutils-revert-nm-symversion.diff Patch40: binutils-fix-abierrormsg.diff Patch41: binutils-fix-relax.diff +Patch42: binutils-compat-old-behaviour.diff Patch100: add-ulp-section.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -195,6 +196,9 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch39 -p1 %patch40 -p1 %patch41 -p1 +%if %{suse_version} < 1550 +%patch42 -p1 +%endif %patch100 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h @@ -372,7 +376,7 @@ cd build-dir %if 0%{?cross:1} make -k check CFLAGS="-O2 -g" CXXFLAGS="-O2 -g" CFLAGS_FOR_TARGET="-O2 -g" CXXFLAGS_FOR_TARGET="-O2 -g" || %{make_check_handling} %else -make -k check CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" || %{make_check_handling} +make -k check CFLAGS="-g $RPM_OPT_FLAGS" CXXFLAGS="-g $RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" || %{make_check_handling} %endif %install diff --git a/cross-ia64-binutils.changes b/cross-ia64-binutils.changes index f657b19..55207d8 100644 --- a/cross-ia64-binutils.changes +++ b/cross-ia64-binutils.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Wed Sep 8 15:09:58 UTC 2021 - Michael Matz + +- Adjust for testsuite fails on older products that configure + binutils in different ways, adds binutils-compat-old-behaviour.diff + and adjusts binutils-revert-nm-symversion.diff and + binutils-revert-plt32-in-branches.diff. + ------------------------------------------------------------------- Tue Aug 3 13:36:19 UTC 2021 - Martin Liška diff --git a/cross-ia64-binutils.spec b/cross-ia64-binutils.spec index ea4d58b..246a48c 100644 --- a/cross-ia64-binutils.spec +++ b/cross-ia64-binutils.spec @@ -104,6 +104,7 @@ Patch38: binutils-fix-invalid-op-errata.diff Patch39: binutils-revert-nm-symversion.diff Patch40: binutils-fix-abierrormsg.diff Patch41: binutils-fix-relax.diff +Patch42: binutils-compat-old-behaviour.diff Patch100: add-ulp-section.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -195,6 +196,9 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch39 -p1 %patch40 -p1 %patch41 -p1 +%if %{suse_version} < 1550 +%patch42 -p1 +%endif %patch100 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h @@ -372,7 +376,7 @@ cd build-dir %if 0%{?cross:1} make -k check CFLAGS="-O2 -g" CXXFLAGS="-O2 -g" CFLAGS_FOR_TARGET="-O2 -g" CXXFLAGS_FOR_TARGET="-O2 -g" || %{make_check_handling} %else -make -k check CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" || %{make_check_handling} +make -k check CFLAGS="-g $RPM_OPT_FLAGS" CXXFLAGS="-g $RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" || %{make_check_handling} %endif %install diff --git a/cross-m68k-binutils.changes b/cross-m68k-binutils.changes index f657b19..55207d8 100644 --- a/cross-m68k-binutils.changes +++ b/cross-m68k-binutils.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Wed Sep 8 15:09:58 UTC 2021 - Michael Matz + +- Adjust for testsuite fails on older products that configure + binutils in different ways, adds binutils-compat-old-behaviour.diff + and adjusts binutils-revert-nm-symversion.diff and + binutils-revert-plt32-in-branches.diff. + ------------------------------------------------------------------- Tue Aug 3 13:36:19 UTC 2021 - Martin Liška diff --git a/cross-m68k-binutils.spec b/cross-m68k-binutils.spec index 376bf81..df3d2b2 100644 --- a/cross-m68k-binutils.spec +++ b/cross-m68k-binutils.spec @@ -104,6 +104,7 @@ Patch38: binutils-fix-invalid-op-errata.diff Patch39: binutils-revert-nm-symversion.diff Patch40: binutils-fix-abierrormsg.diff Patch41: binutils-fix-relax.diff +Patch42: binutils-compat-old-behaviour.diff Patch100: add-ulp-section.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -195,6 +196,9 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch39 -p1 %patch40 -p1 %patch41 -p1 +%if %{suse_version} < 1550 +%patch42 -p1 +%endif %patch100 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h @@ -372,7 +376,7 @@ cd build-dir %if 0%{?cross:1} make -k check CFLAGS="-O2 -g" CXXFLAGS="-O2 -g" CFLAGS_FOR_TARGET="-O2 -g" CXXFLAGS_FOR_TARGET="-O2 -g" || %{make_check_handling} %else -make -k check CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" || %{make_check_handling} +make -k check CFLAGS="-g $RPM_OPT_FLAGS" CXXFLAGS="-g $RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" || %{make_check_handling} %endif %install diff --git a/cross-mips-binutils.changes b/cross-mips-binutils.changes index f657b19..55207d8 100644 --- a/cross-mips-binutils.changes +++ b/cross-mips-binutils.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Wed Sep 8 15:09:58 UTC 2021 - Michael Matz + +- Adjust for testsuite fails on older products that configure + binutils in different ways, adds binutils-compat-old-behaviour.diff + and adjusts binutils-revert-nm-symversion.diff and + binutils-revert-plt32-in-branches.diff. + ------------------------------------------------------------------- Tue Aug 3 13:36:19 UTC 2021 - Martin Liška diff --git a/cross-mips-binutils.spec b/cross-mips-binutils.spec index 4522046..8715002 100644 --- a/cross-mips-binutils.spec +++ b/cross-mips-binutils.spec @@ -104,6 +104,7 @@ Patch38: binutils-fix-invalid-op-errata.diff Patch39: binutils-revert-nm-symversion.diff Patch40: binutils-fix-abierrormsg.diff Patch41: binutils-fix-relax.diff +Patch42: binutils-compat-old-behaviour.diff Patch100: add-ulp-section.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -195,6 +196,9 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch39 -p1 %patch40 -p1 %patch41 -p1 +%if %{suse_version} < 1550 +%patch42 -p1 +%endif %patch100 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h @@ -372,7 +376,7 @@ cd build-dir %if 0%{?cross:1} make -k check CFLAGS="-O2 -g" CXXFLAGS="-O2 -g" CFLAGS_FOR_TARGET="-O2 -g" CXXFLAGS_FOR_TARGET="-O2 -g" || %{make_check_handling} %else -make -k check CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" || %{make_check_handling} +make -k check CFLAGS="-g $RPM_OPT_FLAGS" CXXFLAGS="-g $RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" || %{make_check_handling} %endif %install diff --git a/cross-ppc-binutils.changes b/cross-ppc-binutils.changes index f657b19..55207d8 100644 --- a/cross-ppc-binutils.changes +++ b/cross-ppc-binutils.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Wed Sep 8 15:09:58 UTC 2021 - Michael Matz + +- Adjust for testsuite fails on older products that configure + binutils in different ways, adds binutils-compat-old-behaviour.diff + and adjusts binutils-revert-nm-symversion.diff and + binutils-revert-plt32-in-branches.diff. + ------------------------------------------------------------------- Tue Aug 3 13:36:19 UTC 2021 - Martin Liška diff --git a/cross-ppc-binutils.spec b/cross-ppc-binutils.spec index 140353d..56a0ffa 100644 --- a/cross-ppc-binutils.spec +++ b/cross-ppc-binutils.spec @@ -104,6 +104,7 @@ Patch38: binutils-fix-invalid-op-errata.diff Patch39: binutils-revert-nm-symversion.diff Patch40: binutils-fix-abierrormsg.diff Patch41: binutils-fix-relax.diff +Patch42: binutils-compat-old-behaviour.diff Patch100: add-ulp-section.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -195,6 +196,9 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch39 -p1 %patch40 -p1 %patch41 -p1 +%if %{suse_version} < 1550 +%patch42 -p1 +%endif %patch100 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h @@ -372,7 +376,7 @@ cd build-dir %if 0%{?cross:1} make -k check CFLAGS="-O2 -g" CXXFLAGS="-O2 -g" CFLAGS_FOR_TARGET="-O2 -g" CXXFLAGS_FOR_TARGET="-O2 -g" || %{make_check_handling} %else -make -k check CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" || %{make_check_handling} +make -k check CFLAGS="-g $RPM_OPT_FLAGS" CXXFLAGS="-g $RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" || %{make_check_handling} %endif %install diff --git a/cross-ppc64-binutils.changes b/cross-ppc64-binutils.changes index f657b19..55207d8 100644 --- a/cross-ppc64-binutils.changes +++ b/cross-ppc64-binutils.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Wed Sep 8 15:09:58 UTC 2021 - Michael Matz + +- Adjust for testsuite fails on older products that configure + binutils in different ways, adds binutils-compat-old-behaviour.diff + and adjusts binutils-revert-nm-symversion.diff and + binutils-revert-plt32-in-branches.diff. + ------------------------------------------------------------------- Tue Aug 3 13:36:19 UTC 2021 - Martin Liška diff --git a/cross-ppc64-binutils.spec b/cross-ppc64-binutils.spec index 26dabb2..1772aaa 100644 --- a/cross-ppc64-binutils.spec +++ b/cross-ppc64-binutils.spec @@ -104,6 +104,7 @@ Patch38: binutils-fix-invalid-op-errata.diff Patch39: binutils-revert-nm-symversion.diff Patch40: binutils-fix-abierrormsg.diff Patch41: binutils-fix-relax.diff +Patch42: binutils-compat-old-behaviour.diff Patch100: add-ulp-section.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -195,6 +196,9 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch39 -p1 %patch40 -p1 %patch41 -p1 +%if %{suse_version} < 1550 +%patch42 -p1 +%endif %patch100 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h @@ -372,7 +376,7 @@ cd build-dir %if 0%{?cross:1} make -k check CFLAGS="-O2 -g" CXXFLAGS="-O2 -g" CFLAGS_FOR_TARGET="-O2 -g" CXXFLAGS_FOR_TARGET="-O2 -g" || %{make_check_handling} %else -make -k check CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" || %{make_check_handling} +make -k check CFLAGS="-g $RPM_OPT_FLAGS" CXXFLAGS="-g $RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" || %{make_check_handling} %endif %install diff --git a/cross-ppc64le-binutils.changes b/cross-ppc64le-binutils.changes index f657b19..55207d8 100644 --- a/cross-ppc64le-binutils.changes +++ b/cross-ppc64le-binutils.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Wed Sep 8 15:09:58 UTC 2021 - Michael Matz + +- Adjust for testsuite fails on older products that configure + binutils in different ways, adds binutils-compat-old-behaviour.diff + and adjusts binutils-revert-nm-symversion.diff and + binutils-revert-plt32-in-branches.diff. + ------------------------------------------------------------------- Tue Aug 3 13:36:19 UTC 2021 - Martin Liška diff --git a/cross-ppc64le-binutils.spec b/cross-ppc64le-binutils.spec index 4ec5cdc..72015dc 100644 --- a/cross-ppc64le-binutils.spec +++ b/cross-ppc64le-binutils.spec @@ -104,6 +104,7 @@ Patch38: binutils-fix-invalid-op-errata.diff Patch39: binutils-revert-nm-symversion.diff Patch40: binutils-fix-abierrormsg.diff Patch41: binutils-fix-relax.diff +Patch42: binutils-compat-old-behaviour.diff Patch100: add-ulp-section.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -195,6 +196,9 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch39 -p1 %patch40 -p1 %patch41 -p1 +%if %{suse_version} < 1550 +%patch42 -p1 +%endif %patch100 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h @@ -372,7 +376,7 @@ cd build-dir %if 0%{?cross:1} make -k check CFLAGS="-O2 -g" CXXFLAGS="-O2 -g" CFLAGS_FOR_TARGET="-O2 -g" CXXFLAGS_FOR_TARGET="-O2 -g" || %{make_check_handling} %else -make -k check CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" || %{make_check_handling} +make -k check CFLAGS="-g $RPM_OPT_FLAGS" CXXFLAGS="-g $RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" || %{make_check_handling} %endif %install diff --git a/cross-riscv64-binutils.changes b/cross-riscv64-binutils.changes index f657b19..55207d8 100644 --- a/cross-riscv64-binutils.changes +++ b/cross-riscv64-binutils.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Wed Sep 8 15:09:58 UTC 2021 - Michael Matz + +- Adjust for testsuite fails on older products that configure + binutils in different ways, adds binutils-compat-old-behaviour.diff + and adjusts binutils-revert-nm-symversion.diff and + binutils-revert-plt32-in-branches.diff. + ------------------------------------------------------------------- Tue Aug 3 13:36:19 UTC 2021 - Martin Liška diff --git a/cross-riscv64-binutils.spec b/cross-riscv64-binutils.spec index 3dbbc9f..586dc8b 100644 --- a/cross-riscv64-binutils.spec +++ b/cross-riscv64-binutils.spec @@ -104,6 +104,7 @@ Patch38: binutils-fix-invalid-op-errata.diff Patch39: binutils-revert-nm-symversion.diff Patch40: binutils-fix-abierrormsg.diff Patch41: binutils-fix-relax.diff +Patch42: binutils-compat-old-behaviour.diff Patch100: add-ulp-section.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -195,6 +196,9 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch39 -p1 %patch40 -p1 %patch41 -p1 +%if %{suse_version} < 1550 +%patch42 -p1 +%endif %patch100 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h @@ -372,7 +376,7 @@ cd build-dir %if 0%{?cross:1} make -k check CFLAGS="-O2 -g" CXXFLAGS="-O2 -g" CFLAGS_FOR_TARGET="-O2 -g" CXXFLAGS_FOR_TARGET="-O2 -g" || %{make_check_handling} %else -make -k check CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" || %{make_check_handling} +make -k check CFLAGS="-g $RPM_OPT_FLAGS" CXXFLAGS="-g $RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" || %{make_check_handling} %endif %install diff --git a/cross-rx-binutils.changes b/cross-rx-binutils.changes index f657b19..55207d8 100644 --- a/cross-rx-binutils.changes +++ b/cross-rx-binutils.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Wed Sep 8 15:09:58 UTC 2021 - Michael Matz + +- Adjust for testsuite fails on older products that configure + binutils in different ways, adds binutils-compat-old-behaviour.diff + and adjusts binutils-revert-nm-symversion.diff and + binutils-revert-plt32-in-branches.diff. + ------------------------------------------------------------------- Tue Aug 3 13:36:19 UTC 2021 - Martin Liška diff --git a/cross-rx-binutils.spec b/cross-rx-binutils.spec index 53fea7f..50bcbf0 100644 --- a/cross-rx-binutils.spec +++ b/cross-rx-binutils.spec @@ -104,6 +104,7 @@ Patch38: binutils-fix-invalid-op-errata.diff Patch39: binutils-revert-nm-symversion.diff Patch40: binutils-fix-abierrormsg.diff Patch41: binutils-fix-relax.diff +Patch42: binutils-compat-old-behaviour.diff Patch100: add-ulp-section.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -195,6 +196,9 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch39 -p1 %patch40 -p1 %patch41 -p1 +%if %{suse_version} < 1550 +%patch42 -p1 +%endif %patch100 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h @@ -372,7 +376,7 @@ cd build-dir %if 0%{?cross:1} make -k check CFLAGS="-O2 -g" CXXFLAGS="-O2 -g" CFLAGS_FOR_TARGET="-O2 -g" CXXFLAGS_FOR_TARGET="-O2 -g" || %{make_check_handling} %else -make -k check CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" || %{make_check_handling} +make -k check CFLAGS="-g $RPM_OPT_FLAGS" CXXFLAGS="-g $RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" || %{make_check_handling} %endif %install diff --git a/cross-s390-binutils.changes b/cross-s390-binutils.changes index f657b19..55207d8 100644 --- a/cross-s390-binutils.changes +++ b/cross-s390-binutils.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Wed Sep 8 15:09:58 UTC 2021 - Michael Matz + +- Adjust for testsuite fails on older products that configure + binutils in different ways, adds binutils-compat-old-behaviour.diff + and adjusts binutils-revert-nm-symversion.diff and + binutils-revert-plt32-in-branches.diff. + ------------------------------------------------------------------- Tue Aug 3 13:36:19 UTC 2021 - Martin Liška diff --git a/cross-s390-binutils.spec b/cross-s390-binutils.spec index b5dbbe6..61f3e3e 100644 --- a/cross-s390-binutils.spec +++ b/cross-s390-binutils.spec @@ -104,6 +104,7 @@ Patch38: binutils-fix-invalid-op-errata.diff Patch39: binutils-revert-nm-symversion.diff Patch40: binutils-fix-abierrormsg.diff Patch41: binutils-fix-relax.diff +Patch42: binutils-compat-old-behaviour.diff Patch100: add-ulp-section.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -195,6 +196,9 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch39 -p1 %patch40 -p1 %patch41 -p1 +%if %{suse_version} < 1550 +%patch42 -p1 +%endif %patch100 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h @@ -372,7 +376,7 @@ cd build-dir %if 0%{?cross:1} make -k check CFLAGS="-O2 -g" CXXFLAGS="-O2 -g" CFLAGS_FOR_TARGET="-O2 -g" CXXFLAGS_FOR_TARGET="-O2 -g" || %{make_check_handling} %else -make -k check CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" || %{make_check_handling} +make -k check CFLAGS="-g $RPM_OPT_FLAGS" CXXFLAGS="-g $RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" || %{make_check_handling} %endif %install diff --git a/cross-s390x-binutils.changes b/cross-s390x-binutils.changes index f657b19..55207d8 100644 --- a/cross-s390x-binutils.changes +++ b/cross-s390x-binutils.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Wed Sep 8 15:09:58 UTC 2021 - Michael Matz + +- Adjust for testsuite fails on older products that configure + binutils in different ways, adds binutils-compat-old-behaviour.diff + and adjusts binutils-revert-nm-symversion.diff and + binutils-revert-plt32-in-branches.diff. + ------------------------------------------------------------------- Tue Aug 3 13:36:19 UTC 2021 - Martin Liška diff --git a/cross-s390x-binutils.spec b/cross-s390x-binutils.spec index 2349114..b219951 100644 --- a/cross-s390x-binutils.spec +++ b/cross-s390x-binutils.spec @@ -104,6 +104,7 @@ Patch38: binutils-fix-invalid-op-errata.diff Patch39: binutils-revert-nm-symversion.diff Patch40: binutils-fix-abierrormsg.diff Patch41: binutils-fix-relax.diff +Patch42: binutils-compat-old-behaviour.diff Patch100: add-ulp-section.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -195,6 +196,9 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch39 -p1 %patch40 -p1 %patch41 -p1 +%if %{suse_version} < 1550 +%patch42 -p1 +%endif %patch100 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h @@ -372,7 +376,7 @@ cd build-dir %if 0%{?cross:1} make -k check CFLAGS="-O2 -g" CXXFLAGS="-O2 -g" CFLAGS_FOR_TARGET="-O2 -g" CXXFLAGS_FOR_TARGET="-O2 -g" || %{make_check_handling} %else -make -k check CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" || %{make_check_handling} +make -k check CFLAGS="-g $RPM_OPT_FLAGS" CXXFLAGS="-g $RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" || %{make_check_handling} %endif %install diff --git a/cross-sparc-binutils.changes b/cross-sparc-binutils.changes index f657b19..55207d8 100644 --- a/cross-sparc-binutils.changes +++ b/cross-sparc-binutils.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Wed Sep 8 15:09:58 UTC 2021 - Michael Matz + +- Adjust for testsuite fails on older products that configure + binutils in different ways, adds binutils-compat-old-behaviour.diff + and adjusts binutils-revert-nm-symversion.diff and + binutils-revert-plt32-in-branches.diff. + ------------------------------------------------------------------- Tue Aug 3 13:36:19 UTC 2021 - Martin Liška diff --git a/cross-sparc-binutils.spec b/cross-sparc-binutils.spec index ade990a..c535591 100644 --- a/cross-sparc-binutils.spec +++ b/cross-sparc-binutils.spec @@ -104,6 +104,7 @@ Patch38: binutils-fix-invalid-op-errata.diff Patch39: binutils-revert-nm-symversion.diff Patch40: binutils-fix-abierrormsg.diff Patch41: binutils-fix-relax.diff +Patch42: binutils-compat-old-behaviour.diff Patch100: add-ulp-section.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -195,6 +196,9 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch39 -p1 %patch40 -p1 %patch41 -p1 +%if %{suse_version} < 1550 +%patch42 -p1 +%endif %patch100 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h @@ -372,7 +376,7 @@ cd build-dir %if 0%{?cross:1} make -k check CFLAGS="-O2 -g" CXXFLAGS="-O2 -g" CFLAGS_FOR_TARGET="-O2 -g" CXXFLAGS_FOR_TARGET="-O2 -g" || %{make_check_handling} %else -make -k check CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" || %{make_check_handling} +make -k check CFLAGS="-g $RPM_OPT_FLAGS" CXXFLAGS="-g $RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" || %{make_check_handling} %endif %install diff --git a/cross-sparc64-binutils.changes b/cross-sparc64-binutils.changes index f657b19..55207d8 100644 --- a/cross-sparc64-binutils.changes +++ b/cross-sparc64-binutils.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Wed Sep 8 15:09:58 UTC 2021 - Michael Matz + +- Adjust for testsuite fails on older products that configure + binutils in different ways, adds binutils-compat-old-behaviour.diff + and adjusts binutils-revert-nm-symversion.diff and + binutils-revert-plt32-in-branches.diff. + ------------------------------------------------------------------- Tue Aug 3 13:36:19 UTC 2021 - Martin Liška diff --git a/cross-sparc64-binutils.spec b/cross-sparc64-binutils.spec index 04cb0a5..9c2a453 100644 --- a/cross-sparc64-binutils.spec +++ b/cross-sparc64-binutils.spec @@ -104,6 +104,7 @@ Patch38: binutils-fix-invalid-op-errata.diff Patch39: binutils-revert-nm-symversion.diff Patch40: binutils-fix-abierrormsg.diff Patch41: binutils-fix-relax.diff +Patch42: binutils-compat-old-behaviour.diff Patch100: add-ulp-section.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -195,6 +196,9 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch39 -p1 %patch40 -p1 %patch41 -p1 +%if %{suse_version} < 1550 +%patch42 -p1 +%endif %patch100 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h @@ -372,7 +376,7 @@ cd build-dir %if 0%{?cross:1} make -k check CFLAGS="-O2 -g" CXXFLAGS="-O2 -g" CFLAGS_FOR_TARGET="-O2 -g" CXXFLAGS_FOR_TARGET="-O2 -g" || %{make_check_handling} %else -make -k check CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" || %{make_check_handling} +make -k check CFLAGS="-g $RPM_OPT_FLAGS" CXXFLAGS="-g $RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" || %{make_check_handling} %endif %install diff --git a/cross-spu-binutils.changes b/cross-spu-binutils.changes index f657b19..55207d8 100644 --- a/cross-spu-binutils.changes +++ b/cross-spu-binutils.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Wed Sep 8 15:09:58 UTC 2021 - Michael Matz + +- Adjust for testsuite fails on older products that configure + binutils in different ways, adds binutils-compat-old-behaviour.diff + and adjusts binutils-revert-nm-symversion.diff and + binutils-revert-plt32-in-branches.diff. + ------------------------------------------------------------------- Tue Aug 3 13:36:19 UTC 2021 - Martin Liška diff --git a/cross-spu-binutils.spec b/cross-spu-binutils.spec index 715c6c1..57caf5e 100644 --- a/cross-spu-binutils.spec +++ b/cross-spu-binutils.spec @@ -104,6 +104,7 @@ Patch38: binutils-fix-invalid-op-errata.diff Patch39: binutils-revert-nm-symversion.diff Patch40: binutils-fix-abierrormsg.diff Patch41: binutils-fix-relax.diff +Patch42: binutils-compat-old-behaviour.diff Patch100: add-ulp-section.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -195,6 +196,9 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch39 -p1 %patch40 -p1 %patch41 -p1 +%if %{suse_version} < 1550 +%patch42 -p1 +%endif %patch100 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h @@ -372,7 +376,7 @@ cd build-dir %if 0%{?cross:1} make -k check CFLAGS="-O2 -g" CXXFLAGS="-O2 -g" CFLAGS_FOR_TARGET="-O2 -g" CXXFLAGS_FOR_TARGET="-O2 -g" || %{make_check_handling} %else -make -k check CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" || %{make_check_handling} +make -k check CFLAGS="-g $RPM_OPT_FLAGS" CXXFLAGS="-g $RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" || %{make_check_handling} %endif %install diff --git a/cross-x86_64-binutils.changes b/cross-x86_64-binutils.changes index f657b19..55207d8 100644 --- a/cross-x86_64-binutils.changes +++ b/cross-x86_64-binutils.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Wed Sep 8 15:09:58 UTC 2021 - Michael Matz + +- Adjust for testsuite fails on older products that configure + binutils in different ways, adds binutils-compat-old-behaviour.diff + and adjusts binutils-revert-nm-symversion.diff and + binutils-revert-plt32-in-branches.diff. + ------------------------------------------------------------------- Tue Aug 3 13:36:19 UTC 2021 - Martin Liška diff --git a/cross-x86_64-binutils.spec b/cross-x86_64-binutils.spec index 5266691..2c4adf0 100644 --- a/cross-x86_64-binutils.spec +++ b/cross-x86_64-binutils.spec @@ -104,6 +104,7 @@ Patch38: binutils-fix-invalid-op-errata.diff Patch39: binutils-revert-nm-symversion.diff Patch40: binutils-fix-abierrormsg.diff Patch41: binutils-fix-relax.diff +Patch42: binutils-compat-old-behaviour.diff Patch100: add-ulp-section.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -195,6 +196,9 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch39 -p1 %patch40 -p1 %patch41 -p1 +%if %{suse_version} < 1550 +%patch42 -p1 +%endif %patch100 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h @@ -372,7 +376,7 @@ cd build-dir %if 0%{?cross:1} make -k check CFLAGS="-O2 -g" CXXFLAGS="-O2 -g" CFLAGS_FOR_TARGET="-O2 -g" CXXFLAGS_FOR_TARGET="-O2 -g" || %{make_check_handling} %else -make -k check CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" || %{make_check_handling} +make -k check CFLAGS="-g $RPM_OPT_FLAGS" CXXFLAGS="-g $RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" || %{make_check_handling} %endif %install diff --git a/cross-xtensa-binutils.changes b/cross-xtensa-binutils.changes index f657b19..55207d8 100644 --- a/cross-xtensa-binutils.changes +++ b/cross-xtensa-binutils.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Wed Sep 8 15:09:58 UTC 2021 - Michael Matz + +- Adjust for testsuite fails on older products that configure + binutils in different ways, adds binutils-compat-old-behaviour.diff + and adjusts binutils-revert-nm-symversion.diff and + binutils-revert-plt32-in-branches.diff. + ------------------------------------------------------------------- Tue Aug 3 13:36:19 UTC 2021 - Martin Liška diff --git a/cross-xtensa-binutils.spec b/cross-xtensa-binutils.spec index 36f54ee..8f770e3 100644 --- a/cross-xtensa-binutils.spec +++ b/cross-xtensa-binutils.spec @@ -104,6 +104,7 @@ Patch38: binutils-fix-invalid-op-errata.diff Patch39: binutils-revert-nm-symversion.diff Patch40: binutils-fix-abierrormsg.diff Patch41: binutils-fix-relax.diff +Patch42: binutils-compat-old-behaviour.diff Patch100: add-ulp-section.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch @@ -195,6 +196,9 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch39 -p1 %patch40 -p1 %patch41 -p1 +%if %{suse_version} < 1550 +%patch42 -p1 +%endif %patch100 -p1 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h @@ -372,7 +376,7 @@ cd build-dir %if 0%{?cross:1} make -k check CFLAGS="-O2 -g" CXXFLAGS="-O2 -g" CFLAGS_FOR_TARGET="-O2 -g" CXXFLAGS_FOR_TARGET="-O2 -g" || %{make_check_handling} %else -make -k check CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="$RPM_OPT_FLAGS" || %{make_check_handling} +make -k check CFLAGS="-g $RPM_OPT_FLAGS" CXXFLAGS="-g $RPM_OPT_FLAGS" CFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" CXXFLAGS_FOR_TARGET="-g $RPM_OPT_FLAGS" || %{make_check_handling} %endif %install From 628ae5d647092cdb69de7b968bbb64d570335ec354e7751990a9265db4d2d0c7 Mon Sep 17 00:00:00 2001 From: Michael Matz Date: Mon, 20 Sep 2021 12:28:03 +0000 Subject: [PATCH 02/12] Accepting request 919840 from home:schubi2 - Using libalternatives instead of update-alternatives. - OBS-URL: https://build.opensuse.org/request/show/919840 OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=368 --- binutils.changes | 5 +++ binutils.spec | 60 +++++++++++++++++++++++++++++++++ cross-aarch64-binutils.changes | 5 +++ cross-aarch64-binutils.spec | 60 +++++++++++++++++++++++++++++++++ cross-arm-binutils.changes | 5 +++ cross-arm-binutils.spec | 60 +++++++++++++++++++++++++++++++++ cross-avr-binutils.changes | 5 +++ cross-avr-binutils.spec | 60 +++++++++++++++++++++++++++++++++ cross-epiphany-binutils.changes | 5 +++ cross-epiphany-binutils.spec | 60 +++++++++++++++++++++++++++++++++ cross-hppa-binutils.changes | 5 +++ cross-hppa-binutils.spec | 60 +++++++++++++++++++++++++++++++++ cross-hppa64-binutils.changes | 5 +++ cross-hppa64-binutils.spec | 60 +++++++++++++++++++++++++++++++++ cross-i386-binutils.changes | 5 +++ cross-i386-binutils.spec | 60 +++++++++++++++++++++++++++++++++ cross-ia64-binutils.changes | 5 +++ cross-ia64-binutils.spec | 60 +++++++++++++++++++++++++++++++++ cross-m68k-binutils.changes | 5 +++ cross-m68k-binutils.spec | 60 +++++++++++++++++++++++++++++++++ cross-mips-binutils.changes | 5 +++ cross-mips-binutils.spec | 60 +++++++++++++++++++++++++++++++++ cross-ppc-binutils.changes | 5 +++ cross-ppc-binutils.spec | 60 +++++++++++++++++++++++++++++++++ cross-ppc64-binutils.changes | 5 +++ cross-ppc64-binutils.spec | 60 +++++++++++++++++++++++++++++++++ cross-ppc64le-binutils.changes | 5 +++ cross-ppc64le-binutils.spec | 60 +++++++++++++++++++++++++++++++++ cross-riscv64-binutils.changes | 5 +++ cross-riscv64-binutils.spec | 60 +++++++++++++++++++++++++++++++++ cross-rx-binutils.changes | 5 +++ cross-rx-binutils.spec | 60 +++++++++++++++++++++++++++++++++ cross-s390-binutils.changes | 5 +++ cross-s390-binutils.spec | 60 +++++++++++++++++++++++++++++++++ cross-s390x-binutils.changes | 5 +++ cross-s390x-binutils.spec | 60 +++++++++++++++++++++++++++++++++ cross-sparc-binutils.changes | 5 +++ cross-sparc-binutils.spec | 60 +++++++++++++++++++++++++++++++++ cross-sparc64-binutils.changes | 5 +++ cross-sparc64-binutils.spec | 60 +++++++++++++++++++++++++++++++++ cross-spu-binutils.changes | 5 +++ cross-spu-binutils.spec | 60 +++++++++++++++++++++++++++++++++ cross-x86_64-binutils.changes | 5 +++ cross-x86_64-binutils.spec | 60 +++++++++++++++++++++++++++++++++ cross-xtensa-binutils.changes | 5 +++ cross-xtensa-binutils.spec | 60 +++++++++++++++++++++++++++++++++ 46 files changed, 1495 insertions(+) diff --git a/binutils.changes b/binutils.changes index 55207d8..a84efdf 100644 --- a/binutils.changes +++ b/binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de + +- Using libalternatives instead of update-alternatives. + ------------------------------------------------------------------- Wed Sep 8 15:09:58 UTC 2021 - Michael Matz diff --git a/binutils.spec b/binutils.spec index 764a535..059aab0 100644 --- a/binutils.spec +++ b/binutils.spec @@ -36,6 +36,13 @@ BuildRequires: zlib-devel %endif Version: 2.37 Release: 0 + +%if 0%{?suse_version} > 1500 +%bcond_without libalternatives +%else +%bcond_with libalternatives +%endif + # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -107,7 +114,11 @@ Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %description C compiler utilities: ar, as, gprof, ld, nm, objcopy, objdump, ranlib, @@ -119,7 +130,11 @@ Summary: The gold linker License: GPL-3.0-or-later Group: Development/Tools/Building Requires: binutils = %{version}-%{release} +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %if 0%{!?cross:1} %define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le s390x %sparc %endif @@ -392,12 +407,24 @@ if [ ! -f "%buildroot/%_bindir/ld.bfd" ]; then else rm -f "%buildroot/%_bindir/ld"; fi +%if ! 0%{with libalternatives} mkdir -p "%buildroot/%_sysconfdir/alternatives"; # Keep older versions of brp-symlink happy %if %{suse_version} < 1310 ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld" %endif ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld"; +%else +ln -s %{_bindir}/alts "%buildroot/%_bindir/ld"; +mkdir -p %{buildroot}%{_datadir}/libalternatives/ld; +cat > %{buildroot}%{_datadir}/libalternatives/ld/1.conf < %{buildroot}%{_datadir}/libalternatives/ld/2.conf < diff --git a/cross-aarch64-binutils.spec b/cross-aarch64-binutils.spec index 8281ce8..f04d799 100644 --- a/cross-aarch64-binutils.spec +++ b/cross-aarch64-binutils.spec @@ -39,6 +39,13 @@ BuildRequires: zlib-devel %endif Version: 2.37 Release: 0 + +%if 0%{?suse_version} > 1500 +%bcond_without libalternatives +%else +%bcond_with libalternatives +%endif + # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -110,7 +117,11 @@ Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %description C compiler utilities: ar, as, gprof, ld, nm, objcopy, objdump, ranlib, @@ -122,7 +133,11 @@ Summary: The gold linker License: GPL-3.0-or-later Group: Development/Tools/Building Requires: binutils = %{version}-%{release} +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %if 0%{!?cross:1} %define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le s390x %sparc %endif @@ -395,12 +410,24 @@ if [ ! -f "%buildroot/%_bindir/ld.bfd" ]; then else rm -f "%buildroot/%_bindir/ld"; fi +%if ! 0%{with libalternatives} mkdir -p "%buildroot/%_sysconfdir/alternatives"; # Keep older versions of brp-symlink happy %if %{suse_version} < 1310 ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld" %endif ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld"; +%else +ln -s %{_bindir}/alts "%buildroot/%_bindir/ld"; +mkdir -p %{buildroot}%{_datadir}/libalternatives/ld; +cat > %{buildroot}%{_datadir}/libalternatives/ld/1.conf < %{buildroot}%{_datadir}/libalternatives/ld/2.conf < diff --git a/cross-arm-binutils.spec b/cross-arm-binutils.spec index 611756a..deebec9 100644 --- a/cross-arm-binutils.spec +++ b/cross-arm-binutils.spec @@ -39,6 +39,13 @@ BuildRequires: zlib-devel %endif Version: 2.37 Release: 0 + +%if 0%{?suse_version} > 1500 +%bcond_without libalternatives +%else +%bcond_with libalternatives +%endif + # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -110,7 +117,11 @@ Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %description C compiler utilities: ar, as, gprof, ld, nm, objcopy, objdump, ranlib, @@ -122,7 +133,11 @@ Summary: The gold linker License: GPL-3.0-or-later Group: Development/Tools/Building Requires: binutils = %{version}-%{release} +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %if 0%{!?cross:1} %define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le s390x %sparc %endif @@ -395,12 +410,24 @@ if [ ! -f "%buildroot/%_bindir/ld.bfd" ]; then else rm -f "%buildroot/%_bindir/ld"; fi +%if ! 0%{with libalternatives} mkdir -p "%buildroot/%_sysconfdir/alternatives"; # Keep older versions of brp-symlink happy %if %{suse_version} < 1310 ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld" %endif ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld"; +%else +ln -s %{_bindir}/alts "%buildroot/%_bindir/ld"; +mkdir -p %{buildroot}%{_datadir}/libalternatives/ld; +cat > %{buildroot}%{_datadir}/libalternatives/ld/1.conf < %{buildroot}%{_datadir}/libalternatives/ld/2.conf < diff --git a/cross-avr-binutils.spec b/cross-avr-binutils.spec index 7863b61..aedfb06 100644 --- a/cross-avr-binutils.spec +++ b/cross-avr-binutils.spec @@ -39,6 +39,13 @@ BuildRequires: zlib-devel %endif Version: 2.37 Release: 0 + +%if 0%{?suse_version} > 1500 +%bcond_without libalternatives +%else +%bcond_with libalternatives +%endif + # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -110,7 +117,11 @@ Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %description C compiler utilities: ar, as, gprof, ld, nm, objcopy, objdump, ranlib, @@ -122,7 +133,11 @@ Summary: The gold linker License: GPL-3.0-or-later Group: Development/Tools/Building Requires: binutils = %{version}-%{release} +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %if 0%{!?cross:1} %define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le s390x %sparc %endif @@ -395,12 +410,24 @@ if [ ! -f "%buildroot/%_bindir/ld.bfd" ]; then else rm -f "%buildroot/%_bindir/ld"; fi +%if ! 0%{with libalternatives} mkdir -p "%buildroot/%_sysconfdir/alternatives"; # Keep older versions of brp-symlink happy %if %{suse_version} < 1310 ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld" %endif ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld"; +%else +ln -s %{_bindir}/alts "%buildroot/%_bindir/ld"; +mkdir -p %{buildroot}%{_datadir}/libalternatives/ld; +cat > %{buildroot}%{_datadir}/libalternatives/ld/1.conf < %{buildroot}%{_datadir}/libalternatives/ld/2.conf < diff --git a/cross-epiphany-binutils.spec b/cross-epiphany-binutils.spec index c4dc222..5c0a0e6 100644 --- a/cross-epiphany-binutils.spec +++ b/cross-epiphany-binutils.spec @@ -39,6 +39,13 @@ BuildRequires: zlib-devel %endif Version: 2.37 Release: 0 + +%if 0%{?suse_version} > 1500 +%bcond_without libalternatives +%else +%bcond_with libalternatives +%endif + # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -110,7 +117,11 @@ Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %description C compiler utilities: ar, as, gprof, ld, nm, objcopy, objdump, ranlib, @@ -122,7 +133,11 @@ Summary: The gold linker License: GPL-3.0-or-later Group: Development/Tools/Building Requires: binutils = %{version}-%{release} +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %if 0%{!?cross:1} %define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le s390x %sparc %endif @@ -395,12 +410,24 @@ if [ ! -f "%buildroot/%_bindir/ld.bfd" ]; then else rm -f "%buildroot/%_bindir/ld"; fi +%if ! 0%{with libalternatives} mkdir -p "%buildroot/%_sysconfdir/alternatives"; # Keep older versions of brp-symlink happy %if %{suse_version} < 1310 ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld" %endif ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld"; +%else +ln -s %{_bindir}/alts "%buildroot/%_bindir/ld"; +mkdir -p %{buildroot}%{_datadir}/libalternatives/ld; +cat > %{buildroot}%{_datadir}/libalternatives/ld/1.conf < %{buildroot}%{_datadir}/libalternatives/ld/2.conf < diff --git a/cross-hppa-binutils.spec b/cross-hppa-binutils.spec index 6581bf2..aa591e0 100644 --- a/cross-hppa-binutils.spec +++ b/cross-hppa-binutils.spec @@ -39,6 +39,13 @@ BuildRequires: zlib-devel %endif Version: 2.37 Release: 0 + +%if 0%{?suse_version} > 1500 +%bcond_without libalternatives +%else +%bcond_with libalternatives +%endif + # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -110,7 +117,11 @@ Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %description C compiler utilities: ar, as, gprof, ld, nm, objcopy, objdump, ranlib, @@ -122,7 +133,11 @@ Summary: The gold linker License: GPL-3.0-or-later Group: Development/Tools/Building Requires: binutils = %{version}-%{release} +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %if 0%{!?cross:1} %define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le s390x %sparc %endif @@ -395,12 +410,24 @@ if [ ! -f "%buildroot/%_bindir/ld.bfd" ]; then else rm -f "%buildroot/%_bindir/ld"; fi +%if ! 0%{with libalternatives} mkdir -p "%buildroot/%_sysconfdir/alternatives"; # Keep older versions of brp-symlink happy %if %{suse_version} < 1310 ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld" %endif ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld"; +%else +ln -s %{_bindir}/alts "%buildroot/%_bindir/ld"; +mkdir -p %{buildroot}%{_datadir}/libalternatives/ld; +cat > %{buildroot}%{_datadir}/libalternatives/ld/1.conf < %{buildroot}%{_datadir}/libalternatives/ld/2.conf < diff --git a/cross-hppa64-binutils.spec b/cross-hppa64-binutils.spec index 74b60c3..bf798d2 100644 --- a/cross-hppa64-binutils.spec +++ b/cross-hppa64-binutils.spec @@ -39,6 +39,13 @@ BuildRequires: zlib-devel %endif Version: 2.37 Release: 0 + +%if 0%{?suse_version} > 1500 +%bcond_without libalternatives +%else +%bcond_with libalternatives +%endif + # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -110,7 +117,11 @@ Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %description C compiler utilities: ar, as, gprof, ld, nm, objcopy, objdump, ranlib, @@ -122,7 +133,11 @@ Summary: The gold linker License: GPL-3.0-or-later Group: Development/Tools/Building Requires: binutils = %{version}-%{release} +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %if 0%{!?cross:1} %define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le s390x %sparc %endif @@ -395,12 +410,24 @@ if [ ! -f "%buildroot/%_bindir/ld.bfd" ]; then else rm -f "%buildroot/%_bindir/ld"; fi +%if ! 0%{with libalternatives} mkdir -p "%buildroot/%_sysconfdir/alternatives"; # Keep older versions of brp-symlink happy %if %{suse_version} < 1310 ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld" %endif ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld"; +%else +ln -s %{_bindir}/alts "%buildroot/%_bindir/ld"; +mkdir -p %{buildroot}%{_datadir}/libalternatives/ld; +cat > %{buildroot}%{_datadir}/libalternatives/ld/1.conf < %{buildroot}%{_datadir}/libalternatives/ld/2.conf < diff --git a/cross-i386-binutils.spec b/cross-i386-binutils.spec index ca65215..478b3c3 100644 --- a/cross-i386-binutils.spec +++ b/cross-i386-binutils.spec @@ -39,6 +39,13 @@ BuildRequires: zlib-devel %endif Version: 2.37 Release: 0 + +%if 0%{?suse_version} > 1500 +%bcond_without libalternatives +%else +%bcond_with libalternatives +%endif + # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -110,7 +117,11 @@ Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %description C compiler utilities: ar, as, gprof, ld, nm, objcopy, objdump, ranlib, @@ -122,7 +133,11 @@ Summary: The gold linker License: GPL-3.0-or-later Group: Development/Tools/Building Requires: binutils = %{version}-%{release} +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %if 0%{!?cross:1} %define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le s390x %sparc %endif @@ -395,12 +410,24 @@ if [ ! -f "%buildroot/%_bindir/ld.bfd" ]; then else rm -f "%buildroot/%_bindir/ld"; fi +%if ! 0%{with libalternatives} mkdir -p "%buildroot/%_sysconfdir/alternatives"; # Keep older versions of brp-symlink happy %if %{suse_version} < 1310 ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld" %endif ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld"; +%else +ln -s %{_bindir}/alts "%buildroot/%_bindir/ld"; +mkdir -p %{buildroot}%{_datadir}/libalternatives/ld; +cat > %{buildroot}%{_datadir}/libalternatives/ld/1.conf < %{buildroot}%{_datadir}/libalternatives/ld/2.conf < diff --git a/cross-ia64-binutils.spec b/cross-ia64-binutils.spec index 246a48c..c9228f2 100644 --- a/cross-ia64-binutils.spec +++ b/cross-ia64-binutils.spec @@ -39,6 +39,13 @@ BuildRequires: zlib-devel %endif Version: 2.37 Release: 0 + +%if 0%{?suse_version} > 1500 +%bcond_without libalternatives +%else +%bcond_with libalternatives +%endif + # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -110,7 +117,11 @@ Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %description C compiler utilities: ar, as, gprof, ld, nm, objcopy, objdump, ranlib, @@ -122,7 +133,11 @@ Summary: The gold linker License: GPL-3.0-or-later Group: Development/Tools/Building Requires: binutils = %{version}-%{release} +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %if 0%{!?cross:1} %define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le s390x %sparc %endif @@ -395,12 +410,24 @@ if [ ! -f "%buildroot/%_bindir/ld.bfd" ]; then else rm -f "%buildroot/%_bindir/ld"; fi +%if ! 0%{with libalternatives} mkdir -p "%buildroot/%_sysconfdir/alternatives"; # Keep older versions of brp-symlink happy %if %{suse_version} < 1310 ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld" %endif ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld"; +%else +ln -s %{_bindir}/alts "%buildroot/%_bindir/ld"; +mkdir -p %{buildroot}%{_datadir}/libalternatives/ld; +cat > %{buildroot}%{_datadir}/libalternatives/ld/1.conf < %{buildroot}%{_datadir}/libalternatives/ld/2.conf < diff --git a/cross-m68k-binutils.spec b/cross-m68k-binutils.spec index df3d2b2..c7bf3c4 100644 --- a/cross-m68k-binutils.spec +++ b/cross-m68k-binutils.spec @@ -39,6 +39,13 @@ BuildRequires: zlib-devel %endif Version: 2.37 Release: 0 + +%if 0%{?suse_version} > 1500 +%bcond_without libalternatives +%else +%bcond_with libalternatives +%endif + # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -110,7 +117,11 @@ Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %description C compiler utilities: ar, as, gprof, ld, nm, objcopy, objdump, ranlib, @@ -122,7 +133,11 @@ Summary: The gold linker License: GPL-3.0-or-later Group: Development/Tools/Building Requires: binutils = %{version}-%{release} +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %if 0%{!?cross:1} %define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le s390x %sparc %endif @@ -395,12 +410,24 @@ if [ ! -f "%buildroot/%_bindir/ld.bfd" ]; then else rm -f "%buildroot/%_bindir/ld"; fi +%if ! 0%{with libalternatives} mkdir -p "%buildroot/%_sysconfdir/alternatives"; # Keep older versions of brp-symlink happy %if %{suse_version} < 1310 ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld" %endif ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld"; +%else +ln -s %{_bindir}/alts "%buildroot/%_bindir/ld"; +mkdir -p %{buildroot}%{_datadir}/libalternatives/ld; +cat > %{buildroot}%{_datadir}/libalternatives/ld/1.conf < %{buildroot}%{_datadir}/libalternatives/ld/2.conf < diff --git a/cross-mips-binutils.spec b/cross-mips-binutils.spec index 8715002..50d8436 100644 --- a/cross-mips-binutils.spec +++ b/cross-mips-binutils.spec @@ -39,6 +39,13 @@ BuildRequires: zlib-devel %endif Version: 2.37 Release: 0 + +%if 0%{?suse_version} > 1500 +%bcond_without libalternatives +%else +%bcond_with libalternatives +%endif + # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -110,7 +117,11 @@ Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %description C compiler utilities: ar, as, gprof, ld, nm, objcopy, objdump, ranlib, @@ -122,7 +133,11 @@ Summary: The gold linker License: GPL-3.0-or-later Group: Development/Tools/Building Requires: binutils = %{version}-%{release} +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %if 0%{!?cross:1} %define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le s390x %sparc %endif @@ -395,12 +410,24 @@ if [ ! -f "%buildroot/%_bindir/ld.bfd" ]; then else rm -f "%buildroot/%_bindir/ld"; fi +%if ! 0%{with libalternatives} mkdir -p "%buildroot/%_sysconfdir/alternatives"; # Keep older versions of brp-symlink happy %if %{suse_version} < 1310 ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld" %endif ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld"; +%else +ln -s %{_bindir}/alts "%buildroot/%_bindir/ld"; +mkdir -p %{buildroot}%{_datadir}/libalternatives/ld; +cat > %{buildroot}%{_datadir}/libalternatives/ld/1.conf < %{buildroot}%{_datadir}/libalternatives/ld/2.conf < diff --git a/cross-ppc-binutils.spec b/cross-ppc-binutils.spec index 56a0ffa..a4b8bf8 100644 --- a/cross-ppc-binutils.spec +++ b/cross-ppc-binutils.spec @@ -39,6 +39,13 @@ BuildRequires: zlib-devel %endif Version: 2.37 Release: 0 + +%if 0%{?suse_version} > 1500 +%bcond_without libalternatives +%else +%bcond_with libalternatives +%endif + # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -110,7 +117,11 @@ Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %description C compiler utilities: ar, as, gprof, ld, nm, objcopy, objdump, ranlib, @@ -122,7 +133,11 @@ Summary: The gold linker License: GPL-3.0-or-later Group: Development/Tools/Building Requires: binutils = %{version}-%{release} +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %if 0%{!?cross:1} %define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le s390x %sparc %endif @@ -395,12 +410,24 @@ if [ ! -f "%buildroot/%_bindir/ld.bfd" ]; then else rm -f "%buildroot/%_bindir/ld"; fi +%if ! 0%{with libalternatives} mkdir -p "%buildroot/%_sysconfdir/alternatives"; # Keep older versions of brp-symlink happy %if %{suse_version} < 1310 ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld" %endif ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld"; +%else +ln -s %{_bindir}/alts "%buildroot/%_bindir/ld"; +mkdir -p %{buildroot}%{_datadir}/libalternatives/ld; +cat > %{buildroot}%{_datadir}/libalternatives/ld/1.conf < %{buildroot}%{_datadir}/libalternatives/ld/2.conf < diff --git a/cross-ppc64-binutils.spec b/cross-ppc64-binutils.spec index 1772aaa..97eae35 100644 --- a/cross-ppc64-binutils.spec +++ b/cross-ppc64-binutils.spec @@ -39,6 +39,13 @@ BuildRequires: zlib-devel %endif Version: 2.37 Release: 0 + +%if 0%{?suse_version} > 1500 +%bcond_without libalternatives +%else +%bcond_with libalternatives +%endif + # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -110,7 +117,11 @@ Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %description C compiler utilities: ar, as, gprof, ld, nm, objcopy, objdump, ranlib, @@ -122,7 +133,11 @@ Summary: The gold linker License: GPL-3.0-or-later Group: Development/Tools/Building Requires: binutils = %{version}-%{release} +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %if 0%{!?cross:1} %define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le s390x %sparc %endif @@ -395,12 +410,24 @@ if [ ! -f "%buildroot/%_bindir/ld.bfd" ]; then else rm -f "%buildroot/%_bindir/ld"; fi +%if ! 0%{with libalternatives} mkdir -p "%buildroot/%_sysconfdir/alternatives"; # Keep older versions of brp-symlink happy %if %{suse_version} < 1310 ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld" %endif ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld"; +%else +ln -s %{_bindir}/alts "%buildroot/%_bindir/ld"; +mkdir -p %{buildroot}%{_datadir}/libalternatives/ld; +cat > %{buildroot}%{_datadir}/libalternatives/ld/1.conf < %{buildroot}%{_datadir}/libalternatives/ld/2.conf < diff --git a/cross-ppc64le-binutils.spec b/cross-ppc64le-binutils.spec index 72015dc..dcbd3fb 100644 --- a/cross-ppc64le-binutils.spec +++ b/cross-ppc64le-binutils.spec @@ -39,6 +39,13 @@ BuildRequires: zlib-devel %endif Version: 2.37 Release: 0 + +%if 0%{?suse_version} > 1500 +%bcond_without libalternatives +%else +%bcond_with libalternatives +%endif + # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -110,7 +117,11 @@ Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %description C compiler utilities: ar, as, gprof, ld, nm, objcopy, objdump, ranlib, @@ -122,7 +133,11 @@ Summary: The gold linker License: GPL-3.0-or-later Group: Development/Tools/Building Requires: binutils = %{version}-%{release} +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %if 0%{!?cross:1} %define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le s390x %sparc %endif @@ -395,12 +410,24 @@ if [ ! -f "%buildroot/%_bindir/ld.bfd" ]; then else rm -f "%buildroot/%_bindir/ld"; fi +%if ! 0%{with libalternatives} mkdir -p "%buildroot/%_sysconfdir/alternatives"; # Keep older versions of brp-symlink happy %if %{suse_version} < 1310 ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld" %endif ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld"; +%else +ln -s %{_bindir}/alts "%buildroot/%_bindir/ld"; +mkdir -p %{buildroot}%{_datadir}/libalternatives/ld; +cat > %{buildroot}%{_datadir}/libalternatives/ld/1.conf < %{buildroot}%{_datadir}/libalternatives/ld/2.conf < diff --git a/cross-riscv64-binutils.spec b/cross-riscv64-binutils.spec index 586dc8b..7f80418 100644 --- a/cross-riscv64-binutils.spec +++ b/cross-riscv64-binutils.spec @@ -39,6 +39,13 @@ BuildRequires: zlib-devel %endif Version: 2.37 Release: 0 + +%if 0%{?suse_version} > 1500 +%bcond_without libalternatives +%else +%bcond_with libalternatives +%endif + # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -110,7 +117,11 @@ Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %description C compiler utilities: ar, as, gprof, ld, nm, objcopy, objdump, ranlib, @@ -122,7 +133,11 @@ Summary: The gold linker License: GPL-3.0-or-later Group: Development/Tools/Building Requires: binutils = %{version}-%{release} +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %if 0%{!?cross:1} %define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le s390x %sparc %endif @@ -395,12 +410,24 @@ if [ ! -f "%buildroot/%_bindir/ld.bfd" ]; then else rm -f "%buildroot/%_bindir/ld"; fi +%if ! 0%{with libalternatives} mkdir -p "%buildroot/%_sysconfdir/alternatives"; # Keep older versions of brp-symlink happy %if %{suse_version} < 1310 ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld" %endif ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld"; +%else +ln -s %{_bindir}/alts "%buildroot/%_bindir/ld"; +mkdir -p %{buildroot}%{_datadir}/libalternatives/ld; +cat > %{buildroot}%{_datadir}/libalternatives/ld/1.conf < %{buildroot}%{_datadir}/libalternatives/ld/2.conf < diff --git a/cross-rx-binutils.spec b/cross-rx-binutils.spec index 50bcbf0..ba9a8ae 100644 --- a/cross-rx-binutils.spec +++ b/cross-rx-binutils.spec @@ -39,6 +39,13 @@ BuildRequires: zlib-devel %endif Version: 2.37 Release: 0 + +%if 0%{?suse_version} > 1500 +%bcond_without libalternatives +%else +%bcond_with libalternatives +%endif + # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -110,7 +117,11 @@ Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %description C compiler utilities: ar, as, gprof, ld, nm, objcopy, objdump, ranlib, @@ -122,7 +133,11 @@ Summary: The gold linker License: GPL-3.0-or-later Group: Development/Tools/Building Requires: binutils = %{version}-%{release} +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %if 0%{!?cross:1} %define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le s390x %sparc %endif @@ -395,12 +410,24 @@ if [ ! -f "%buildroot/%_bindir/ld.bfd" ]; then else rm -f "%buildroot/%_bindir/ld"; fi +%if ! 0%{with libalternatives} mkdir -p "%buildroot/%_sysconfdir/alternatives"; # Keep older versions of brp-symlink happy %if %{suse_version} < 1310 ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld" %endif ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld"; +%else +ln -s %{_bindir}/alts "%buildroot/%_bindir/ld"; +mkdir -p %{buildroot}%{_datadir}/libalternatives/ld; +cat > %{buildroot}%{_datadir}/libalternatives/ld/1.conf < %{buildroot}%{_datadir}/libalternatives/ld/2.conf < diff --git a/cross-s390-binutils.spec b/cross-s390-binutils.spec index 61f3e3e..2fce6b7 100644 --- a/cross-s390-binutils.spec +++ b/cross-s390-binutils.spec @@ -39,6 +39,13 @@ BuildRequires: zlib-devel %endif Version: 2.37 Release: 0 + +%if 0%{?suse_version} > 1500 +%bcond_without libalternatives +%else +%bcond_with libalternatives +%endif + # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -110,7 +117,11 @@ Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %description C compiler utilities: ar, as, gprof, ld, nm, objcopy, objdump, ranlib, @@ -122,7 +133,11 @@ Summary: The gold linker License: GPL-3.0-or-later Group: Development/Tools/Building Requires: binutils = %{version}-%{release} +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %if 0%{!?cross:1} %define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le s390x %sparc %endif @@ -395,12 +410,24 @@ if [ ! -f "%buildroot/%_bindir/ld.bfd" ]; then else rm -f "%buildroot/%_bindir/ld"; fi +%if ! 0%{with libalternatives} mkdir -p "%buildroot/%_sysconfdir/alternatives"; # Keep older versions of brp-symlink happy %if %{suse_version} < 1310 ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld" %endif ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld"; +%else +ln -s %{_bindir}/alts "%buildroot/%_bindir/ld"; +mkdir -p %{buildroot}%{_datadir}/libalternatives/ld; +cat > %{buildroot}%{_datadir}/libalternatives/ld/1.conf < %{buildroot}%{_datadir}/libalternatives/ld/2.conf < diff --git a/cross-s390x-binutils.spec b/cross-s390x-binutils.spec index b219951..692a329 100644 --- a/cross-s390x-binutils.spec +++ b/cross-s390x-binutils.spec @@ -39,6 +39,13 @@ BuildRequires: zlib-devel %endif Version: 2.37 Release: 0 + +%if 0%{?suse_version} > 1500 +%bcond_without libalternatives +%else +%bcond_with libalternatives +%endif + # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -110,7 +117,11 @@ Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %description C compiler utilities: ar, as, gprof, ld, nm, objcopy, objdump, ranlib, @@ -122,7 +133,11 @@ Summary: The gold linker License: GPL-3.0-or-later Group: Development/Tools/Building Requires: binutils = %{version}-%{release} +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %if 0%{!?cross:1} %define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le s390x %sparc %endif @@ -395,12 +410,24 @@ if [ ! -f "%buildroot/%_bindir/ld.bfd" ]; then else rm -f "%buildroot/%_bindir/ld"; fi +%if ! 0%{with libalternatives} mkdir -p "%buildroot/%_sysconfdir/alternatives"; # Keep older versions of brp-symlink happy %if %{suse_version} < 1310 ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld" %endif ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld"; +%else +ln -s %{_bindir}/alts "%buildroot/%_bindir/ld"; +mkdir -p %{buildroot}%{_datadir}/libalternatives/ld; +cat > %{buildroot}%{_datadir}/libalternatives/ld/1.conf < %{buildroot}%{_datadir}/libalternatives/ld/2.conf < diff --git a/cross-sparc-binutils.spec b/cross-sparc-binutils.spec index c535591..ebbc3ba 100644 --- a/cross-sparc-binutils.spec +++ b/cross-sparc-binutils.spec @@ -39,6 +39,13 @@ BuildRequires: zlib-devel %endif Version: 2.37 Release: 0 + +%if 0%{?suse_version} > 1500 +%bcond_without libalternatives +%else +%bcond_with libalternatives +%endif + # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -110,7 +117,11 @@ Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %description C compiler utilities: ar, as, gprof, ld, nm, objcopy, objdump, ranlib, @@ -122,7 +133,11 @@ Summary: The gold linker License: GPL-3.0-or-later Group: Development/Tools/Building Requires: binutils = %{version}-%{release} +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %if 0%{!?cross:1} %define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le s390x %sparc %endif @@ -395,12 +410,24 @@ if [ ! -f "%buildroot/%_bindir/ld.bfd" ]; then else rm -f "%buildroot/%_bindir/ld"; fi +%if ! 0%{with libalternatives} mkdir -p "%buildroot/%_sysconfdir/alternatives"; # Keep older versions of brp-symlink happy %if %{suse_version} < 1310 ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld" %endif ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld"; +%else +ln -s %{_bindir}/alts "%buildroot/%_bindir/ld"; +mkdir -p %{buildroot}%{_datadir}/libalternatives/ld; +cat > %{buildroot}%{_datadir}/libalternatives/ld/1.conf < %{buildroot}%{_datadir}/libalternatives/ld/2.conf < diff --git a/cross-sparc64-binutils.spec b/cross-sparc64-binutils.spec index 9c2a453..7f1cb41 100644 --- a/cross-sparc64-binutils.spec +++ b/cross-sparc64-binutils.spec @@ -39,6 +39,13 @@ BuildRequires: zlib-devel %endif Version: 2.37 Release: 0 + +%if 0%{?suse_version} > 1500 +%bcond_without libalternatives +%else +%bcond_with libalternatives +%endif + # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -110,7 +117,11 @@ Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %description C compiler utilities: ar, as, gprof, ld, nm, objcopy, objdump, ranlib, @@ -122,7 +133,11 @@ Summary: The gold linker License: GPL-3.0-or-later Group: Development/Tools/Building Requires: binutils = %{version}-%{release} +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %if 0%{!?cross:1} %define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le s390x %sparc %endif @@ -395,12 +410,24 @@ if [ ! -f "%buildroot/%_bindir/ld.bfd" ]; then else rm -f "%buildroot/%_bindir/ld"; fi +%if ! 0%{with libalternatives} mkdir -p "%buildroot/%_sysconfdir/alternatives"; # Keep older versions of brp-symlink happy %if %{suse_version} < 1310 ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld" %endif ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld"; +%else +ln -s %{_bindir}/alts "%buildroot/%_bindir/ld"; +mkdir -p %{buildroot}%{_datadir}/libalternatives/ld; +cat > %{buildroot}%{_datadir}/libalternatives/ld/1.conf < %{buildroot}%{_datadir}/libalternatives/ld/2.conf < diff --git a/cross-spu-binutils.spec b/cross-spu-binutils.spec index 57caf5e..e0134ee 100644 --- a/cross-spu-binutils.spec +++ b/cross-spu-binutils.spec @@ -39,6 +39,13 @@ BuildRequires: zlib-devel %endif Version: 2.37 Release: 0 + +%if 0%{?suse_version} > 1500 +%bcond_without libalternatives +%else +%bcond_with libalternatives +%endif + # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -110,7 +117,11 @@ Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %description C compiler utilities: ar, as, gprof, ld, nm, objcopy, objdump, ranlib, @@ -122,7 +133,11 @@ Summary: The gold linker License: GPL-3.0-or-later Group: Development/Tools/Building Requires: binutils = %{version}-%{release} +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %if 0%{!?cross:1} %define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le s390x %sparc %endif @@ -395,12 +410,24 @@ if [ ! -f "%buildroot/%_bindir/ld.bfd" ]; then else rm -f "%buildroot/%_bindir/ld"; fi +%if ! 0%{with libalternatives} mkdir -p "%buildroot/%_sysconfdir/alternatives"; # Keep older versions of brp-symlink happy %if %{suse_version} < 1310 ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld" %endif ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld"; +%else +ln -s %{_bindir}/alts "%buildroot/%_bindir/ld"; +mkdir -p %{buildroot}%{_datadir}/libalternatives/ld; +cat > %{buildroot}%{_datadir}/libalternatives/ld/1.conf < %{buildroot}%{_datadir}/libalternatives/ld/2.conf < diff --git a/cross-x86_64-binutils.spec b/cross-x86_64-binutils.spec index 2c4adf0..faf49e4 100644 --- a/cross-x86_64-binutils.spec +++ b/cross-x86_64-binutils.spec @@ -39,6 +39,13 @@ BuildRequires: zlib-devel %endif Version: 2.37 Release: 0 + +%if 0%{?suse_version} > 1500 +%bcond_without libalternatives +%else +%bcond_with libalternatives +%endif + # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -110,7 +117,11 @@ Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %description C compiler utilities: ar, as, gprof, ld, nm, objcopy, objdump, ranlib, @@ -122,7 +133,11 @@ Summary: The gold linker License: GPL-3.0-or-later Group: Development/Tools/Building Requires: binutils = %{version}-%{release} +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %if 0%{!?cross:1} %define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le s390x %sparc %endif @@ -395,12 +410,24 @@ if [ ! -f "%buildroot/%_bindir/ld.bfd" ]; then else rm -f "%buildroot/%_bindir/ld"; fi +%if ! 0%{with libalternatives} mkdir -p "%buildroot/%_sysconfdir/alternatives"; # Keep older versions of brp-symlink happy %if %{suse_version} < 1310 ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld" %endif ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld"; +%else +ln -s %{_bindir}/alts "%buildroot/%_bindir/ld"; +mkdir -p %{buildroot}%{_datadir}/libalternatives/ld; +cat > %{buildroot}%{_datadir}/libalternatives/ld/1.conf < %{buildroot}%{_datadir}/libalternatives/ld/2.conf < diff --git a/cross-xtensa-binutils.spec b/cross-xtensa-binutils.spec index 8f770e3..6310d73 100644 --- a/cross-xtensa-binutils.spec +++ b/cross-xtensa-binutils.spec @@ -39,6 +39,13 @@ BuildRequires: zlib-devel %endif Version: 2.37 Release: 0 + +%if 0%{?suse_version} > 1500 +%bcond_without libalternatives +%else +%bcond_with libalternatives +%endif + # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -110,7 +117,11 @@ Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch Patch93: cross-avr-size.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %description C compiler utilities: ar, as, gprof, ld, nm, objcopy, objdump, ranlib, @@ -122,7 +133,11 @@ Summary: The gold linker License: GPL-3.0-or-later Group: Development/Tools/Building Requires: binutils = %{version}-%{release} +%if %{with libalternatives} +Requires: alts +%else PreReq: update-alternatives +%endif %if 0%{!?cross:1} %define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le s390x %sparc %endif @@ -395,12 +410,24 @@ if [ ! -f "%buildroot/%_bindir/ld.bfd" ]; then else rm -f "%buildroot/%_bindir/ld"; fi +%if ! 0%{with libalternatives} mkdir -p "%buildroot/%_sysconfdir/alternatives"; # Keep older versions of brp-symlink happy %if %{suse_version} < 1310 ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld" %endif ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld"; +%else +ln -s %{_bindir}/alts "%buildroot/%_bindir/ld"; +mkdir -p %{buildroot}%{_datadir}/libalternatives/ld; +cat > %{buildroot}%{_datadir}/libalternatives/ld/1.conf < %{buildroot}%{_datadir}/libalternatives/ld/2.conf < Date: Mon, 11 Oct 2021 14:53:18 +0000 Subject: [PATCH 03/12] - Configure with --disable-x86-used-note on old code streams. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=369 --- binutils.changes | 7 +++++++ binutils.spec | 1 + cross-aarch64-binutils.changes | 7 +++++++ cross-aarch64-binutils.spec | 1 + cross-arm-binutils.changes | 7 +++++++ cross-arm-binutils.spec | 1 + cross-avr-binutils.changes | 7 +++++++ cross-avr-binutils.spec | 1 + cross-epiphany-binutils.changes | 7 +++++++ cross-epiphany-binutils.spec | 1 + cross-hppa-binutils.changes | 7 +++++++ cross-hppa-binutils.spec | 1 + cross-hppa64-binutils.changes | 7 +++++++ cross-hppa64-binutils.spec | 1 + cross-i386-binutils.changes | 7 +++++++ cross-i386-binutils.spec | 1 + cross-ia64-binutils.changes | 7 +++++++ cross-ia64-binutils.spec | 1 + cross-m68k-binutils.changes | 7 +++++++ cross-m68k-binutils.spec | 1 + cross-mips-binutils.changes | 7 +++++++ cross-mips-binutils.spec | 1 + cross-ppc-binutils.changes | 7 +++++++ cross-ppc-binutils.spec | 1 + cross-ppc64-binutils.changes | 7 +++++++ cross-ppc64-binutils.spec | 1 + cross-ppc64le-binutils.changes | 7 +++++++ cross-ppc64le-binutils.spec | 1 + cross-riscv64-binutils.changes | 7 +++++++ cross-riscv64-binutils.spec | 1 + cross-rx-binutils.changes | 7 +++++++ cross-rx-binutils.spec | 1 + cross-s390-binutils.changes | 7 +++++++ cross-s390-binutils.spec | 1 + cross-s390x-binutils.changes | 7 +++++++ cross-s390x-binutils.spec | 1 + cross-sparc-binutils.changes | 7 +++++++ cross-sparc-binutils.spec | 1 + cross-sparc64-binutils.changes | 7 +++++++ cross-sparc64-binutils.spec | 1 + cross-spu-binutils.changes | 7 +++++++ cross-spu-binutils.spec | 1 + cross-x86_64-binutils.changes | 7 +++++++ cross-x86_64-binutils.spec | 1 + cross-xtensa-binutils.changes | 7 +++++++ cross-xtensa-binutils.spec | 1 + 46 files changed, 184 insertions(+) diff --git a/binutils.changes b/binutils.changes index a84efdf..62a0cce 100644 --- a/binutils.changes +++ b/binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Fri Oct 8 14:11:44 UTC 2021 - Michael Matz + +- Configure with --disable-x86-used-note on old code streams. +- This state submitted to SLE12 and SLE15 code streams for annual + toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] + ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/binutils.spec b/binutils.spec index 059aab0..21a6ab7 100644 --- a/binutils.spec +++ b/binutils.spec @@ -291,6 +291,7 @@ cd build-dir --enable-compressed-debug-sections=gas \ %endif %if %{suse_version} < 1550 + --disable-x86-used-note \ --disable-separate-code \ %endif --enable-new-dtags \ diff --git a/cross-aarch64-binutils.changes b/cross-aarch64-binutils.changes index a84efdf..62a0cce 100644 --- a/cross-aarch64-binutils.changes +++ b/cross-aarch64-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Fri Oct 8 14:11:44 UTC 2021 - Michael Matz + +- Configure with --disable-x86-used-note on old code streams. +- This state submitted to SLE12 and SLE15 code streams for annual + toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] + ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-aarch64-binutils.spec b/cross-aarch64-binutils.spec index f04d799..73b019d 100644 --- a/cross-aarch64-binutils.spec +++ b/cross-aarch64-binutils.spec @@ -294,6 +294,7 @@ cd build-dir --enable-compressed-debug-sections=gas \ %endif %if %{suse_version} < 1550 + --disable-x86-used-note \ --disable-separate-code \ %endif --enable-new-dtags \ diff --git a/cross-arm-binutils.changes b/cross-arm-binutils.changes index a84efdf..62a0cce 100644 --- a/cross-arm-binutils.changes +++ b/cross-arm-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Fri Oct 8 14:11:44 UTC 2021 - Michael Matz + +- Configure with --disable-x86-used-note on old code streams. +- This state submitted to SLE12 and SLE15 code streams for annual + toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] + ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-arm-binutils.spec b/cross-arm-binutils.spec index deebec9..cdaa9e2 100644 --- a/cross-arm-binutils.spec +++ b/cross-arm-binutils.spec @@ -294,6 +294,7 @@ cd build-dir --enable-compressed-debug-sections=gas \ %endif %if %{suse_version} < 1550 + --disable-x86-used-note \ --disable-separate-code \ %endif --enable-new-dtags \ diff --git a/cross-avr-binutils.changes b/cross-avr-binutils.changes index a84efdf..62a0cce 100644 --- a/cross-avr-binutils.changes +++ b/cross-avr-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Fri Oct 8 14:11:44 UTC 2021 - Michael Matz + +- Configure with --disable-x86-used-note on old code streams. +- This state submitted to SLE12 and SLE15 code streams for annual + toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] + ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-avr-binutils.spec b/cross-avr-binutils.spec index aedfb06..85a3ef2 100644 --- a/cross-avr-binutils.spec +++ b/cross-avr-binutils.spec @@ -294,6 +294,7 @@ cd build-dir --enable-compressed-debug-sections=gas \ %endif %if %{suse_version} < 1550 + --disable-x86-used-note \ --disable-separate-code \ %endif --enable-new-dtags \ diff --git a/cross-epiphany-binutils.changes b/cross-epiphany-binutils.changes index a84efdf..62a0cce 100644 --- a/cross-epiphany-binutils.changes +++ b/cross-epiphany-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Fri Oct 8 14:11:44 UTC 2021 - Michael Matz + +- Configure with --disable-x86-used-note on old code streams. +- This state submitted to SLE12 and SLE15 code streams for annual + toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] + ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-epiphany-binutils.spec b/cross-epiphany-binutils.spec index 5c0a0e6..23d0385 100644 --- a/cross-epiphany-binutils.spec +++ b/cross-epiphany-binutils.spec @@ -294,6 +294,7 @@ cd build-dir --enable-compressed-debug-sections=gas \ %endif %if %{suse_version} < 1550 + --disable-x86-used-note \ --disable-separate-code \ %endif --enable-new-dtags \ diff --git a/cross-hppa-binutils.changes b/cross-hppa-binutils.changes index a84efdf..62a0cce 100644 --- a/cross-hppa-binutils.changes +++ b/cross-hppa-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Fri Oct 8 14:11:44 UTC 2021 - Michael Matz + +- Configure with --disable-x86-used-note on old code streams. +- This state submitted to SLE12 and SLE15 code streams for annual + toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] + ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-hppa-binutils.spec b/cross-hppa-binutils.spec index aa591e0..c95383e 100644 --- a/cross-hppa-binutils.spec +++ b/cross-hppa-binutils.spec @@ -294,6 +294,7 @@ cd build-dir --enable-compressed-debug-sections=gas \ %endif %if %{suse_version} < 1550 + --disable-x86-used-note \ --disable-separate-code \ %endif --enable-new-dtags \ diff --git a/cross-hppa64-binutils.changes b/cross-hppa64-binutils.changes index a84efdf..62a0cce 100644 --- a/cross-hppa64-binutils.changes +++ b/cross-hppa64-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Fri Oct 8 14:11:44 UTC 2021 - Michael Matz + +- Configure with --disable-x86-used-note on old code streams. +- This state submitted to SLE12 and SLE15 code streams for annual + toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] + ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-hppa64-binutils.spec b/cross-hppa64-binutils.spec index bf798d2..30b6c82 100644 --- a/cross-hppa64-binutils.spec +++ b/cross-hppa64-binutils.spec @@ -294,6 +294,7 @@ cd build-dir --enable-compressed-debug-sections=gas \ %endif %if %{suse_version} < 1550 + --disable-x86-used-note \ --disable-separate-code \ %endif --enable-new-dtags \ diff --git a/cross-i386-binutils.changes b/cross-i386-binutils.changes index a84efdf..62a0cce 100644 --- a/cross-i386-binutils.changes +++ b/cross-i386-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Fri Oct 8 14:11:44 UTC 2021 - Michael Matz + +- Configure with --disable-x86-used-note on old code streams. +- This state submitted to SLE12 and SLE15 code streams for annual + toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] + ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-i386-binutils.spec b/cross-i386-binutils.spec index 478b3c3..f520509 100644 --- a/cross-i386-binutils.spec +++ b/cross-i386-binutils.spec @@ -294,6 +294,7 @@ cd build-dir --enable-compressed-debug-sections=gas \ %endif %if %{suse_version} < 1550 + --disable-x86-used-note \ --disable-separate-code \ %endif --enable-new-dtags \ diff --git a/cross-ia64-binutils.changes b/cross-ia64-binutils.changes index a84efdf..62a0cce 100644 --- a/cross-ia64-binutils.changes +++ b/cross-ia64-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Fri Oct 8 14:11:44 UTC 2021 - Michael Matz + +- Configure with --disable-x86-used-note on old code streams. +- This state submitted to SLE12 and SLE15 code streams for annual + toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] + ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-ia64-binutils.spec b/cross-ia64-binutils.spec index c9228f2..1bc4482 100644 --- a/cross-ia64-binutils.spec +++ b/cross-ia64-binutils.spec @@ -294,6 +294,7 @@ cd build-dir --enable-compressed-debug-sections=gas \ %endif %if %{suse_version} < 1550 + --disable-x86-used-note \ --disable-separate-code \ %endif --enable-new-dtags \ diff --git a/cross-m68k-binutils.changes b/cross-m68k-binutils.changes index a84efdf..62a0cce 100644 --- a/cross-m68k-binutils.changes +++ b/cross-m68k-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Fri Oct 8 14:11:44 UTC 2021 - Michael Matz + +- Configure with --disable-x86-used-note on old code streams. +- This state submitted to SLE12 and SLE15 code streams for annual + toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] + ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-m68k-binutils.spec b/cross-m68k-binutils.spec index c7bf3c4..db0e870 100644 --- a/cross-m68k-binutils.spec +++ b/cross-m68k-binutils.spec @@ -294,6 +294,7 @@ cd build-dir --enable-compressed-debug-sections=gas \ %endif %if %{suse_version} < 1550 + --disable-x86-used-note \ --disable-separate-code \ %endif --enable-new-dtags \ diff --git a/cross-mips-binutils.changes b/cross-mips-binutils.changes index a84efdf..62a0cce 100644 --- a/cross-mips-binutils.changes +++ b/cross-mips-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Fri Oct 8 14:11:44 UTC 2021 - Michael Matz + +- Configure with --disable-x86-used-note on old code streams. +- This state submitted to SLE12 and SLE15 code streams for annual + toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] + ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-mips-binutils.spec b/cross-mips-binutils.spec index 50d8436..66f0f2f 100644 --- a/cross-mips-binutils.spec +++ b/cross-mips-binutils.spec @@ -294,6 +294,7 @@ cd build-dir --enable-compressed-debug-sections=gas \ %endif %if %{suse_version} < 1550 + --disable-x86-used-note \ --disable-separate-code \ %endif --enable-new-dtags \ diff --git a/cross-ppc-binutils.changes b/cross-ppc-binutils.changes index a84efdf..62a0cce 100644 --- a/cross-ppc-binutils.changes +++ b/cross-ppc-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Fri Oct 8 14:11:44 UTC 2021 - Michael Matz + +- Configure with --disable-x86-used-note on old code streams. +- This state submitted to SLE12 and SLE15 code streams for annual + toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] + ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-ppc-binutils.spec b/cross-ppc-binutils.spec index a4b8bf8..b9ea0d1 100644 --- a/cross-ppc-binutils.spec +++ b/cross-ppc-binutils.spec @@ -294,6 +294,7 @@ cd build-dir --enable-compressed-debug-sections=gas \ %endif %if %{suse_version} < 1550 + --disable-x86-used-note \ --disable-separate-code \ %endif --enable-new-dtags \ diff --git a/cross-ppc64-binutils.changes b/cross-ppc64-binutils.changes index a84efdf..62a0cce 100644 --- a/cross-ppc64-binutils.changes +++ b/cross-ppc64-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Fri Oct 8 14:11:44 UTC 2021 - Michael Matz + +- Configure with --disable-x86-used-note on old code streams. +- This state submitted to SLE12 and SLE15 code streams for annual + toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] + ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-ppc64-binutils.spec b/cross-ppc64-binutils.spec index 97eae35..75b57a0 100644 --- a/cross-ppc64-binutils.spec +++ b/cross-ppc64-binutils.spec @@ -294,6 +294,7 @@ cd build-dir --enable-compressed-debug-sections=gas \ %endif %if %{suse_version} < 1550 + --disable-x86-used-note \ --disable-separate-code \ %endif --enable-new-dtags \ diff --git a/cross-ppc64le-binutils.changes b/cross-ppc64le-binutils.changes index a84efdf..62a0cce 100644 --- a/cross-ppc64le-binutils.changes +++ b/cross-ppc64le-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Fri Oct 8 14:11:44 UTC 2021 - Michael Matz + +- Configure with --disable-x86-used-note on old code streams. +- This state submitted to SLE12 and SLE15 code streams for annual + toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] + ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-ppc64le-binutils.spec b/cross-ppc64le-binutils.spec index dcbd3fb..8604c2f 100644 --- a/cross-ppc64le-binutils.spec +++ b/cross-ppc64le-binutils.spec @@ -294,6 +294,7 @@ cd build-dir --enable-compressed-debug-sections=gas \ %endif %if %{suse_version} < 1550 + --disable-x86-used-note \ --disable-separate-code \ %endif --enable-new-dtags \ diff --git a/cross-riscv64-binutils.changes b/cross-riscv64-binutils.changes index a84efdf..62a0cce 100644 --- a/cross-riscv64-binutils.changes +++ b/cross-riscv64-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Fri Oct 8 14:11:44 UTC 2021 - Michael Matz + +- Configure with --disable-x86-used-note on old code streams. +- This state submitted to SLE12 and SLE15 code streams for annual + toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] + ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-riscv64-binutils.spec b/cross-riscv64-binutils.spec index 7f80418..0722960 100644 --- a/cross-riscv64-binutils.spec +++ b/cross-riscv64-binutils.spec @@ -294,6 +294,7 @@ cd build-dir --enable-compressed-debug-sections=gas \ %endif %if %{suse_version} < 1550 + --disable-x86-used-note \ --disable-separate-code \ %endif --enable-new-dtags \ diff --git a/cross-rx-binutils.changes b/cross-rx-binutils.changes index a84efdf..62a0cce 100644 --- a/cross-rx-binutils.changes +++ b/cross-rx-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Fri Oct 8 14:11:44 UTC 2021 - Michael Matz + +- Configure with --disable-x86-used-note on old code streams. +- This state submitted to SLE12 and SLE15 code streams for annual + toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] + ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-rx-binutils.spec b/cross-rx-binutils.spec index ba9a8ae..314ac6c 100644 --- a/cross-rx-binutils.spec +++ b/cross-rx-binutils.spec @@ -294,6 +294,7 @@ cd build-dir --enable-compressed-debug-sections=gas \ %endif %if %{suse_version} < 1550 + --disable-x86-used-note \ --disable-separate-code \ %endif --enable-new-dtags \ diff --git a/cross-s390-binutils.changes b/cross-s390-binutils.changes index a84efdf..62a0cce 100644 --- a/cross-s390-binutils.changes +++ b/cross-s390-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Fri Oct 8 14:11:44 UTC 2021 - Michael Matz + +- Configure with --disable-x86-used-note on old code streams. +- This state submitted to SLE12 and SLE15 code streams for annual + toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] + ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-s390-binutils.spec b/cross-s390-binutils.spec index 2fce6b7..56b91ec 100644 --- a/cross-s390-binutils.spec +++ b/cross-s390-binutils.spec @@ -294,6 +294,7 @@ cd build-dir --enable-compressed-debug-sections=gas \ %endif %if %{suse_version} < 1550 + --disable-x86-used-note \ --disable-separate-code \ %endif --enable-new-dtags \ diff --git a/cross-s390x-binutils.changes b/cross-s390x-binutils.changes index a84efdf..62a0cce 100644 --- a/cross-s390x-binutils.changes +++ b/cross-s390x-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Fri Oct 8 14:11:44 UTC 2021 - Michael Matz + +- Configure with --disable-x86-used-note on old code streams. +- This state submitted to SLE12 and SLE15 code streams for annual + toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] + ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-s390x-binutils.spec b/cross-s390x-binutils.spec index 692a329..d9376aa 100644 --- a/cross-s390x-binutils.spec +++ b/cross-s390x-binutils.spec @@ -294,6 +294,7 @@ cd build-dir --enable-compressed-debug-sections=gas \ %endif %if %{suse_version} < 1550 + --disable-x86-used-note \ --disable-separate-code \ %endif --enable-new-dtags \ diff --git a/cross-sparc-binutils.changes b/cross-sparc-binutils.changes index a84efdf..62a0cce 100644 --- a/cross-sparc-binutils.changes +++ b/cross-sparc-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Fri Oct 8 14:11:44 UTC 2021 - Michael Matz + +- Configure with --disable-x86-used-note on old code streams. +- This state submitted to SLE12 and SLE15 code streams for annual + toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] + ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-sparc-binutils.spec b/cross-sparc-binutils.spec index ebbc3ba..8963693 100644 --- a/cross-sparc-binutils.spec +++ b/cross-sparc-binutils.spec @@ -294,6 +294,7 @@ cd build-dir --enable-compressed-debug-sections=gas \ %endif %if %{suse_version} < 1550 + --disable-x86-used-note \ --disable-separate-code \ %endif --enable-new-dtags \ diff --git a/cross-sparc64-binutils.changes b/cross-sparc64-binutils.changes index a84efdf..62a0cce 100644 --- a/cross-sparc64-binutils.changes +++ b/cross-sparc64-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Fri Oct 8 14:11:44 UTC 2021 - Michael Matz + +- Configure with --disable-x86-used-note on old code streams. +- This state submitted to SLE12 and SLE15 code streams for annual + toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] + ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-sparc64-binutils.spec b/cross-sparc64-binutils.spec index 7f1cb41..44b6789 100644 --- a/cross-sparc64-binutils.spec +++ b/cross-sparc64-binutils.spec @@ -294,6 +294,7 @@ cd build-dir --enable-compressed-debug-sections=gas \ %endif %if %{suse_version} < 1550 + --disable-x86-used-note \ --disable-separate-code \ %endif --enable-new-dtags \ diff --git a/cross-spu-binutils.changes b/cross-spu-binutils.changes index a84efdf..62a0cce 100644 --- a/cross-spu-binutils.changes +++ b/cross-spu-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Fri Oct 8 14:11:44 UTC 2021 - Michael Matz + +- Configure with --disable-x86-used-note on old code streams. +- This state submitted to SLE12 and SLE15 code streams for annual + toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] + ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-spu-binutils.spec b/cross-spu-binutils.spec index e0134ee..36be068 100644 --- a/cross-spu-binutils.spec +++ b/cross-spu-binutils.spec @@ -294,6 +294,7 @@ cd build-dir --enable-compressed-debug-sections=gas \ %endif %if %{suse_version} < 1550 + --disable-x86-used-note \ --disable-separate-code \ %endif --enable-new-dtags \ diff --git a/cross-x86_64-binutils.changes b/cross-x86_64-binutils.changes index a84efdf..62a0cce 100644 --- a/cross-x86_64-binutils.changes +++ b/cross-x86_64-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Fri Oct 8 14:11:44 UTC 2021 - Michael Matz + +- Configure with --disable-x86-used-note on old code streams. +- This state submitted to SLE12 and SLE15 code streams for annual + toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] + ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-x86_64-binutils.spec b/cross-x86_64-binutils.spec index faf49e4..8d034c1 100644 --- a/cross-x86_64-binutils.spec +++ b/cross-x86_64-binutils.spec @@ -294,6 +294,7 @@ cd build-dir --enable-compressed-debug-sections=gas \ %endif %if %{suse_version} < 1550 + --disable-x86-used-note \ --disable-separate-code \ %endif --enable-new-dtags \ diff --git a/cross-xtensa-binutils.changes b/cross-xtensa-binutils.changes index a84efdf..62a0cce 100644 --- a/cross-xtensa-binutils.changes +++ b/cross-xtensa-binutils.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Fri Oct 8 14:11:44 UTC 2021 - Michael Matz + +- Configure with --disable-x86-used-note on old code streams. +- This state submitted to SLE12 and SLE15 code streams for annual + toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] + ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-xtensa-binutils.spec b/cross-xtensa-binutils.spec index 6310d73..4452ff7 100644 --- a/cross-xtensa-binutils.spec +++ b/cross-xtensa-binutils.spec @@ -294,6 +294,7 @@ cd build-dir --enable-compressed-debug-sections=gas \ %endif %if %{suse_version} < 1550 + --disable-x86-used-note \ --disable-separate-code \ %endif --enable-new-dtags \ From f755c603774a1aeb384e68e87983ab7d3c12fda6d0143007d8112fb8d2df2e64 Mon Sep 17 00:00:00 2001 From: Michael Matz Date: Tue, 12 Oct 2021 12:56:27 +0000 Subject: [PATCH 04/12] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for PR28422, PR28192, PR28391. Also adds some s390x arch14 instructions [jsc#SLE-18637]. OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=370 --- binutils-2.37-branch.diff.gz | 4 ++-- binutils.changes | 3 +++ cross-aarch64-binutils.changes | 3 +++ cross-arm-binutils.changes | 3 +++ cross-avr-binutils.changes | 3 +++ cross-epiphany-binutils.changes | 3 +++ cross-hppa-binutils.changes | 3 +++ cross-hppa64-binutils.changes | 3 +++ cross-i386-binutils.changes | 3 +++ cross-ia64-binutils.changes | 3 +++ cross-m68k-binutils.changes | 3 +++ cross-mips-binutils.changes | 3 +++ cross-ppc-binutils.changes | 3 +++ cross-ppc64-binutils.changes | 3 +++ cross-ppc64le-binutils.changes | 3 +++ cross-riscv64-binutils.changes | 3 +++ cross-rx-binutils.changes | 3 +++ cross-s390-binutils.changes | 3 +++ cross-s390x-binutils.changes | 3 +++ cross-sparc-binutils.changes | 3 +++ cross-sparc64-binutils.changes | 3 +++ cross-spu-binutils.changes | 3 +++ cross-x86_64-binutils.changes | 3 +++ cross-xtensa-binutils.changes | 3 +++ 24 files changed, 71 insertions(+), 2 deletions(-) diff --git a/binutils-2.37-branch.diff.gz b/binutils-2.37-branch.diff.gz index bc7a2d7..2fe5fe0 100644 --- a/binutils-2.37-branch.diff.gz +++ b/binutils-2.37-branch.diff.gz @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fcfb8e1aba4fc2bb64a6005491e80dafa1741a25aa61b8e4e552711f3d48f78b -size 88423 +oid sha256:11020a58c45a40dda209a8b12f70415f60409311f3de1072de704b152e9d0825 +size 100802 diff --git a/binutils.changes b/binutils.changes index 62a0cce..1327226 100644 --- a/binutils.changes +++ b/binutils.changes @@ -4,6 +4,9 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] +- Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for + PR28422, PR28192, PR28391. Also adds some s390x arch14 + instructions [jsc#SLE-18637]. ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-aarch64-binutils.changes b/cross-aarch64-binutils.changes index 62a0cce..1327226 100644 --- a/cross-aarch64-binutils.changes +++ b/cross-aarch64-binutils.changes @@ -4,6 +4,9 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] +- Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for + PR28422, PR28192, PR28391. Also adds some s390x arch14 + instructions [jsc#SLE-18637]. ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-arm-binutils.changes b/cross-arm-binutils.changes index 62a0cce..1327226 100644 --- a/cross-arm-binutils.changes +++ b/cross-arm-binutils.changes @@ -4,6 +4,9 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] +- Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for + PR28422, PR28192, PR28391. Also adds some s390x arch14 + instructions [jsc#SLE-18637]. ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-avr-binutils.changes b/cross-avr-binutils.changes index 62a0cce..1327226 100644 --- a/cross-avr-binutils.changes +++ b/cross-avr-binutils.changes @@ -4,6 +4,9 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] +- Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for + PR28422, PR28192, PR28391. Also adds some s390x arch14 + instructions [jsc#SLE-18637]. ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-epiphany-binutils.changes b/cross-epiphany-binutils.changes index 62a0cce..1327226 100644 --- a/cross-epiphany-binutils.changes +++ b/cross-epiphany-binutils.changes @@ -4,6 +4,9 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] +- Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for + PR28422, PR28192, PR28391. Also adds some s390x arch14 + instructions [jsc#SLE-18637]. ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-hppa-binutils.changes b/cross-hppa-binutils.changes index 62a0cce..1327226 100644 --- a/cross-hppa-binutils.changes +++ b/cross-hppa-binutils.changes @@ -4,6 +4,9 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] +- Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for + PR28422, PR28192, PR28391. Also adds some s390x arch14 + instructions [jsc#SLE-18637]. ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-hppa64-binutils.changes b/cross-hppa64-binutils.changes index 62a0cce..1327226 100644 --- a/cross-hppa64-binutils.changes +++ b/cross-hppa64-binutils.changes @@ -4,6 +4,9 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] +- Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for + PR28422, PR28192, PR28391. Also adds some s390x arch14 + instructions [jsc#SLE-18637]. ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-i386-binutils.changes b/cross-i386-binutils.changes index 62a0cce..1327226 100644 --- a/cross-i386-binutils.changes +++ b/cross-i386-binutils.changes @@ -4,6 +4,9 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] +- Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for + PR28422, PR28192, PR28391. Also adds some s390x arch14 + instructions [jsc#SLE-18637]. ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-ia64-binutils.changes b/cross-ia64-binutils.changes index 62a0cce..1327226 100644 --- a/cross-ia64-binutils.changes +++ b/cross-ia64-binutils.changes @@ -4,6 +4,9 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] +- Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for + PR28422, PR28192, PR28391. Also adds some s390x arch14 + instructions [jsc#SLE-18637]. ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-m68k-binutils.changes b/cross-m68k-binutils.changes index 62a0cce..1327226 100644 --- a/cross-m68k-binutils.changes +++ b/cross-m68k-binutils.changes @@ -4,6 +4,9 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] +- Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for + PR28422, PR28192, PR28391. Also adds some s390x arch14 + instructions [jsc#SLE-18637]. ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-mips-binutils.changes b/cross-mips-binutils.changes index 62a0cce..1327226 100644 --- a/cross-mips-binutils.changes +++ b/cross-mips-binutils.changes @@ -4,6 +4,9 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] +- Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for + PR28422, PR28192, PR28391. Also adds some s390x arch14 + instructions [jsc#SLE-18637]. ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-ppc-binutils.changes b/cross-ppc-binutils.changes index 62a0cce..1327226 100644 --- a/cross-ppc-binutils.changes +++ b/cross-ppc-binutils.changes @@ -4,6 +4,9 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] +- Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for + PR28422, PR28192, PR28391. Also adds some s390x arch14 + instructions [jsc#SLE-18637]. ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-ppc64-binutils.changes b/cross-ppc64-binutils.changes index 62a0cce..1327226 100644 --- a/cross-ppc64-binutils.changes +++ b/cross-ppc64-binutils.changes @@ -4,6 +4,9 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] +- Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for + PR28422, PR28192, PR28391. Also adds some s390x arch14 + instructions [jsc#SLE-18637]. ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-ppc64le-binutils.changes b/cross-ppc64le-binutils.changes index 62a0cce..1327226 100644 --- a/cross-ppc64le-binutils.changes +++ b/cross-ppc64le-binutils.changes @@ -4,6 +4,9 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] +- Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for + PR28422, PR28192, PR28391. Also adds some s390x arch14 + instructions [jsc#SLE-18637]. ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-riscv64-binutils.changes b/cross-riscv64-binutils.changes index 62a0cce..1327226 100644 --- a/cross-riscv64-binutils.changes +++ b/cross-riscv64-binutils.changes @@ -4,6 +4,9 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] +- Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for + PR28422, PR28192, PR28391. Also adds some s390x arch14 + instructions [jsc#SLE-18637]. ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-rx-binutils.changes b/cross-rx-binutils.changes index 62a0cce..1327226 100644 --- a/cross-rx-binutils.changes +++ b/cross-rx-binutils.changes @@ -4,6 +4,9 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] +- Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for + PR28422, PR28192, PR28391. Also adds some s390x arch14 + instructions [jsc#SLE-18637]. ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-s390-binutils.changes b/cross-s390-binutils.changes index 62a0cce..1327226 100644 --- a/cross-s390-binutils.changes +++ b/cross-s390-binutils.changes @@ -4,6 +4,9 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] +- Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for + PR28422, PR28192, PR28391. Also adds some s390x arch14 + instructions [jsc#SLE-18637]. ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-s390x-binutils.changes b/cross-s390x-binutils.changes index 62a0cce..1327226 100644 --- a/cross-s390x-binutils.changes +++ b/cross-s390x-binutils.changes @@ -4,6 +4,9 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] +- Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for + PR28422, PR28192, PR28391. Also adds some s390x arch14 + instructions [jsc#SLE-18637]. ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-sparc-binutils.changes b/cross-sparc-binutils.changes index 62a0cce..1327226 100644 --- a/cross-sparc-binutils.changes +++ b/cross-sparc-binutils.changes @@ -4,6 +4,9 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] +- Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for + PR28422, PR28192, PR28391. Also adds some s390x arch14 + instructions [jsc#SLE-18637]. ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-sparc64-binutils.changes b/cross-sparc64-binutils.changes index 62a0cce..1327226 100644 --- a/cross-sparc64-binutils.changes +++ b/cross-sparc64-binutils.changes @@ -4,6 +4,9 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] +- Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for + PR28422, PR28192, PR28391. Also adds some s390x arch14 + instructions [jsc#SLE-18637]. ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-spu-binutils.changes b/cross-spu-binutils.changes index 62a0cce..1327226 100644 --- a/cross-spu-binutils.changes +++ b/cross-spu-binutils.changes @@ -4,6 +4,9 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] +- Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for + PR28422, PR28192, PR28391. Also adds some s390x arch14 + instructions [jsc#SLE-18637]. ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-x86_64-binutils.changes b/cross-x86_64-binutils.changes index 62a0cce..1327226 100644 --- a/cross-x86_64-binutils.changes +++ b/cross-x86_64-binutils.changes @@ -4,6 +4,9 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] +- Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for + PR28422, PR28192, PR28391. Also adds some s390x arch14 + instructions [jsc#SLE-18637]. ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de diff --git a/cross-xtensa-binutils.changes b/cross-xtensa-binutils.changes index 62a0cce..1327226 100644 --- a/cross-xtensa-binutils.changes +++ b/cross-xtensa-binutils.changes @@ -4,6 +4,9 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] +- Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for + PR28422, PR28192, PR28391. Also adds some s390x arch14 + instructions [jsc#SLE-18637]. ------------------------------------------------------------------- Fri Sep 10 23:16:12 CEST 2021 - Stefan Schubert schubi@suse.de From 30b18fbb6bbedb4b5a5fd0945aae6fdca93d98a3d93abaaf3e30cb6ca03a2671 Mon Sep 17 00:00:00 2001 From: Michael Matz Date: Tue, 12 Oct 2021 14:01:53 +0000 Subject: [PATCH 05/12] Work around dependency problems OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=371 --- binutils.spec | 8 ++++++++ cross-aarch64-binutils.spec | 8 ++++++++ cross-arm-binutils.spec | 8 ++++++++ cross-avr-binutils.spec | 8 ++++++++ cross-epiphany-binutils.spec | 8 ++++++++ cross-hppa-binutils.spec | 8 ++++++++ cross-hppa64-binutils.spec | 8 ++++++++ cross-i386-binutils.spec | 8 ++++++++ cross-ia64-binutils.spec | 8 ++++++++ cross-m68k-binutils.spec | 8 ++++++++ cross-mips-binutils.spec | 8 ++++++++ cross-ppc-binutils.spec | 8 ++++++++ cross-ppc64-binutils.spec | 8 ++++++++ cross-ppc64le-binutils.spec | 8 ++++++++ cross-riscv64-binutils.spec | 8 ++++++++ cross-rx-binutils.spec | 8 ++++++++ cross-s390-binutils.spec | 8 ++++++++ cross-s390x-binutils.spec | 8 ++++++++ cross-sparc-binutils.spec | 8 ++++++++ cross-sparc64-binutils.spec | 8 ++++++++ cross-spu-binutils.spec | 8 ++++++++ cross-x86_64-binutils.spec | 8 ++++++++ cross-xtensa-binutils.spec | 8 ++++++++ 23 files changed, 184 insertions(+) diff --git a/binutils.spec b/binutils.spec index 21a6ab7..5f7ac23 100644 --- a/binutils.spec +++ b/binutils.spec @@ -221,6 +221,14 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +# in parallel builds, when the flex or bison inputs are patched (possibly +# in the ...-branch.diff) it might happen that the dependency tracking +# of automake is confused and uses the old .c files from srcdir/ld/ while +# also generating the new .c files in builddir/ld leading to trouble. +# I haven't found the right entries to ensure this doesn't happen, so +# simply remove the intermediates +rm -f ld/ldlex.c +rm -f ld/ldgram.c ld/ldgram.h %build %define _lto_cflags %{nil} diff --git a/cross-aarch64-binutils.spec b/cross-aarch64-binutils.spec index 73b019d..5a02801 100644 --- a/cross-aarch64-binutils.spec +++ b/cross-aarch64-binutils.spec @@ -224,6 +224,14 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +# in parallel builds, when the flex or bison inputs are patched (possibly +# in the ...-branch.diff) it might happen that the dependency tracking +# of automake is confused and uses the old .c files from srcdir/ld/ while +# also generating the new .c files in builddir/ld leading to trouble. +# I haven't found the right entries to ensure this doesn't happen, so +# simply remove the intermediates +rm -f ld/ldlex.c +rm -f ld/ldgram.c ld/ldgram.h %build %define _lto_cflags %{nil} diff --git a/cross-arm-binutils.spec b/cross-arm-binutils.spec index cdaa9e2..04956da 100644 --- a/cross-arm-binutils.spec +++ b/cross-arm-binutils.spec @@ -224,6 +224,14 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +# in parallel builds, when the flex or bison inputs are patched (possibly +# in the ...-branch.diff) it might happen that the dependency tracking +# of automake is confused and uses the old .c files from srcdir/ld/ while +# also generating the new .c files in builddir/ld leading to trouble. +# I haven't found the right entries to ensure this doesn't happen, so +# simply remove the intermediates +rm -f ld/ldlex.c +rm -f ld/ldgram.c ld/ldgram.h %build %define _lto_cflags %{nil} diff --git a/cross-avr-binutils.spec b/cross-avr-binutils.spec index 85a3ef2..3103ae7 100644 --- a/cross-avr-binutils.spec +++ b/cross-avr-binutils.spec @@ -224,6 +224,14 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +# in parallel builds, when the flex or bison inputs are patched (possibly +# in the ...-branch.diff) it might happen that the dependency tracking +# of automake is confused and uses the old .c files from srcdir/ld/ while +# also generating the new .c files in builddir/ld leading to trouble. +# I haven't found the right entries to ensure this doesn't happen, so +# simply remove the intermediates +rm -f ld/ldlex.c +rm -f ld/ldgram.c ld/ldgram.h %build %define _lto_cflags %{nil} diff --git a/cross-epiphany-binutils.spec b/cross-epiphany-binutils.spec index 23d0385..70ab959 100644 --- a/cross-epiphany-binutils.spec +++ b/cross-epiphany-binutils.spec @@ -224,6 +224,14 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +# in parallel builds, when the flex or bison inputs are patched (possibly +# in the ...-branch.diff) it might happen that the dependency tracking +# of automake is confused and uses the old .c files from srcdir/ld/ while +# also generating the new .c files in builddir/ld leading to trouble. +# I haven't found the right entries to ensure this doesn't happen, so +# simply remove the intermediates +rm -f ld/ldlex.c +rm -f ld/ldgram.c ld/ldgram.h %build %define _lto_cflags %{nil} diff --git a/cross-hppa-binutils.spec b/cross-hppa-binutils.spec index c95383e..fbe4179 100644 --- a/cross-hppa-binutils.spec +++ b/cross-hppa-binutils.spec @@ -224,6 +224,14 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +# in parallel builds, when the flex or bison inputs are patched (possibly +# in the ...-branch.diff) it might happen that the dependency tracking +# of automake is confused and uses the old .c files from srcdir/ld/ while +# also generating the new .c files in builddir/ld leading to trouble. +# I haven't found the right entries to ensure this doesn't happen, so +# simply remove the intermediates +rm -f ld/ldlex.c +rm -f ld/ldgram.c ld/ldgram.h %build %define _lto_cflags %{nil} diff --git a/cross-hppa64-binutils.spec b/cross-hppa64-binutils.spec index 30b6c82..4276412 100644 --- a/cross-hppa64-binutils.spec +++ b/cross-hppa64-binutils.spec @@ -224,6 +224,14 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +# in parallel builds, when the flex or bison inputs are patched (possibly +# in the ...-branch.diff) it might happen that the dependency tracking +# of automake is confused and uses the old .c files from srcdir/ld/ while +# also generating the new .c files in builddir/ld leading to trouble. +# I haven't found the right entries to ensure this doesn't happen, so +# simply remove the intermediates +rm -f ld/ldlex.c +rm -f ld/ldgram.c ld/ldgram.h %build %define _lto_cflags %{nil} diff --git a/cross-i386-binutils.spec b/cross-i386-binutils.spec index f520509..9d6d6a8 100644 --- a/cross-i386-binutils.spec +++ b/cross-i386-binutils.spec @@ -224,6 +224,14 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +# in parallel builds, when the flex or bison inputs are patched (possibly +# in the ...-branch.diff) it might happen that the dependency tracking +# of automake is confused and uses the old .c files from srcdir/ld/ while +# also generating the new .c files in builddir/ld leading to trouble. +# I haven't found the right entries to ensure this doesn't happen, so +# simply remove the intermediates +rm -f ld/ldlex.c +rm -f ld/ldgram.c ld/ldgram.h %build %define _lto_cflags %{nil} diff --git a/cross-ia64-binutils.spec b/cross-ia64-binutils.spec index 1bc4482..98c06bc 100644 --- a/cross-ia64-binutils.spec +++ b/cross-ia64-binutils.spec @@ -224,6 +224,14 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +# in parallel builds, when the flex or bison inputs are patched (possibly +# in the ...-branch.diff) it might happen that the dependency tracking +# of automake is confused and uses the old .c files from srcdir/ld/ while +# also generating the new .c files in builddir/ld leading to trouble. +# I haven't found the right entries to ensure this doesn't happen, so +# simply remove the intermediates +rm -f ld/ldlex.c +rm -f ld/ldgram.c ld/ldgram.h %build %define _lto_cflags %{nil} diff --git a/cross-m68k-binutils.spec b/cross-m68k-binutils.spec index db0e870..799190e 100644 --- a/cross-m68k-binutils.spec +++ b/cross-m68k-binutils.spec @@ -224,6 +224,14 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +# in parallel builds, when the flex or bison inputs are patched (possibly +# in the ...-branch.diff) it might happen that the dependency tracking +# of automake is confused and uses the old .c files from srcdir/ld/ while +# also generating the new .c files in builddir/ld leading to trouble. +# I haven't found the right entries to ensure this doesn't happen, so +# simply remove the intermediates +rm -f ld/ldlex.c +rm -f ld/ldgram.c ld/ldgram.h %build %define _lto_cflags %{nil} diff --git a/cross-mips-binutils.spec b/cross-mips-binutils.spec index 66f0f2f..a21d9be 100644 --- a/cross-mips-binutils.spec +++ b/cross-mips-binutils.spec @@ -224,6 +224,14 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +# in parallel builds, when the flex or bison inputs are patched (possibly +# in the ...-branch.diff) it might happen that the dependency tracking +# of automake is confused and uses the old .c files from srcdir/ld/ while +# also generating the new .c files in builddir/ld leading to trouble. +# I haven't found the right entries to ensure this doesn't happen, so +# simply remove the intermediates +rm -f ld/ldlex.c +rm -f ld/ldgram.c ld/ldgram.h %build %define _lto_cflags %{nil} diff --git a/cross-ppc-binutils.spec b/cross-ppc-binutils.spec index b9ea0d1..70415ac 100644 --- a/cross-ppc-binutils.spec +++ b/cross-ppc-binutils.spec @@ -224,6 +224,14 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +# in parallel builds, when the flex or bison inputs are patched (possibly +# in the ...-branch.diff) it might happen that the dependency tracking +# of automake is confused and uses the old .c files from srcdir/ld/ while +# also generating the new .c files in builddir/ld leading to trouble. +# I haven't found the right entries to ensure this doesn't happen, so +# simply remove the intermediates +rm -f ld/ldlex.c +rm -f ld/ldgram.c ld/ldgram.h %build %define _lto_cflags %{nil} diff --git a/cross-ppc64-binutils.spec b/cross-ppc64-binutils.spec index 75b57a0..b1ebea0 100644 --- a/cross-ppc64-binutils.spec +++ b/cross-ppc64-binutils.spec @@ -224,6 +224,14 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +# in parallel builds, when the flex or bison inputs are patched (possibly +# in the ...-branch.diff) it might happen that the dependency tracking +# of automake is confused and uses the old .c files from srcdir/ld/ while +# also generating the new .c files in builddir/ld leading to trouble. +# I haven't found the right entries to ensure this doesn't happen, so +# simply remove the intermediates +rm -f ld/ldlex.c +rm -f ld/ldgram.c ld/ldgram.h %build %define _lto_cflags %{nil} diff --git a/cross-ppc64le-binutils.spec b/cross-ppc64le-binutils.spec index 8604c2f..118c6f1 100644 --- a/cross-ppc64le-binutils.spec +++ b/cross-ppc64le-binutils.spec @@ -224,6 +224,14 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +# in parallel builds, when the flex or bison inputs are patched (possibly +# in the ...-branch.diff) it might happen that the dependency tracking +# of automake is confused and uses the old .c files from srcdir/ld/ while +# also generating the new .c files in builddir/ld leading to trouble. +# I haven't found the right entries to ensure this doesn't happen, so +# simply remove the intermediates +rm -f ld/ldlex.c +rm -f ld/ldgram.c ld/ldgram.h %build %define _lto_cflags %{nil} diff --git a/cross-riscv64-binutils.spec b/cross-riscv64-binutils.spec index 0722960..f99672c 100644 --- a/cross-riscv64-binutils.spec +++ b/cross-riscv64-binutils.spec @@ -224,6 +224,14 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +# in parallel builds, when the flex or bison inputs are patched (possibly +# in the ...-branch.diff) it might happen that the dependency tracking +# of automake is confused and uses the old .c files from srcdir/ld/ while +# also generating the new .c files in builddir/ld leading to trouble. +# I haven't found the right entries to ensure this doesn't happen, so +# simply remove the intermediates +rm -f ld/ldlex.c +rm -f ld/ldgram.c ld/ldgram.h %build %define _lto_cflags %{nil} diff --git a/cross-rx-binutils.spec b/cross-rx-binutils.spec index 314ac6c..53c8601 100644 --- a/cross-rx-binutils.spec +++ b/cross-rx-binutils.spec @@ -224,6 +224,14 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +# in parallel builds, when the flex or bison inputs are patched (possibly +# in the ...-branch.diff) it might happen that the dependency tracking +# of automake is confused and uses the old .c files from srcdir/ld/ while +# also generating the new .c files in builddir/ld leading to trouble. +# I haven't found the right entries to ensure this doesn't happen, so +# simply remove the intermediates +rm -f ld/ldlex.c +rm -f ld/ldgram.c ld/ldgram.h %build %define _lto_cflags %{nil} diff --git a/cross-s390-binutils.spec b/cross-s390-binutils.spec index 56b91ec..daf187b 100644 --- a/cross-s390-binutils.spec +++ b/cross-s390-binutils.spec @@ -224,6 +224,14 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +# in parallel builds, when the flex or bison inputs are patched (possibly +# in the ...-branch.diff) it might happen that the dependency tracking +# of automake is confused and uses the old .c files from srcdir/ld/ while +# also generating the new .c files in builddir/ld leading to trouble. +# I haven't found the right entries to ensure this doesn't happen, so +# simply remove the intermediates +rm -f ld/ldlex.c +rm -f ld/ldgram.c ld/ldgram.h %build %define _lto_cflags %{nil} diff --git a/cross-s390x-binutils.spec b/cross-s390x-binutils.spec index d9376aa..ab15386 100644 --- a/cross-s390x-binutils.spec +++ b/cross-s390x-binutils.spec @@ -224,6 +224,14 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +# in parallel builds, when the flex or bison inputs are patched (possibly +# in the ...-branch.diff) it might happen that the dependency tracking +# of automake is confused and uses the old .c files from srcdir/ld/ while +# also generating the new .c files in builddir/ld leading to trouble. +# I haven't found the right entries to ensure this doesn't happen, so +# simply remove the intermediates +rm -f ld/ldlex.c +rm -f ld/ldgram.c ld/ldgram.h %build %define _lto_cflags %{nil} diff --git a/cross-sparc-binutils.spec b/cross-sparc-binutils.spec index 8963693..6a36c3b 100644 --- a/cross-sparc-binutils.spec +++ b/cross-sparc-binutils.spec @@ -224,6 +224,14 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +# in parallel builds, when the flex or bison inputs are patched (possibly +# in the ...-branch.diff) it might happen that the dependency tracking +# of automake is confused and uses the old .c files from srcdir/ld/ while +# also generating the new .c files in builddir/ld leading to trouble. +# I haven't found the right entries to ensure this doesn't happen, so +# simply remove the intermediates +rm -f ld/ldlex.c +rm -f ld/ldgram.c ld/ldgram.h %build %define _lto_cflags %{nil} diff --git a/cross-sparc64-binutils.spec b/cross-sparc64-binutils.spec index 44b6789..d64e901 100644 --- a/cross-sparc64-binutils.spec +++ b/cross-sparc64-binutils.spec @@ -224,6 +224,14 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +# in parallel builds, when the flex or bison inputs are patched (possibly +# in the ...-branch.diff) it might happen that the dependency tracking +# of automake is confused and uses the old .c files from srcdir/ld/ while +# also generating the new .c files in builddir/ld leading to trouble. +# I haven't found the right entries to ensure this doesn't happen, so +# simply remove the intermediates +rm -f ld/ldlex.c +rm -f ld/ldgram.c ld/ldgram.h %build %define _lto_cflags %{nil} diff --git a/cross-spu-binutils.spec b/cross-spu-binutils.spec index 36be068..21b3d4a 100644 --- a/cross-spu-binutils.spec +++ b/cross-spu-binutils.spec @@ -224,6 +224,14 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +# in parallel builds, when the flex or bison inputs are patched (possibly +# in the ...-branch.diff) it might happen that the dependency tracking +# of automake is confused and uses the old .c files from srcdir/ld/ while +# also generating the new .c files in builddir/ld leading to trouble. +# I haven't found the right entries to ensure this doesn't happen, so +# simply remove the intermediates +rm -f ld/ldlex.c +rm -f ld/ldgram.c ld/ldgram.h %build %define _lto_cflags %{nil} diff --git a/cross-x86_64-binutils.spec b/cross-x86_64-binutils.spec index 8d034c1..5734106 100644 --- a/cross-x86_64-binutils.spec +++ b/cross-x86_64-binutils.spec @@ -224,6 +224,14 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +# in parallel builds, when the flex or bison inputs are patched (possibly +# in the ...-branch.diff) it might happen that the dependency tracking +# of automake is confused and uses the old .c files from srcdir/ld/ while +# also generating the new .c files in builddir/ld leading to trouble. +# I haven't found the right entries to ensure this doesn't happen, so +# simply remove the intermediates +rm -f ld/ldlex.c +rm -f ld/ldgram.c ld/ldgram.h %build %define _lto_cflags %{nil} diff --git a/cross-xtensa-binutils.spec b/cross-xtensa-binutils.spec index 4452ff7..029d76b 100644 --- a/cross-xtensa-binutils.spec +++ b/cross-xtensa-binutils.spec @@ -224,6 +224,14 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h # # test_vanilla %endif +# in parallel builds, when the flex or bison inputs are patched (possibly +# in the ...-branch.diff) it might happen that the dependency tracking +# of automake is confused and uses the old .c files from srcdir/ld/ while +# also generating the new .c files in builddir/ld leading to trouble. +# I haven't found the right entries to ensure this doesn't happen, so +# simply remove the intermediates +rm -f ld/ldlex.c +rm -f ld/ldgram.c ld/ldgram.h %build %define _lto_cflags %{nil} From 4da0b3516c6211f681cbb0e25db4e0622dd9ed02099cdf0a3078a2cd63eef19c Mon Sep 17 00:00:00 2001 From: Michael Matz Date: Wed, 13 Oct 2021 12:19:55 +0000 Subject: [PATCH 06/12] - Disable libalternatives temporarily for build cycle reasons. OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=372 --- binutils.changes | 1 + binutils.spec | 4 +++- cross-aarch64-binutils.changes | 1 + cross-aarch64-binutils.spec | 4 +++- cross-arm-binutils.changes | 1 + cross-arm-binutils.spec | 4 +++- cross-avr-binutils.changes | 1 + cross-avr-binutils.spec | 4 +++- cross-epiphany-binutils.changes | 1 + cross-epiphany-binutils.spec | 4 +++- cross-hppa-binutils.changes | 1 + cross-hppa-binutils.spec | 4 +++- cross-hppa64-binutils.changes | 1 + cross-hppa64-binutils.spec | 4 +++- cross-i386-binutils.changes | 1 + cross-i386-binutils.spec | 4 +++- cross-ia64-binutils.changes | 1 + cross-ia64-binutils.spec | 4 +++- cross-m68k-binutils.changes | 1 + cross-m68k-binutils.spec | 4 +++- cross-mips-binutils.changes | 1 + cross-mips-binutils.spec | 4 +++- cross-ppc-binutils.changes | 1 + cross-ppc-binutils.spec | 4 +++- cross-ppc64-binutils.changes | 1 + cross-ppc64-binutils.spec | 4 +++- cross-ppc64le-binutils.changes | 1 + cross-ppc64le-binutils.spec | 4 +++- cross-riscv64-binutils.changes | 1 + cross-riscv64-binutils.spec | 4 +++- cross-rx-binutils.changes | 1 + cross-rx-binutils.spec | 4 +++- cross-s390-binutils.changes | 1 + cross-s390-binutils.spec | 4 +++- cross-s390x-binutils.changes | 1 + cross-s390x-binutils.spec | 4 +++- cross-sparc-binutils.changes | 1 + cross-sparc-binutils.spec | 4 +++- cross-sparc64-binutils.changes | 1 + cross-sparc64-binutils.spec | 4 +++- cross-spu-binutils.changes | 1 + cross-spu-binutils.spec | 4 +++- cross-x86_64-binutils.changes | 1 + cross-x86_64-binutils.spec | 4 +++- cross-xtensa-binutils.changes | 1 + cross-xtensa-binutils.spec | 4 +++- 46 files changed, 92 insertions(+), 23 deletions(-) diff --git a/binutils.changes b/binutils.changes index 1327226..bbb89cb 100644 --- a/binutils.changes +++ b/binutils.changes @@ -2,6 +2,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. +- Disable libalternatives temporarily for build cycle reasons. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/binutils.spec b/binutils.spec index 5f7ac23..d1b5c80 100644 --- a/binutils.spec +++ b/binutils.spec @@ -37,7 +37,9 @@ BuildRequires: zlib-devel Version: 2.37 Release: 0 -%if 0%{?suse_version} > 1500 +# disable libalternatives for now until it's changed to not +# introduce cmake/cunit-tests into the bootstrap cycle +%if 0 && 0%{?suse_version} > 1500 %bcond_without libalternatives %else %bcond_with libalternatives diff --git a/cross-aarch64-binutils.changes b/cross-aarch64-binutils.changes index 1327226..bbb89cb 100644 --- a/cross-aarch64-binutils.changes +++ b/cross-aarch64-binutils.changes @@ -2,6 +2,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. +- Disable libalternatives temporarily for build cycle reasons. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-aarch64-binutils.spec b/cross-aarch64-binutils.spec index 5a02801..10ec95d 100644 --- a/cross-aarch64-binutils.spec +++ b/cross-aarch64-binutils.spec @@ -40,7 +40,9 @@ BuildRequires: zlib-devel Version: 2.37 Release: 0 -%if 0%{?suse_version} > 1500 +# disable libalternatives for now until it's changed to not +# introduce cmake/cunit-tests into the bootstrap cycle +%if 0 && 0%{?suse_version} > 1500 %bcond_without libalternatives %else %bcond_with libalternatives diff --git a/cross-arm-binutils.changes b/cross-arm-binutils.changes index 1327226..bbb89cb 100644 --- a/cross-arm-binutils.changes +++ b/cross-arm-binutils.changes @@ -2,6 +2,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. +- Disable libalternatives temporarily for build cycle reasons. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-arm-binutils.spec b/cross-arm-binutils.spec index 04956da..aff68fb 100644 --- a/cross-arm-binutils.spec +++ b/cross-arm-binutils.spec @@ -40,7 +40,9 @@ BuildRequires: zlib-devel Version: 2.37 Release: 0 -%if 0%{?suse_version} > 1500 +# disable libalternatives for now until it's changed to not +# introduce cmake/cunit-tests into the bootstrap cycle +%if 0 && 0%{?suse_version} > 1500 %bcond_without libalternatives %else %bcond_with libalternatives diff --git a/cross-avr-binutils.changes b/cross-avr-binutils.changes index 1327226..bbb89cb 100644 --- a/cross-avr-binutils.changes +++ b/cross-avr-binutils.changes @@ -2,6 +2,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. +- Disable libalternatives temporarily for build cycle reasons. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-avr-binutils.spec b/cross-avr-binutils.spec index 3103ae7..cf6b6f2 100644 --- a/cross-avr-binutils.spec +++ b/cross-avr-binutils.spec @@ -40,7 +40,9 @@ BuildRequires: zlib-devel Version: 2.37 Release: 0 -%if 0%{?suse_version} > 1500 +# disable libalternatives for now until it's changed to not +# introduce cmake/cunit-tests into the bootstrap cycle +%if 0 && 0%{?suse_version} > 1500 %bcond_without libalternatives %else %bcond_with libalternatives diff --git a/cross-epiphany-binutils.changes b/cross-epiphany-binutils.changes index 1327226..bbb89cb 100644 --- a/cross-epiphany-binutils.changes +++ b/cross-epiphany-binutils.changes @@ -2,6 +2,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. +- Disable libalternatives temporarily for build cycle reasons. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-epiphany-binutils.spec b/cross-epiphany-binutils.spec index 70ab959..98cfbd4 100644 --- a/cross-epiphany-binutils.spec +++ b/cross-epiphany-binutils.spec @@ -40,7 +40,9 @@ BuildRequires: zlib-devel Version: 2.37 Release: 0 -%if 0%{?suse_version} > 1500 +# disable libalternatives for now until it's changed to not +# introduce cmake/cunit-tests into the bootstrap cycle +%if 0 && 0%{?suse_version} > 1500 %bcond_without libalternatives %else %bcond_with libalternatives diff --git a/cross-hppa-binutils.changes b/cross-hppa-binutils.changes index 1327226..bbb89cb 100644 --- a/cross-hppa-binutils.changes +++ b/cross-hppa-binutils.changes @@ -2,6 +2,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. +- Disable libalternatives temporarily for build cycle reasons. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-hppa-binutils.spec b/cross-hppa-binutils.spec index fbe4179..5c5683f 100644 --- a/cross-hppa-binutils.spec +++ b/cross-hppa-binutils.spec @@ -40,7 +40,9 @@ BuildRequires: zlib-devel Version: 2.37 Release: 0 -%if 0%{?suse_version} > 1500 +# disable libalternatives for now until it's changed to not +# introduce cmake/cunit-tests into the bootstrap cycle +%if 0 && 0%{?suse_version} > 1500 %bcond_without libalternatives %else %bcond_with libalternatives diff --git a/cross-hppa64-binutils.changes b/cross-hppa64-binutils.changes index 1327226..bbb89cb 100644 --- a/cross-hppa64-binutils.changes +++ b/cross-hppa64-binutils.changes @@ -2,6 +2,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. +- Disable libalternatives temporarily for build cycle reasons. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-hppa64-binutils.spec b/cross-hppa64-binutils.spec index 4276412..65fcfa2 100644 --- a/cross-hppa64-binutils.spec +++ b/cross-hppa64-binutils.spec @@ -40,7 +40,9 @@ BuildRequires: zlib-devel Version: 2.37 Release: 0 -%if 0%{?suse_version} > 1500 +# disable libalternatives for now until it's changed to not +# introduce cmake/cunit-tests into the bootstrap cycle +%if 0 && 0%{?suse_version} > 1500 %bcond_without libalternatives %else %bcond_with libalternatives diff --git a/cross-i386-binutils.changes b/cross-i386-binutils.changes index 1327226..bbb89cb 100644 --- a/cross-i386-binutils.changes +++ b/cross-i386-binutils.changes @@ -2,6 +2,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. +- Disable libalternatives temporarily for build cycle reasons. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-i386-binutils.spec b/cross-i386-binutils.spec index 9d6d6a8..2c20b59 100644 --- a/cross-i386-binutils.spec +++ b/cross-i386-binutils.spec @@ -40,7 +40,9 @@ BuildRequires: zlib-devel Version: 2.37 Release: 0 -%if 0%{?suse_version} > 1500 +# disable libalternatives for now until it's changed to not +# introduce cmake/cunit-tests into the bootstrap cycle +%if 0 && 0%{?suse_version} > 1500 %bcond_without libalternatives %else %bcond_with libalternatives diff --git a/cross-ia64-binutils.changes b/cross-ia64-binutils.changes index 1327226..bbb89cb 100644 --- a/cross-ia64-binutils.changes +++ b/cross-ia64-binutils.changes @@ -2,6 +2,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. +- Disable libalternatives temporarily for build cycle reasons. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-ia64-binutils.spec b/cross-ia64-binutils.spec index 98c06bc..15c4946 100644 --- a/cross-ia64-binutils.spec +++ b/cross-ia64-binutils.spec @@ -40,7 +40,9 @@ BuildRequires: zlib-devel Version: 2.37 Release: 0 -%if 0%{?suse_version} > 1500 +# disable libalternatives for now until it's changed to not +# introduce cmake/cunit-tests into the bootstrap cycle +%if 0 && 0%{?suse_version} > 1500 %bcond_without libalternatives %else %bcond_with libalternatives diff --git a/cross-m68k-binutils.changes b/cross-m68k-binutils.changes index 1327226..bbb89cb 100644 --- a/cross-m68k-binutils.changes +++ b/cross-m68k-binutils.changes @@ -2,6 +2,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. +- Disable libalternatives temporarily for build cycle reasons. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-m68k-binutils.spec b/cross-m68k-binutils.spec index 799190e..486c2ef 100644 --- a/cross-m68k-binutils.spec +++ b/cross-m68k-binutils.spec @@ -40,7 +40,9 @@ BuildRequires: zlib-devel Version: 2.37 Release: 0 -%if 0%{?suse_version} > 1500 +# disable libalternatives for now until it's changed to not +# introduce cmake/cunit-tests into the bootstrap cycle +%if 0 && 0%{?suse_version} > 1500 %bcond_without libalternatives %else %bcond_with libalternatives diff --git a/cross-mips-binutils.changes b/cross-mips-binutils.changes index 1327226..bbb89cb 100644 --- a/cross-mips-binutils.changes +++ b/cross-mips-binutils.changes @@ -2,6 +2,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. +- Disable libalternatives temporarily for build cycle reasons. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-mips-binutils.spec b/cross-mips-binutils.spec index a21d9be..5d667ff 100644 --- a/cross-mips-binutils.spec +++ b/cross-mips-binutils.spec @@ -40,7 +40,9 @@ BuildRequires: zlib-devel Version: 2.37 Release: 0 -%if 0%{?suse_version} > 1500 +# disable libalternatives for now until it's changed to not +# introduce cmake/cunit-tests into the bootstrap cycle +%if 0 && 0%{?suse_version} > 1500 %bcond_without libalternatives %else %bcond_with libalternatives diff --git a/cross-ppc-binutils.changes b/cross-ppc-binutils.changes index 1327226..bbb89cb 100644 --- a/cross-ppc-binutils.changes +++ b/cross-ppc-binutils.changes @@ -2,6 +2,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. +- Disable libalternatives temporarily for build cycle reasons. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-ppc-binutils.spec b/cross-ppc-binutils.spec index 70415ac..ce5da24 100644 --- a/cross-ppc-binutils.spec +++ b/cross-ppc-binutils.spec @@ -40,7 +40,9 @@ BuildRequires: zlib-devel Version: 2.37 Release: 0 -%if 0%{?suse_version} > 1500 +# disable libalternatives for now until it's changed to not +# introduce cmake/cunit-tests into the bootstrap cycle +%if 0 && 0%{?suse_version} > 1500 %bcond_without libalternatives %else %bcond_with libalternatives diff --git a/cross-ppc64-binutils.changes b/cross-ppc64-binutils.changes index 1327226..bbb89cb 100644 --- a/cross-ppc64-binutils.changes +++ b/cross-ppc64-binutils.changes @@ -2,6 +2,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. +- Disable libalternatives temporarily for build cycle reasons. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-ppc64-binutils.spec b/cross-ppc64-binutils.spec index b1ebea0..9836df9 100644 --- a/cross-ppc64-binutils.spec +++ b/cross-ppc64-binutils.spec @@ -40,7 +40,9 @@ BuildRequires: zlib-devel Version: 2.37 Release: 0 -%if 0%{?suse_version} > 1500 +# disable libalternatives for now until it's changed to not +# introduce cmake/cunit-tests into the bootstrap cycle +%if 0 && 0%{?suse_version} > 1500 %bcond_without libalternatives %else %bcond_with libalternatives diff --git a/cross-ppc64le-binutils.changes b/cross-ppc64le-binutils.changes index 1327226..bbb89cb 100644 --- a/cross-ppc64le-binutils.changes +++ b/cross-ppc64le-binutils.changes @@ -2,6 +2,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. +- Disable libalternatives temporarily for build cycle reasons. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-ppc64le-binutils.spec b/cross-ppc64le-binutils.spec index 118c6f1..94b85cf 100644 --- a/cross-ppc64le-binutils.spec +++ b/cross-ppc64le-binutils.spec @@ -40,7 +40,9 @@ BuildRequires: zlib-devel Version: 2.37 Release: 0 -%if 0%{?suse_version} > 1500 +# disable libalternatives for now until it's changed to not +# introduce cmake/cunit-tests into the bootstrap cycle +%if 0 && 0%{?suse_version} > 1500 %bcond_without libalternatives %else %bcond_with libalternatives diff --git a/cross-riscv64-binutils.changes b/cross-riscv64-binutils.changes index 1327226..bbb89cb 100644 --- a/cross-riscv64-binutils.changes +++ b/cross-riscv64-binutils.changes @@ -2,6 +2,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. +- Disable libalternatives temporarily for build cycle reasons. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-riscv64-binutils.spec b/cross-riscv64-binutils.spec index f99672c..08bf15e 100644 --- a/cross-riscv64-binutils.spec +++ b/cross-riscv64-binutils.spec @@ -40,7 +40,9 @@ BuildRequires: zlib-devel Version: 2.37 Release: 0 -%if 0%{?suse_version} > 1500 +# disable libalternatives for now until it's changed to not +# introduce cmake/cunit-tests into the bootstrap cycle +%if 0 && 0%{?suse_version} > 1500 %bcond_without libalternatives %else %bcond_with libalternatives diff --git a/cross-rx-binutils.changes b/cross-rx-binutils.changes index 1327226..bbb89cb 100644 --- a/cross-rx-binutils.changes +++ b/cross-rx-binutils.changes @@ -2,6 +2,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. +- Disable libalternatives temporarily for build cycle reasons. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-rx-binutils.spec b/cross-rx-binutils.spec index 53c8601..517c605 100644 --- a/cross-rx-binutils.spec +++ b/cross-rx-binutils.spec @@ -40,7 +40,9 @@ BuildRequires: zlib-devel Version: 2.37 Release: 0 -%if 0%{?suse_version} > 1500 +# disable libalternatives for now until it's changed to not +# introduce cmake/cunit-tests into the bootstrap cycle +%if 0 && 0%{?suse_version} > 1500 %bcond_without libalternatives %else %bcond_with libalternatives diff --git a/cross-s390-binutils.changes b/cross-s390-binutils.changes index 1327226..bbb89cb 100644 --- a/cross-s390-binutils.changes +++ b/cross-s390-binutils.changes @@ -2,6 +2,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. +- Disable libalternatives temporarily for build cycle reasons. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-s390-binutils.spec b/cross-s390-binutils.spec index daf187b..fcce508 100644 --- a/cross-s390-binutils.spec +++ b/cross-s390-binutils.spec @@ -40,7 +40,9 @@ BuildRequires: zlib-devel Version: 2.37 Release: 0 -%if 0%{?suse_version} > 1500 +# disable libalternatives for now until it's changed to not +# introduce cmake/cunit-tests into the bootstrap cycle +%if 0 && 0%{?suse_version} > 1500 %bcond_without libalternatives %else %bcond_with libalternatives diff --git a/cross-s390x-binutils.changes b/cross-s390x-binutils.changes index 1327226..bbb89cb 100644 --- a/cross-s390x-binutils.changes +++ b/cross-s390x-binutils.changes @@ -2,6 +2,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. +- Disable libalternatives temporarily for build cycle reasons. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-s390x-binutils.spec b/cross-s390x-binutils.spec index ab15386..a93c900 100644 --- a/cross-s390x-binutils.spec +++ b/cross-s390x-binutils.spec @@ -40,7 +40,9 @@ BuildRequires: zlib-devel Version: 2.37 Release: 0 -%if 0%{?suse_version} > 1500 +# disable libalternatives for now until it's changed to not +# introduce cmake/cunit-tests into the bootstrap cycle +%if 0 && 0%{?suse_version} > 1500 %bcond_without libalternatives %else %bcond_with libalternatives diff --git a/cross-sparc-binutils.changes b/cross-sparc-binutils.changes index 1327226..bbb89cb 100644 --- a/cross-sparc-binutils.changes +++ b/cross-sparc-binutils.changes @@ -2,6 +2,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. +- Disable libalternatives temporarily for build cycle reasons. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-sparc-binutils.spec b/cross-sparc-binutils.spec index 6a36c3b..2bc8acd 100644 --- a/cross-sparc-binutils.spec +++ b/cross-sparc-binutils.spec @@ -40,7 +40,9 @@ BuildRequires: zlib-devel Version: 2.37 Release: 0 -%if 0%{?suse_version} > 1500 +# disable libalternatives for now until it's changed to not +# introduce cmake/cunit-tests into the bootstrap cycle +%if 0 && 0%{?suse_version} > 1500 %bcond_without libalternatives %else %bcond_with libalternatives diff --git a/cross-sparc64-binutils.changes b/cross-sparc64-binutils.changes index 1327226..bbb89cb 100644 --- a/cross-sparc64-binutils.changes +++ b/cross-sparc64-binutils.changes @@ -2,6 +2,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. +- Disable libalternatives temporarily for build cycle reasons. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-sparc64-binutils.spec b/cross-sparc64-binutils.spec index d64e901..03558b7 100644 --- a/cross-sparc64-binutils.spec +++ b/cross-sparc64-binutils.spec @@ -40,7 +40,9 @@ BuildRequires: zlib-devel Version: 2.37 Release: 0 -%if 0%{?suse_version} > 1500 +# disable libalternatives for now until it's changed to not +# introduce cmake/cunit-tests into the bootstrap cycle +%if 0 && 0%{?suse_version} > 1500 %bcond_without libalternatives %else %bcond_with libalternatives diff --git a/cross-spu-binutils.changes b/cross-spu-binutils.changes index 1327226..bbb89cb 100644 --- a/cross-spu-binutils.changes +++ b/cross-spu-binutils.changes @@ -2,6 +2,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. +- Disable libalternatives temporarily for build cycle reasons. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-spu-binutils.spec b/cross-spu-binutils.spec index 21b3d4a..8cb2b8d 100644 --- a/cross-spu-binutils.spec +++ b/cross-spu-binutils.spec @@ -40,7 +40,9 @@ BuildRequires: zlib-devel Version: 2.37 Release: 0 -%if 0%{?suse_version} > 1500 +# disable libalternatives for now until it's changed to not +# introduce cmake/cunit-tests into the bootstrap cycle +%if 0 && 0%{?suse_version} > 1500 %bcond_without libalternatives %else %bcond_with libalternatives diff --git a/cross-x86_64-binutils.changes b/cross-x86_64-binutils.changes index 1327226..bbb89cb 100644 --- a/cross-x86_64-binutils.changes +++ b/cross-x86_64-binutils.changes @@ -2,6 +2,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. +- Disable libalternatives temporarily for build cycle reasons. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-x86_64-binutils.spec b/cross-x86_64-binutils.spec index 5734106..3a19d44 100644 --- a/cross-x86_64-binutils.spec +++ b/cross-x86_64-binutils.spec @@ -40,7 +40,9 @@ BuildRequires: zlib-devel Version: 2.37 Release: 0 -%if 0%{?suse_version} > 1500 +# disable libalternatives for now until it's changed to not +# introduce cmake/cunit-tests into the bootstrap cycle +%if 0 && 0%{?suse_version} > 1500 %bcond_without libalternatives %else %bcond_with libalternatives diff --git a/cross-xtensa-binutils.changes b/cross-xtensa-binutils.changes index 1327226..bbb89cb 100644 --- a/cross-xtensa-binutils.changes +++ b/cross-xtensa-binutils.changes @@ -2,6 +2,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. +- Disable libalternatives temporarily for build cycle reasons. - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-xtensa-binutils.spec b/cross-xtensa-binutils.spec index 029d76b..a4e0b26 100644 --- a/cross-xtensa-binutils.spec +++ b/cross-xtensa-binutils.spec @@ -40,7 +40,9 @@ BuildRequires: zlib-devel Version: 2.37 Release: 0 -%if 0%{?suse_version} > 1500 +# disable libalternatives for now until it's changed to not +# introduce cmake/cunit-tests into the bootstrap cycle +%if 0 && 0%{?suse_version} > 1500 %bcond_without libalternatives %else %bcond_with libalternatives From 2af0b964063dac2004b26343267e06dd480a46838013ca9b8a2ff33787be02e2 Mon Sep 17 00:00:00 2001 From: Michael Matz Date: Tue, 19 Oct 2021 15:51:00 +0000 Subject: [PATCH 07/12] - make TARGET-bfd=headers again, we patch bfd-in.h OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=373 --- binutils-bfd_h.patch | 8 +++++--- binutils.changes | 1 + binutils.spec | 6 ++++++ cross-aarch64-binutils.changes | 1 + cross-aarch64-binutils.spec | 6 ++++++ cross-arm-binutils.changes | 1 + cross-arm-binutils.spec | 6 ++++++ cross-avr-binutils.changes | 1 + cross-avr-binutils.spec | 6 ++++++ cross-epiphany-binutils.changes | 1 + cross-epiphany-binutils.spec | 6 ++++++ cross-hppa-binutils.changes | 1 + cross-hppa-binutils.spec | 6 ++++++ cross-hppa64-binutils.changes | 1 + cross-hppa64-binutils.spec | 6 ++++++ cross-i386-binutils.changes | 1 + cross-i386-binutils.spec | 6 ++++++ cross-ia64-binutils.changes | 1 + cross-ia64-binutils.spec | 6 ++++++ cross-m68k-binutils.changes | 1 + cross-m68k-binutils.spec | 6 ++++++ cross-mips-binutils.changes | 1 + cross-mips-binutils.spec | 6 ++++++ cross-ppc-binutils.changes | 1 + cross-ppc-binutils.spec | 6 ++++++ cross-ppc64-binutils.changes | 1 + cross-ppc64-binutils.spec | 6 ++++++ cross-ppc64le-binutils.changes | 1 + cross-ppc64le-binutils.spec | 6 ++++++ cross-riscv64-binutils.changes | 1 + cross-riscv64-binutils.spec | 6 ++++++ cross-rx-binutils.changes | 1 + cross-rx-binutils.spec | 6 ++++++ cross-s390-binutils.changes | 1 + cross-s390-binutils.spec | 6 ++++++ cross-s390x-binutils.changes | 1 + cross-s390x-binutils.spec | 6 ++++++ cross-sparc-binutils.changes | 1 + cross-sparc-binutils.spec | 6 ++++++ cross-sparc64-binutils.changes | 1 + cross-sparc64-binutils.spec | 6 ++++++ cross-spu-binutils.changes | 1 + cross-spu-binutils.spec | 6 ++++++ cross-x86_64-binutils.changes | 1 + cross-x86_64-binutils.spec | 6 ++++++ cross-xtensa-binutils.changes | 1 + cross-xtensa-binutils.spec | 6 ++++++ 47 files changed, 166 insertions(+), 3 deletions(-) diff --git a/binutils-bfd_h.patch b/binutils-bfd_h.patch index de13c26..75982ab 100644 --- a/binutils-bfd_h.patch +++ b/binutils-bfd_h.patch @@ -1,8 +1,10 @@ Remove the #error to avoid issues with legacy not dealing with this ---- bfd/bfd-in.h.orig 2012-11-30 13:44:35.715871571 +0100 -+++ bfd/bfd-in.h 2012-11-30 13:44:43.428871298 +0100 -@@ -25,11 +25,6 @@ +Index: bfd/bfd-in.h +=================================================================== +--- bfd/bfd-in.h.orig ++++ bfd/bfd-in.h +@@ -23,11 +23,6 @@ #ifndef __BFD_H_SEEN__ #define __BFD_H_SEEN__ diff --git a/binutils.changes b/binutils.changes index bbb89cb..a239ca6 100644 --- a/binutils.changes +++ b/binutils.changes @@ -3,6 +3,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - Disable libalternatives temporarily for build cycle reasons. +- make TARGET-bfd=headers again, we patch bfd-in.h - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/binutils.spec b/binutils.spec index d1b5c80..390dbd7 100644 --- a/binutils.spec +++ b/binutils.spec @@ -314,6 +314,12 @@ cd build-dir %endif --enable-obsolete +# we patch headers (bfd-in.h) that are input to other headers +# which are generated only with --enable-maintainer-mode (which we +# don't do) or explicitely by make headers, so do this: +make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# force reconfiguring +rm bfd/Makefile make %{?_smp_mflags} %else diff --git a/cross-aarch64-binutils.changes b/cross-aarch64-binutils.changes index bbb89cb..a239ca6 100644 --- a/cross-aarch64-binutils.changes +++ b/cross-aarch64-binutils.changes @@ -3,6 +3,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - Disable libalternatives temporarily for build cycle reasons. +- make TARGET-bfd=headers again, we patch bfd-in.h - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-aarch64-binutils.spec b/cross-aarch64-binutils.spec index 10ec95d..fc91b77 100644 --- a/cross-aarch64-binutils.spec +++ b/cross-aarch64-binutils.spec @@ -317,6 +317,12 @@ cd build-dir %endif --enable-obsolete +# we patch headers (bfd-in.h) that are input to other headers +# which are generated only with --enable-maintainer-mode (which we +# don't do) or explicitely by make headers, so do this: +make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# force reconfiguring +rm bfd/Makefile make %{?_smp_mflags} %else diff --git a/cross-arm-binutils.changes b/cross-arm-binutils.changes index bbb89cb..a239ca6 100644 --- a/cross-arm-binutils.changes +++ b/cross-arm-binutils.changes @@ -3,6 +3,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - Disable libalternatives temporarily for build cycle reasons. +- make TARGET-bfd=headers again, we patch bfd-in.h - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-arm-binutils.spec b/cross-arm-binutils.spec index aff68fb..35f7b50 100644 --- a/cross-arm-binutils.spec +++ b/cross-arm-binutils.spec @@ -317,6 +317,12 @@ cd build-dir %endif --enable-obsolete +# we patch headers (bfd-in.h) that are input to other headers +# which are generated only with --enable-maintainer-mode (which we +# don't do) or explicitely by make headers, so do this: +make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# force reconfiguring +rm bfd/Makefile make %{?_smp_mflags} %else diff --git a/cross-avr-binutils.changes b/cross-avr-binutils.changes index bbb89cb..a239ca6 100644 --- a/cross-avr-binutils.changes +++ b/cross-avr-binutils.changes @@ -3,6 +3,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - Disable libalternatives temporarily for build cycle reasons. +- make TARGET-bfd=headers again, we patch bfd-in.h - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-avr-binutils.spec b/cross-avr-binutils.spec index cf6b6f2..cb683e2 100644 --- a/cross-avr-binutils.spec +++ b/cross-avr-binutils.spec @@ -317,6 +317,12 @@ cd build-dir %endif --enable-obsolete +# we patch headers (bfd-in.h) that are input to other headers +# which are generated only with --enable-maintainer-mode (which we +# don't do) or explicitely by make headers, so do this: +make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# force reconfiguring +rm bfd/Makefile make %{?_smp_mflags} %else diff --git a/cross-epiphany-binutils.changes b/cross-epiphany-binutils.changes index bbb89cb..a239ca6 100644 --- a/cross-epiphany-binutils.changes +++ b/cross-epiphany-binutils.changes @@ -3,6 +3,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - Disable libalternatives temporarily for build cycle reasons. +- make TARGET-bfd=headers again, we patch bfd-in.h - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-epiphany-binutils.spec b/cross-epiphany-binutils.spec index 98cfbd4..1dbb76d 100644 --- a/cross-epiphany-binutils.spec +++ b/cross-epiphany-binutils.spec @@ -317,6 +317,12 @@ cd build-dir %endif --enable-obsolete +# we patch headers (bfd-in.h) that are input to other headers +# which are generated only with --enable-maintainer-mode (which we +# don't do) or explicitely by make headers, so do this: +make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# force reconfiguring +rm bfd/Makefile make %{?_smp_mflags} %else diff --git a/cross-hppa-binutils.changes b/cross-hppa-binutils.changes index bbb89cb..a239ca6 100644 --- a/cross-hppa-binutils.changes +++ b/cross-hppa-binutils.changes @@ -3,6 +3,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - Disable libalternatives temporarily for build cycle reasons. +- make TARGET-bfd=headers again, we patch bfd-in.h - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-hppa-binutils.spec b/cross-hppa-binutils.spec index 5c5683f..4c3aa27 100644 --- a/cross-hppa-binutils.spec +++ b/cross-hppa-binutils.spec @@ -317,6 +317,12 @@ cd build-dir %endif --enable-obsolete +# we patch headers (bfd-in.h) that are input to other headers +# which are generated only with --enable-maintainer-mode (which we +# don't do) or explicitely by make headers, so do this: +make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# force reconfiguring +rm bfd/Makefile make %{?_smp_mflags} %else diff --git a/cross-hppa64-binutils.changes b/cross-hppa64-binutils.changes index bbb89cb..a239ca6 100644 --- a/cross-hppa64-binutils.changes +++ b/cross-hppa64-binutils.changes @@ -3,6 +3,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - Disable libalternatives temporarily for build cycle reasons. +- make TARGET-bfd=headers again, we patch bfd-in.h - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-hppa64-binutils.spec b/cross-hppa64-binutils.spec index 65fcfa2..a7f6f18 100644 --- a/cross-hppa64-binutils.spec +++ b/cross-hppa64-binutils.spec @@ -317,6 +317,12 @@ cd build-dir %endif --enable-obsolete +# we patch headers (bfd-in.h) that are input to other headers +# which are generated only with --enable-maintainer-mode (which we +# don't do) or explicitely by make headers, so do this: +make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# force reconfiguring +rm bfd/Makefile make %{?_smp_mflags} %else diff --git a/cross-i386-binutils.changes b/cross-i386-binutils.changes index bbb89cb..a239ca6 100644 --- a/cross-i386-binutils.changes +++ b/cross-i386-binutils.changes @@ -3,6 +3,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - Disable libalternatives temporarily for build cycle reasons. +- make TARGET-bfd=headers again, we patch bfd-in.h - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-i386-binutils.spec b/cross-i386-binutils.spec index 2c20b59..e3f714e 100644 --- a/cross-i386-binutils.spec +++ b/cross-i386-binutils.spec @@ -317,6 +317,12 @@ cd build-dir %endif --enable-obsolete +# we patch headers (bfd-in.h) that are input to other headers +# which are generated only with --enable-maintainer-mode (which we +# don't do) or explicitely by make headers, so do this: +make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# force reconfiguring +rm bfd/Makefile make %{?_smp_mflags} %else diff --git a/cross-ia64-binutils.changes b/cross-ia64-binutils.changes index bbb89cb..a239ca6 100644 --- a/cross-ia64-binutils.changes +++ b/cross-ia64-binutils.changes @@ -3,6 +3,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - Disable libalternatives temporarily for build cycle reasons. +- make TARGET-bfd=headers again, we patch bfd-in.h - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-ia64-binutils.spec b/cross-ia64-binutils.spec index 15c4946..14f967d 100644 --- a/cross-ia64-binutils.spec +++ b/cross-ia64-binutils.spec @@ -317,6 +317,12 @@ cd build-dir %endif --enable-obsolete +# we patch headers (bfd-in.h) that are input to other headers +# which are generated only with --enable-maintainer-mode (which we +# don't do) or explicitely by make headers, so do this: +make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# force reconfiguring +rm bfd/Makefile make %{?_smp_mflags} %else diff --git a/cross-m68k-binutils.changes b/cross-m68k-binutils.changes index bbb89cb..a239ca6 100644 --- a/cross-m68k-binutils.changes +++ b/cross-m68k-binutils.changes @@ -3,6 +3,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - Disable libalternatives temporarily for build cycle reasons. +- make TARGET-bfd=headers again, we patch bfd-in.h - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-m68k-binutils.spec b/cross-m68k-binutils.spec index 486c2ef..880d5c8 100644 --- a/cross-m68k-binutils.spec +++ b/cross-m68k-binutils.spec @@ -317,6 +317,12 @@ cd build-dir %endif --enable-obsolete +# we patch headers (bfd-in.h) that are input to other headers +# which are generated only with --enable-maintainer-mode (which we +# don't do) or explicitely by make headers, so do this: +make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# force reconfiguring +rm bfd/Makefile make %{?_smp_mflags} %else diff --git a/cross-mips-binutils.changes b/cross-mips-binutils.changes index bbb89cb..a239ca6 100644 --- a/cross-mips-binutils.changes +++ b/cross-mips-binutils.changes @@ -3,6 +3,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - Disable libalternatives temporarily for build cycle reasons. +- make TARGET-bfd=headers again, we patch bfd-in.h - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-mips-binutils.spec b/cross-mips-binutils.spec index 5d667ff..2f90c3f 100644 --- a/cross-mips-binutils.spec +++ b/cross-mips-binutils.spec @@ -317,6 +317,12 @@ cd build-dir %endif --enable-obsolete +# we patch headers (bfd-in.h) that are input to other headers +# which are generated only with --enable-maintainer-mode (which we +# don't do) or explicitely by make headers, so do this: +make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# force reconfiguring +rm bfd/Makefile make %{?_smp_mflags} %else diff --git a/cross-ppc-binutils.changes b/cross-ppc-binutils.changes index bbb89cb..a239ca6 100644 --- a/cross-ppc-binutils.changes +++ b/cross-ppc-binutils.changes @@ -3,6 +3,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - Disable libalternatives temporarily for build cycle reasons. +- make TARGET-bfd=headers again, we patch bfd-in.h - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-ppc-binutils.spec b/cross-ppc-binutils.spec index ce5da24..9a47eae 100644 --- a/cross-ppc-binutils.spec +++ b/cross-ppc-binutils.spec @@ -317,6 +317,12 @@ cd build-dir %endif --enable-obsolete +# we patch headers (bfd-in.h) that are input to other headers +# which are generated only with --enable-maintainer-mode (which we +# don't do) or explicitely by make headers, so do this: +make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# force reconfiguring +rm bfd/Makefile make %{?_smp_mflags} %else diff --git a/cross-ppc64-binutils.changes b/cross-ppc64-binutils.changes index bbb89cb..a239ca6 100644 --- a/cross-ppc64-binutils.changes +++ b/cross-ppc64-binutils.changes @@ -3,6 +3,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - Disable libalternatives temporarily for build cycle reasons. +- make TARGET-bfd=headers again, we patch bfd-in.h - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-ppc64-binutils.spec b/cross-ppc64-binutils.spec index 9836df9..268c268 100644 --- a/cross-ppc64-binutils.spec +++ b/cross-ppc64-binutils.spec @@ -317,6 +317,12 @@ cd build-dir %endif --enable-obsolete +# we patch headers (bfd-in.h) that are input to other headers +# which are generated only with --enable-maintainer-mode (which we +# don't do) or explicitely by make headers, so do this: +make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# force reconfiguring +rm bfd/Makefile make %{?_smp_mflags} %else diff --git a/cross-ppc64le-binutils.changes b/cross-ppc64le-binutils.changes index bbb89cb..a239ca6 100644 --- a/cross-ppc64le-binutils.changes +++ b/cross-ppc64le-binutils.changes @@ -3,6 +3,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - Disable libalternatives temporarily for build cycle reasons. +- make TARGET-bfd=headers again, we patch bfd-in.h - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-ppc64le-binutils.spec b/cross-ppc64le-binutils.spec index 94b85cf..48880cf 100644 --- a/cross-ppc64le-binutils.spec +++ b/cross-ppc64le-binutils.spec @@ -317,6 +317,12 @@ cd build-dir %endif --enable-obsolete +# we patch headers (bfd-in.h) that are input to other headers +# which are generated only with --enable-maintainer-mode (which we +# don't do) or explicitely by make headers, so do this: +make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# force reconfiguring +rm bfd/Makefile make %{?_smp_mflags} %else diff --git a/cross-riscv64-binutils.changes b/cross-riscv64-binutils.changes index bbb89cb..a239ca6 100644 --- a/cross-riscv64-binutils.changes +++ b/cross-riscv64-binutils.changes @@ -3,6 +3,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - Disable libalternatives temporarily for build cycle reasons. +- make TARGET-bfd=headers again, we patch bfd-in.h - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-riscv64-binutils.spec b/cross-riscv64-binutils.spec index 08bf15e..2bdfa50 100644 --- a/cross-riscv64-binutils.spec +++ b/cross-riscv64-binutils.spec @@ -317,6 +317,12 @@ cd build-dir %endif --enable-obsolete +# we patch headers (bfd-in.h) that are input to other headers +# which are generated only with --enable-maintainer-mode (which we +# don't do) or explicitely by make headers, so do this: +make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# force reconfiguring +rm bfd/Makefile make %{?_smp_mflags} %else diff --git a/cross-rx-binutils.changes b/cross-rx-binutils.changes index bbb89cb..a239ca6 100644 --- a/cross-rx-binutils.changes +++ b/cross-rx-binutils.changes @@ -3,6 +3,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - Disable libalternatives temporarily for build cycle reasons. +- make TARGET-bfd=headers again, we patch bfd-in.h - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-rx-binutils.spec b/cross-rx-binutils.spec index 517c605..9970131 100644 --- a/cross-rx-binutils.spec +++ b/cross-rx-binutils.spec @@ -317,6 +317,12 @@ cd build-dir %endif --enable-obsolete +# we patch headers (bfd-in.h) that are input to other headers +# which are generated only with --enable-maintainer-mode (which we +# don't do) or explicitely by make headers, so do this: +make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# force reconfiguring +rm bfd/Makefile make %{?_smp_mflags} %else diff --git a/cross-s390-binutils.changes b/cross-s390-binutils.changes index bbb89cb..a239ca6 100644 --- a/cross-s390-binutils.changes +++ b/cross-s390-binutils.changes @@ -3,6 +3,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - Disable libalternatives temporarily for build cycle reasons. +- make TARGET-bfd=headers again, we patch bfd-in.h - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-s390-binutils.spec b/cross-s390-binutils.spec index fcce508..8ca225b 100644 --- a/cross-s390-binutils.spec +++ b/cross-s390-binutils.spec @@ -317,6 +317,12 @@ cd build-dir %endif --enable-obsolete +# we patch headers (bfd-in.h) that are input to other headers +# which are generated only with --enable-maintainer-mode (which we +# don't do) or explicitely by make headers, so do this: +make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# force reconfiguring +rm bfd/Makefile make %{?_smp_mflags} %else diff --git a/cross-s390x-binutils.changes b/cross-s390x-binutils.changes index bbb89cb..a239ca6 100644 --- a/cross-s390x-binutils.changes +++ b/cross-s390x-binutils.changes @@ -3,6 +3,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - Disable libalternatives temporarily for build cycle reasons. +- make TARGET-bfd=headers again, we patch bfd-in.h - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-s390x-binutils.spec b/cross-s390x-binutils.spec index a93c900..08ac550 100644 --- a/cross-s390x-binutils.spec +++ b/cross-s390x-binutils.spec @@ -317,6 +317,12 @@ cd build-dir %endif --enable-obsolete +# we patch headers (bfd-in.h) that are input to other headers +# which are generated only with --enable-maintainer-mode (which we +# don't do) or explicitely by make headers, so do this: +make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# force reconfiguring +rm bfd/Makefile make %{?_smp_mflags} %else diff --git a/cross-sparc-binutils.changes b/cross-sparc-binutils.changes index bbb89cb..a239ca6 100644 --- a/cross-sparc-binutils.changes +++ b/cross-sparc-binutils.changes @@ -3,6 +3,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - Disable libalternatives temporarily for build cycle reasons. +- make TARGET-bfd=headers again, we patch bfd-in.h - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-sparc-binutils.spec b/cross-sparc-binutils.spec index 2bc8acd..c2c8bc5 100644 --- a/cross-sparc-binutils.spec +++ b/cross-sparc-binutils.spec @@ -317,6 +317,12 @@ cd build-dir %endif --enable-obsolete +# we patch headers (bfd-in.h) that are input to other headers +# which are generated only with --enable-maintainer-mode (which we +# don't do) or explicitely by make headers, so do this: +make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# force reconfiguring +rm bfd/Makefile make %{?_smp_mflags} %else diff --git a/cross-sparc64-binutils.changes b/cross-sparc64-binutils.changes index bbb89cb..a239ca6 100644 --- a/cross-sparc64-binutils.changes +++ b/cross-sparc64-binutils.changes @@ -3,6 +3,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - Disable libalternatives temporarily for build cycle reasons. +- make TARGET-bfd=headers again, we patch bfd-in.h - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-sparc64-binutils.spec b/cross-sparc64-binutils.spec index 03558b7..c2dd853 100644 --- a/cross-sparc64-binutils.spec +++ b/cross-sparc64-binutils.spec @@ -317,6 +317,12 @@ cd build-dir %endif --enable-obsolete +# we patch headers (bfd-in.h) that are input to other headers +# which are generated only with --enable-maintainer-mode (which we +# don't do) or explicitely by make headers, so do this: +make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# force reconfiguring +rm bfd/Makefile make %{?_smp_mflags} %else diff --git a/cross-spu-binutils.changes b/cross-spu-binutils.changes index bbb89cb..a239ca6 100644 --- a/cross-spu-binutils.changes +++ b/cross-spu-binutils.changes @@ -3,6 +3,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - Disable libalternatives temporarily for build cycle reasons. +- make TARGET-bfd=headers again, we patch bfd-in.h - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-spu-binutils.spec b/cross-spu-binutils.spec index 8cb2b8d..8997622 100644 --- a/cross-spu-binutils.spec +++ b/cross-spu-binutils.spec @@ -317,6 +317,12 @@ cd build-dir %endif --enable-obsolete +# we patch headers (bfd-in.h) that are input to other headers +# which are generated only with --enable-maintainer-mode (which we +# don't do) or explicitely by make headers, so do this: +make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# force reconfiguring +rm bfd/Makefile make %{?_smp_mflags} %else diff --git a/cross-x86_64-binutils.changes b/cross-x86_64-binutils.changes index bbb89cb..a239ca6 100644 --- a/cross-x86_64-binutils.changes +++ b/cross-x86_64-binutils.changes @@ -3,6 +3,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - Disable libalternatives temporarily for build cycle reasons. +- make TARGET-bfd=headers again, we patch bfd-in.h - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-x86_64-binutils.spec b/cross-x86_64-binutils.spec index 3a19d44..9d568cf 100644 --- a/cross-x86_64-binutils.spec +++ b/cross-x86_64-binutils.spec @@ -317,6 +317,12 @@ cd build-dir %endif --enable-obsolete +# we patch headers (bfd-in.h) that are input to other headers +# which are generated only with --enable-maintainer-mode (which we +# don't do) or explicitely by make headers, so do this: +make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# force reconfiguring +rm bfd/Makefile make %{?_smp_mflags} %else diff --git a/cross-xtensa-binutils.changes b/cross-xtensa-binutils.changes index bbb89cb..a239ca6 100644 --- a/cross-xtensa-binutils.changes +++ b/cross-xtensa-binutils.changes @@ -3,6 +3,7 @@ Fri Oct 8 14:11:44 UTC 2021 - Michael Matz - Configure with --disable-x86-used-note on old code streams. - Disable libalternatives temporarily for build cycle reasons. +- make TARGET-bfd=headers again, we patch bfd-in.h - This state submitted to SLE12 and SLE15 code streams for annual toolchain update. [jsc#PM-2767, jsc#SLE-21561, jsc#SLE-19618] - Bump binutils-2.37-branch.diff to 66d5c7003, to include fixes for diff --git a/cross-xtensa-binutils.spec b/cross-xtensa-binutils.spec index a4e0b26..1f11486 100644 --- a/cross-xtensa-binutils.spec +++ b/cross-xtensa-binutils.spec @@ -317,6 +317,12 @@ cd build-dir %endif --enable-obsolete +# we patch headers (bfd-in.h) that are input to other headers +# which are generated only with --enable-maintainer-mode (which we +# don't do) or explicitely by make headers, so do this: +make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# force reconfiguring +rm bfd/Makefile make %{?_smp_mflags} %else From a362b336fe4008f8dbf6e02c91402043887fa35d3e23960d910ae09fcb8a2b3d Mon Sep 17 00:00:00 2001 From: Michael Matz Date: Tue, 19 Oct 2021 16:31:03 +0000 Subject: [PATCH 08/12] Try to get separate make headers working with PGO+LTO build OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=374 --- binutils.spec | 5 +++++ cross-aarch64-binutils.spec | 5 +++++ cross-arm-binutils.spec | 5 +++++ cross-avr-binutils.spec | 5 +++++ cross-epiphany-binutils.spec | 5 +++++ cross-hppa-binutils.spec | 5 +++++ cross-hppa64-binutils.spec | 5 +++++ cross-i386-binutils.spec | 5 +++++ cross-ia64-binutils.spec | 5 +++++ cross-m68k-binutils.spec | 5 +++++ cross-mips-binutils.spec | 5 +++++ cross-ppc-binutils.spec | 5 +++++ cross-ppc64-binutils.spec | 5 +++++ cross-ppc64le-binutils.spec | 5 +++++ cross-riscv64-binutils.spec | 5 +++++ cross-rx-binutils.spec | 5 +++++ cross-s390-binutils.spec | 5 +++++ cross-s390x-binutils.spec | 5 +++++ cross-sparc-binutils.spec | 5 +++++ cross-sparc64-binutils.spec | 5 +++++ cross-spu-binutils.spec | 5 +++++ cross-x86_64-binutils.spec | 5 +++++ cross-xtensa-binutils.spec | 5 +++++ 23 files changed, 115 insertions(+) diff --git a/binutils.spec b/binutils.spec index 390dbd7..3dd48b1 100644 --- a/binutils.spec +++ b/binutils.spec @@ -318,6 +318,10 @@ cd build-dir # which are generated only with --enable-maintainer-mode (which we # don't do) or explicitely by make headers, so do this: make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# the above interacts with --enable-pgo-build=lto because all-bfd doesn't +# have the PGO handling, hence it's config.cache files are wrong +# remove all of those for reconfigure +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} @@ -387,6 +391,7 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} diff --git a/cross-aarch64-binutils.spec b/cross-aarch64-binutils.spec index fc91b77..40b12a0 100644 --- a/cross-aarch64-binutils.spec +++ b/cross-aarch64-binutils.spec @@ -321,6 +321,10 @@ cd build-dir # which are generated only with --enable-maintainer-mode (which we # don't do) or explicitely by make headers, so do this: make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# the above interacts with --enable-pgo-build=lto because all-bfd doesn't +# have the PGO handling, hence it's config.cache files are wrong +# remove all of those for reconfigure +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} @@ -390,6 +394,7 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} diff --git a/cross-arm-binutils.spec b/cross-arm-binutils.spec index 35f7b50..f8e9cc1 100644 --- a/cross-arm-binutils.spec +++ b/cross-arm-binutils.spec @@ -321,6 +321,10 @@ cd build-dir # which are generated only with --enable-maintainer-mode (which we # don't do) or explicitely by make headers, so do this: make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# the above interacts with --enable-pgo-build=lto because all-bfd doesn't +# have the PGO handling, hence it's config.cache files are wrong +# remove all of those for reconfigure +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} @@ -390,6 +394,7 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} diff --git a/cross-avr-binutils.spec b/cross-avr-binutils.spec index cb683e2..72e97d4 100644 --- a/cross-avr-binutils.spec +++ b/cross-avr-binutils.spec @@ -321,6 +321,10 @@ cd build-dir # which are generated only with --enable-maintainer-mode (which we # don't do) or explicitely by make headers, so do this: make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# the above interacts with --enable-pgo-build=lto because all-bfd doesn't +# have the PGO handling, hence it's config.cache files are wrong +# remove all of those for reconfigure +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} @@ -390,6 +394,7 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} diff --git a/cross-epiphany-binutils.spec b/cross-epiphany-binutils.spec index 1dbb76d..860b95b 100644 --- a/cross-epiphany-binutils.spec +++ b/cross-epiphany-binutils.spec @@ -321,6 +321,10 @@ cd build-dir # which are generated only with --enable-maintainer-mode (which we # don't do) or explicitely by make headers, so do this: make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# the above interacts with --enable-pgo-build=lto because all-bfd doesn't +# have the PGO handling, hence it's config.cache files are wrong +# remove all of those for reconfigure +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} @@ -390,6 +394,7 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} diff --git a/cross-hppa-binutils.spec b/cross-hppa-binutils.spec index 4c3aa27..b735aea 100644 --- a/cross-hppa-binutils.spec +++ b/cross-hppa-binutils.spec @@ -321,6 +321,10 @@ cd build-dir # which are generated only with --enable-maintainer-mode (which we # don't do) or explicitely by make headers, so do this: make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# the above interacts with --enable-pgo-build=lto because all-bfd doesn't +# have the PGO handling, hence it's config.cache files are wrong +# remove all of those for reconfigure +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} @@ -390,6 +394,7 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} diff --git a/cross-hppa64-binutils.spec b/cross-hppa64-binutils.spec index a7f6f18..10e9448 100644 --- a/cross-hppa64-binutils.spec +++ b/cross-hppa64-binutils.spec @@ -321,6 +321,10 @@ cd build-dir # which are generated only with --enable-maintainer-mode (which we # don't do) or explicitely by make headers, so do this: make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# the above interacts with --enable-pgo-build=lto because all-bfd doesn't +# have the PGO handling, hence it's config.cache files are wrong +# remove all of those for reconfigure +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} @@ -390,6 +394,7 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} diff --git a/cross-i386-binutils.spec b/cross-i386-binutils.spec index e3f714e..15d2def 100644 --- a/cross-i386-binutils.spec +++ b/cross-i386-binutils.spec @@ -321,6 +321,10 @@ cd build-dir # which are generated only with --enable-maintainer-mode (which we # don't do) or explicitely by make headers, so do this: make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# the above interacts with --enable-pgo-build=lto because all-bfd doesn't +# have the PGO handling, hence it's config.cache files are wrong +# remove all of those for reconfigure +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} @@ -390,6 +394,7 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} diff --git a/cross-ia64-binutils.spec b/cross-ia64-binutils.spec index 14f967d..bcfbfa2 100644 --- a/cross-ia64-binutils.spec +++ b/cross-ia64-binutils.spec @@ -321,6 +321,10 @@ cd build-dir # which are generated only with --enable-maintainer-mode (which we # don't do) or explicitely by make headers, so do this: make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# the above interacts with --enable-pgo-build=lto because all-bfd doesn't +# have the PGO handling, hence it's config.cache files are wrong +# remove all of those for reconfigure +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} @@ -390,6 +394,7 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} diff --git a/cross-m68k-binutils.spec b/cross-m68k-binutils.spec index 880d5c8..0709a16 100644 --- a/cross-m68k-binutils.spec +++ b/cross-m68k-binutils.spec @@ -321,6 +321,10 @@ cd build-dir # which are generated only with --enable-maintainer-mode (which we # don't do) or explicitely by make headers, so do this: make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# the above interacts with --enable-pgo-build=lto because all-bfd doesn't +# have the PGO handling, hence it's config.cache files are wrong +# remove all of those for reconfigure +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} @@ -390,6 +394,7 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} diff --git a/cross-mips-binutils.spec b/cross-mips-binutils.spec index 2f90c3f..5c0b51f 100644 --- a/cross-mips-binutils.spec +++ b/cross-mips-binutils.spec @@ -321,6 +321,10 @@ cd build-dir # which are generated only with --enable-maintainer-mode (which we # don't do) or explicitely by make headers, so do this: make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# the above interacts with --enable-pgo-build=lto because all-bfd doesn't +# have the PGO handling, hence it's config.cache files are wrong +# remove all of those for reconfigure +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} @@ -390,6 +394,7 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} diff --git a/cross-ppc-binutils.spec b/cross-ppc-binutils.spec index 9a47eae..ce4a579 100644 --- a/cross-ppc-binutils.spec +++ b/cross-ppc-binutils.spec @@ -321,6 +321,10 @@ cd build-dir # which are generated only with --enable-maintainer-mode (which we # don't do) or explicitely by make headers, so do this: make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# the above interacts with --enable-pgo-build=lto because all-bfd doesn't +# have the PGO handling, hence it's config.cache files are wrong +# remove all of those for reconfigure +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} @@ -390,6 +394,7 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} diff --git a/cross-ppc64-binutils.spec b/cross-ppc64-binutils.spec index 268c268..524752f 100644 --- a/cross-ppc64-binutils.spec +++ b/cross-ppc64-binutils.spec @@ -321,6 +321,10 @@ cd build-dir # which are generated only with --enable-maintainer-mode (which we # don't do) or explicitely by make headers, so do this: make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# the above interacts with --enable-pgo-build=lto because all-bfd doesn't +# have the PGO handling, hence it's config.cache files are wrong +# remove all of those for reconfigure +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} @@ -390,6 +394,7 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} diff --git a/cross-ppc64le-binutils.spec b/cross-ppc64le-binutils.spec index 48880cf..c5b1888 100644 --- a/cross-ppc64le-binutils.spec +++ b/cross-ppc64le-binutils.spec @@ -321,6 +321,10 @@ cd build-dir # which are generated only with --enable-maintainer-mode (which we # don't do) or explicitely by make headers, so do this: make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# the above interacts with --enable-pgo-build=lto because all-bfd doesn't +# have the PGO handling, hence it's config.cache files are wrong +# remove all of those for reconfigure +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} @@ -390,6 +394,7 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} diff --git a/cross-riscv64-binutils.spec b/cross-riscv64-binutils.spec index 2bdfa50..1f6c99b 100644 --- a/cross-riscv64-binutils.spec +++ b/cross-riscv64-binutils.spec @@ -321,6 +321,10 @@ cd build-dir # which are generated only with --enable-maintainer-mode (which we # don't do) or explicitely by make headers, so do this: make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# the above interacts with --enable-pgo-build=lto because all-bfd doesn't +# have the PGO handling, hence it's config.cache files are wrong +# remove all of those for reconfigure +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} @@ -390,6 +394,7 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} diff --git a/cross-rx-binutils.spec b/cross-rx-binutils.spec index 9970131..e026096 100644 --- a/cross-rx-binutils.spec +++ b/cross-rx-binutils.spec @@ -321,6 +321,10 @@ cd build-dir # which are generated only with --enable-maintainer-mode (which we # don't do) or explicitely by make headers, so do this: make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# the above interacts with --enable-pgo-build=lto because all-bfd doesn't +# have the PGO handling, hence it's config.cache files are wrong +# remove all of those for reconfigure +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} @@ -390,6 +394,7 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} diff --git a/cross-s390-binutils.spec b/cross-s390-binutils.spec index 8ca225b..51d9110 100644 --- a/cross-s390-binutils.spec +++ b/cross-s390-binutils.spec @@ -321,6 +321,10 @@ cd build-dir # which are generated only with --enable-maintainer-mode (which we # don't do) or explicitely by make headers, so do this: make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# the above interacts with --enable-pgo-build=lto because all-bfd doesn't +# have the PGO handling, hence it's config.cache files are wrong +# remove all of those for reconfigure +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} @@ -390,6 +394,7 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} diff --git a/cross-s390x-binutils.spec b/cross-s390x-binutils.spec index 08ac550..52fabaa 100644 --- a/cross-s390x-binutils.spec +++ b/cross-s390x-binutils.spec @@ -321,6 +321,10 @@ cd build-dir # which are generated only with --enable-maintainer-mode (which we # don't do) or explicitely by make headers, so do this: make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# the above interacts with --enable-pgo-build=lto because all-bfd doesn't +# have the PGO handling, hence it's config.cache files are wrong +# remove all of those for reconfigure +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} @@ -390,6 +394,7 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} diff --git a/cross-sparc-binutils.spec b/cross-sparc-binutils.spec index c2c8bc5..ad489ac 100644 --- a/cross-sparc-binutils.spec +++ b/cross-sparc-binutils.spec @@ -321,6 +321,10 @@ cd build-dir # which are generated only with --enable-maintainer-mode (which we # don't do) or explicitely by make headers, so do this: make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# the above interacts with --enable-pgo-build=lto because all-bfd doesn't +# have the PGO handling, hence it's config.cache files are wrong +# remove all of those for reconfigure +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} @@ -390,6 +394,7 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} diff --git a/cross-sparc64-binutils.spec b/cross-sparc64-binutils.spec index c2dd853..82b1542 100644 --- a/cross-sparc64-binutils.spec +++ b/cross-sparc64-binutils.spec @@ -321,6 +321,10 @@ cd build-dir # which are generated only with --enable-maintainer-mode (which we # don't do) or explicitely by make headers, so do this: make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# the above interacts with --enable-pgo-build=lto because all-bfd doesn't +# have the PGO handling, hence it's config.cache files are wrong +# remove all of those for reconfigure +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} @@ -390,6 +394,7 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} diff --git a/cross-spu-binutils.spec b/cross-spu-binutils.spec index 8997622..5c90ee2 100644 --- a/cross-spu-binutils.spec +++ b/cross-spu-binutils.spec @@ -321,6 +321,10 @@ cd build-dir # which are generated only with --enable-maintainer-mode (which we # don't do) or explicitely by make headers, so do this: make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# the above interacts with --enable-pgo-build=lto because all-bfd doesn't +# have the PGO handling, hence it's config.cache files are wrong +# remove all of those for reconfigure +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} @@ -390,6 +394,7 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} diff --git a/cross-x86_64-binutils.spec b/cross-x86_64-binutils.spec index 9d568cf..b95c8bd 100644 --- a/cross-x86_64-binutils.spec +++ b/cross-x86_64-binutils.spec @@ -321,6 +321,10 @@ cd build-dir # which are generated only with --enable-maintainer-mode (which we # don't do) or explicitely by make headers, so do this: make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# the above interacts with --enable-pgo-build=lto because all-bfd doesn't +# have the PGO handling, hence it's config.cache files are wrong +# remove all of those for reconfigure +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} @@ -390,6 +394,7 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} diff --git a/cross-xtensa-binutils.spec b/cross-xtensa-binutils.spec index 1f11486..124bb87 100644 --- a/cross-xtensa-binutils.spec +++ b/cross-xtensa-binutils.spec @@ -321,6 +321,10 @@ cd build-dir # which are generated only with --enable-maintainer-mode (which we # don't do) or explicitely by make headers, so do this: make %{?_smp_mflags} all-bfd TARGET-bfd=headers +# the above interacts with --enable-pgo-build=lto because all-bfd doesn't +# have the PGO handling, hence it's config.cache files are wrong +# remove all of those for reconfigure +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} @@ -390,6 +394,7 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux" %endif ${EXTRA_TARGETS:+--enable-targets="${EXTRA_TARGETS#,}"} make %{?_smp_mflags} all-bfd TARGET-bfd=headers +rm */config.cache # force reconfiguring rm bfd/Makefile make %{?_smp_mflags} From d2d702311e45311a1648c7cb3c49792647da67158496e80b213232512bd167b2 Mon Sep 17 00:00:00 2001 From: Richard Biener Date: Tue, 2 Nov 2021 07:01:50 +0000 Subject: [PATCH 09/12] Accepting request 928530 from home:marxin:branches:devel:gcc - Update binutils-skip-rpaths.patch with contained a memory corruption (boo#1191473). OBS-URL: https://build.opensuse.org/request/show/928530 OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=375 --- binutils-skip-rpaths.patch | 6 ++++-- binutils.changes | 6 ++++++ cross-aarch64-binutils.changes | 6 ++++++ cross-arm-binutils.changes | 6 ++++++ cross-avr-binutils.changes | 6 ++++++ cross-epiphany-binutils.changes | 6 ++++++ cross-hppa-binutils.changes | 6 ++++++ cross-hppa64-binutils.changes | 6 ++++++ cross-i386-binutils.changes | 6 ++++++ cross-ia64-binutils.changes | 6 ++++++ cross-m68k-binutils.changes | 6 ++++++ cross-mips-binutils.changes | 6 ++++++ cross-ppc-binutils.changes | 6 ++++++ cross-ppc64-binutils.changes | 6 ++++++ cross-ppc64le-binutils.changes | 6 ++++++ cross-riscv64-binutils.changes | 6 ++++++ cross-rx-binutils.changes | 6 ++++++ cross-s390-binutils.changes | 6 ++++++ cross-s390x-binutils.changes | 6 ++++++ cross-sparc-binutils.changes | 6 ++++++ cross-sparc64-binutils.changes | 6 ++++++ cross-spu-binutils.changes | 6 ++++++ cross-x86_64-binutils.changes | 6 ++++++ cross-xtensa-binutils.changes | 6 ++++++ 24 files changed, 142 insertions(+), 2 deletions(-) diff --git a/binutils-skip-rpaths.patch b/binutils-skip-rpaths.patch index fc74541..2da9ab0 100644 --- a/binutils-skip-rpaths.patch +++ b/binutils-skip-rpaths.patch @@ -56,7 +56,7 @@ index 2e27cf48a8..7162d0cf91 100644 asection *sinterp; bfd *abfd; struct bfd_link_hash_entry *ehdr_start = NULL; -@@ -1572,7 +1597,65 @@ ldelf_before_allocation (char *audit, char *depaudit, +@@ -1608,7 +1633,67 @@ ldelf_before_allocation (char *audit, char *depaudit, by dynamic linking. */ rpath = command_line.rpath; if (rpath == NULL) @@ -73,12 +73,14 @@ index 2e27cf48a8..7162d0cf91 100644 + fseek (ldso, 0, SEEK_END); + endcur = ftell (ldso); + fseek (ldso, 0, SEEK_SET); -+ dirs = xmalloc (endcur); ++ dirs = xmalloc (endcur + 1); + if (fread (dirs, 1, endcur, ldso) != (size_t) endcur) + { + free (dirs); + dirs = NULL; + } ++ else ++ dirs[endcur] = '\0'; + } + if (dirs) + { diff --git a/binutils.changes b/binutils.changes index a239ca6..8e2c309 100644 --- a/binutils.changes +++ b/binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Nov 1 09:34:38 UTC 2021 - Martin Liška + +- Update binutils-skip-rpaths.patch with contained a memory corruption + (boo#1191473). + ------------------------------------------------------------------- Fri Oct 8 14:11:44 UTC 2021 - Michael Matz diff --git a/cross-aarch64-binutils.changes b/cross-aarch64-binutils.changes index a239ca6..8e2c309 100644 --- a/cross-aarch64-binutils.changes +++ b/cross-aarch64-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Nov 1 09:34:38 UTC 2021 - Martin Liška + +- Update binutils-skip-rpaths.patch with contained a memory corruption + (boo#1191473). + ------------------------------------------------------------------- Fri Oct 8 14:11:44 UTC 2021 - Michael Matz diff --git a/cross-arm-binutils.changes b/cross-arm-binutils.changes index a239ca6..8e2c309 100644 --- a/cross-arm-binutils.changes +++ b/cross-arm-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Nov 1 09:34:38 UTC 2021 - Martin Liška + +- Update binutils-skip-rpaths.patch with contained a memory corruption + (boo#1191473). + ------------------------------------------------------------------- Fri Oct 8 14:11:44 UTC 2021 - Michael Matz diff --git a/cross-avr-binutils.changes b/cross-avr-binutils.changes index a239ca6..8e2c309 100644 --- a/cross-avr-binutils.changes +++ b/cross-avr-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Nov 1 09:34:38 UTC 2021 - Martin Liška + +- Update binutils-skip-rpaths.patch with contained a memory corruption + (boo#1191473). + ------------------------------------------------------------------- Fri Oct 8 14:11:44 UTC 2021 - Michael Matz diff --git a/cross-epiphany-binutils.changes b/cross-epiphany-binutils.changes index a239ca6..8e2c309 100644 --- a/cross-epiphany-binutils.changes +++ b/cross-epiphany-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Nov 1 09:34:38 UTC 2021 - Martin Liška + +- Update binutils-skip-rpaths.patch with contained a memory corruption + (boo#1191473). + ------------------------------------------------------------------- Fri Oct 8 14:11:44 UTC 2021 - Michael Matz diff --git a/cross-hppa-binutils.changes b/cross-hppa-binutils.changes index a239ca6..8e2c309 100644 --- a/cross-hppa-binutils.changes +++ b/cross-hppa-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Nov 1 09:34:38 UTC 2021 - Martin Liška + +- Update binutils-skip-rpaths.patch with contained a memory corruption + (boo#1191473). + ------------------------------------------------------------------- Fri Oct 8 14:11:44 UTC 2021 - Michael Matz diff --git a/cross-hppa64-binutils.changes b/cross-hppa64-binutils.changes index a239ca6..8e2c309 100644 --- a/cross-hppa64-binutils.changes +++ b/cross-hppa64-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Nov 1 09:34:38 UTC 2021 - Martin Liška + +- Update binutils-skip-rpaths.patch with contained a memory corruption + (boo#1191473). + ------------------------------------------------------------------- Fri Oct 8 14:11:44 UTC 2021 - Michael Matz diff --git a/cross-i386-binutils.changes b/cross-i386-binutils.changes index a239ca6..8e2c309 100644 --- a/cross-i386-binutils.changes +++ b/cross-i386-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Nov 1 09:34:38 UTC 2021 - Martin Liška + +- Update binutils-skip-rpaths.patch with contained a memory corruption + (boo#1191473). + ------------------------------------------------------------------- Fri Oct 8 14:11:44 UTC 2021 - Michael Matz diff --git a/cross-ia64-binutils.changes b/cross-ia64-binutils.changes index a239ca6..8e2c309 100644 --- a/cross-ia64-binutils.changes +++ b/cross-ia64-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Nov 1 09:34:38 UTC 2021 - Martin Liška + +- Update binutils-skip-rpaths.patch with contained a memory corruption + (boo#1191473). + ------------------------------------------------------------------- Fri Oct 8 14:11:44 UTC 2021 - Michael Matz diff --git a/cross-m68k-binutils.changes b/cross-m68k-binutils.changes index a239ca6..8e2c309 100644 --- a/cross-m68k-binutils.changes +++ b/cross-m68k-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Nov 1 09:34:38 UTC 2021 - Martin Liška + +- Update binutils-skip-rpaths.patch with contained a memory corruption + (boo#1191473). + ------------------------------------------------------------------- Fri Oct 8 14:11:44 UTC 2021 - Michael Matz diff --git a/cross-mips-binutils.changes b/cross-mips-binutils.changes index a239ca6..8e2c309 100644 --- a/cross-mips-binutils.changes +++ b/cross-mips-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Nov 1 09:34:38 UTC 2021 - Martin Liška + +- Update binutils-skip-rpaths.patch with contained a memory corruption + (boo#1191473). + ------------------------------------------------------------------- Fri Oct 8 14:11:44 UTC 2021 - Michael Matz diff --git a/cross-ppc-binutils.changes b/cross-ppc-binutils.changes index a239ca6..8e2c309 100644 --- a/cross-ppc-binutils.changes +++ b/cross-ppc-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Nov 1 09:34:38 UTC 2021 - Martin Liška + +- Update binutils-skip-rpaths.patch with contained a memory corruption + (boo#1191473). + ------------------------------------------------------------------- Fri Oct 8 14:11:44 UTC 2021 - Michael Matz diff --git a/cross-ppc64-binutils.changes b/cross-ppc64-binutils.changes index a239ca6..8e2c309 100644 --- a/cross-ppc64-binutils.changes +++ b/cross-ppc64-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Nov 1 09:34:38 UTC 2021 - Martin Liška + +- Update binutils-skip-rpaths.patch with contained a memory corruption + (boo#1191473). + ------------------------------------------------------------------- Fri Oct 8 14:11:44 UTC 2021 - Michael Matz diff --git a/cross-ppc64le-binutils.changes b/cross-ppc64le-binutils.changes index a239ca6..8e2c309 100644 --- a/cross-ppc64le-binutils.changes +++ b/cross-ppc64le-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Nov 1 09:34:38 UTC 2021 - Martin Liška + +- Update binutils-skip-rpaths.patch with contained a memory corruption + (boo#1191473). + ------------------------------------------------------------------- Fri Oct 8 14:11:44 UTC 2021 - Michael Matz diff --git a/cross-riscv64-binutils.changes b/cross-riscv64-binutils.changes index a239ca6..8e2c309 100644 --- a/cross-riscv64-binutils.changes +++ b/cross-riscv64-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Nov 1 09:34:38 UTC 2021 - Martin Liška + +- Update binutils-skip-rpaths.patch with contained a memory corruption + (boo#1191473). + ------------------------------------------------------------------- Fri Oct 8 14:11:44 UTC 2021 - Michael Matz diff --git a/cross-rx-binutils.changes b/cross-rx-binutils.changes index a239ca6..8e2c309 100644 --- a/cross-rx-binutils.changes +++ b/cross-rx-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Nov 1 09:34:38 UTC 2021 - Martin Liška + +- Update binutils-skip-rpaths.patch with contained a memory corruption + (boo#1191473). + ------------------------------------------------------------------- Fri Oct 8 14:11:44 UTC 2021 - Michael Matz diff --git a/cross-s390-binutils.changes b/cross-s390-binutils.changes index a239ca6..8e2c309 100644 --- a/cross-s390-binutils.changes +++ b/cross-s390-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Nov 1 09:34:38 UTC 2021 - Martin Liška + +- Update binutils-skip-rpaths.patch with contained a memory corruption + (boo#1191473). + ------------------------------------------------------------------- Fri Oct 8 14:11:44 UTC 2021 - Michael Matz diff --git a/cross-s390x-binutils.changes b/cross-s390x-binutils.changes index a239ca6..8e2c309 100644 --- a/cross-s390x-binutils.changes +++ b/cross-s390x-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Nov 1 09:34:38 UTC 2021 - Martin Liška + +- Update binutils-skip-rpaths.patch with contained a memory corruption + (boo#1191473). + ------------------------------------------------------------------- Fri Oct 8 14:11:44 UTC 2021 - Michael Matz diff --git a/cross-sparc-binutils.changes b/cross-sparc-binutils.changes index a239ca6..8e2c309 100644 --- a/cross-sparc-binutils.changes +++ b/cross-sparc-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Nov 1 09:34:38 UTC 2021 - Martin Liška + +- Update binutils-skip-rpaths.patch with contained a memory corruption + (boo#1191473). + ------------------------------------------------------------------- Fri Oct 8 14:11:44 UTC 2021 - Michael Matz diff --git a/cross-sparc64-binutils.changes b/cross-sparc64-binutils.changes index a239ca6..8e2c309 100644 --- a/cross-sparc64-binutils.changes +++ b/cross-sparc64-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Nov 1 09:34:38 UTC 2021 - Martin Liška + +- Update binutils-skip-rpaths.patch with contained a memory corruption + (boo#1191473). + ------------------------------------------------------------------- Fri Oct 8 14:11:44 UTC 2021 - Michael Matz diff --git a/cross-spu-binutils.changes b/cross-spu-binutils.changes index a239ca6..8e2c309 100644 --- a/cross-spu-binutils.changes +++ b/cross-spu-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Nov 1 09:34:38 UTC 2021 - Martin Liška + +- Update binutils-skip-rpaths.patch with contained a memory corruption + (boo#1191473). + ------------------------------------------------------------------- Fri Oct 8 14:11:44 UTC 2021 - Michael Matz diff --git a/cross-x86_64-binutils.changes b/cross-x86_64-binutils.changes index a239ca6..8e2c309 100644 --- a/cross-x86_64-binutils.changes +++ b/cross-x86_64-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Nov 1 09:34:38 UTC 2021 - Martin Liška + +- Update binutils-skip-rpaths.patch with contained a memory corruption + (boo#1191473). + ------------------------------------------------------------------- Fri Oct 8 14:11:44 UTC 2021 - Michael Matz diff --git a/cross-xtensa-binutils.changes b/cross-xtensa-binutils.changes index a239ca6..8e2c309 100644 --- a/cross-xtensa-binutils.changes +++ b/cross-xtensa-binutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Nov 1 09:34:38 UTC 2021 - Martin Liška + +- Update binutils-skip-rpaths.patch with contained a memory corruption + (boo#1191473). + ------------------------------------------------------------------- Fri Oct 8 14:11:44 UTC 2021 - Michael Matz From 20813f4398d976746dae5cf5b2696d40c526927cb09e1c968e533ae83c20157f Mon Sep 17 00:00:00 2001 From: Michael Matz Date: Tue, 2 Nov 2021 15:59:30 +0000 Subject: [PATCH 10/12] - Fix empty man-pages from broken release tarball [PR28144]. OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=376 --- binutils.changes | 5 +++++ binutils.spec | 5 +++++ cross-aarch64-binutils.changes | 5 +++++ cross-aarch64-binutils.spec | 5 +++++ cross-arm-binutils.changes | 5 +++++ cross-arm-binutils.spec | 5 +++++ cross-avr-binutils.changes | 5 +++++ cross-avr-binutils.spec | 5 +++++ cross-epiphany-binutils.changes | 5 +++++ cross-epiphany-binutils.spec | 5 +++++ cross-hppa-binutils.changes | 5 +++++ cross-hppa-binutils.spec | 5 +++++ cross-hppa64-binutils.changes | 5 +++++ cross-hppa64-binutils.spec | 5 +++++ cross-i386-binutils.changes | 5 +++++ cross-i386-binutils.spec | 5 +++++ cross-ia64-binutils.changes | 5 +++++ cross-ia64-binutils.spec | 5 +++++ cross-m68k-binutils.changes | 5 +++++ cross-m68k-binutils.spec | 5 +++++ cross-mips-binutils.changes | 5 +++++ cross-mips-binutils.spec | 5 +++++ cross-ppc-binutils.changes | 5 +++++ cross-ppc-binutils.spec | 5 +++++ cross-ppc64-binutils.changes | 5 +++++ cross-ppc64-binutils.spec | 5 +++++ cross-ppc64le-binutils.changes | 5 +++++ cross-ppc64le-binutils.spec | 5 +++++ cross-riscv64-binutils.changes | 5 +++++ cross-riscv64-binutils.spec | 5 +++++ cross-rx-binutils.changes | 5 +++++ cross-rx-binutils.spec | 5 +++++ cross-s390-binutils.changes | 5 +++++ cross-s390-binutils.spec | 5 +++++ cross-s390x-binutils.changes | 5 +++++ cross-s390x-binutils.spec | 5 +++++ cross-sparc-binutils.changes | 5 +++++ cross-sparc-binutils.spec | 5 +++++ cross-sparc64-binutils.changes | 5 +++++ cross-sparc64-binutils.spec | 5 +++++ cross-spu-binutils.changes | 5 +++++ cross-spu-binutils.spec | 5 +++++ cross-x86_64-binutils.changes | 5 +++++ cross-x86_64-binutils.spec | 5 +++++ cross-xtensa-binutils.changes | 5 +++++ cross-xtensa-binutils.spec | 5 +++++ 46 files changed, 230 insertions(+) diff --git a/binutils.changes b/binutils.changes index 8e2c309..bae1c75 100644 --- a/binutils.changes +++ b/binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Nov 2 15:57:53 UTC 2021 - Michael Matz + +- Fix empty man-pages from broken release tarball [PR28144]. + ------------------------------------------------------------------- Mon Nov 1 09:34:38 UTC 2021 - Martin Liška diff --git a/binutils.spec b/binutils.spec index 3dd48b1..b4abb5d 100644 --- a/binutils.spec +++ b/binutils.spec @@ -232,6 +232,11 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h rm -f ld/ldlex.c rm -f ld/ldgram.c ld/ldgram.h +# The 2.37 released tarball contains wrongly pre-generated (empty) man pages +# so we remove those here as well. Consider removing for later releases. +rm -rf binutils/doc/*.1 +rm -rf binutils/doc/cxxfilt.man + %build %define _lto_cflags %{nil} sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-aarch64-binutils.changes b/cross-aarch64-binutils.changes index 8e2c309..bae1c75 100644 --- a/cross-aarch64-binutils.changes +++ b/cross-aarch64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Nov 2 15:57:53 UTC 2021 - Michael Matz + +- Fix empty man-pages from broken release tarball [PR28144]. + ------------------------------------------------------------------- Mon Nov 1 09:34:38 UTC 2021 - Martin Liška diff --git a/cross-aarch64-binutils.spec b/cross-aarch64-binutils.spec index 40b12a0..1165781 100644 --- a/cross-aarch64-binutils.spec +++ b/cross-aarch64-binutils.spec @@ -235,6 +235,11 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h rm -f ld/ldlex.c rm -f ld/ldgram.c ld/ldgram.h +# The 2.37 released tarball contains wrongly pre-generated (empty) man pages +# so we remove those here as well. Consider removing for later releases. +rm -rf binutils/doc/*.1 +rm -rf binutils/doc/cxxfilt.man + %build %define _lto_cflags %{nil} sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-arm-binutils.changes b/cross-arm-binutils.changes index 8e2c309..bae1c75 100644 --- a/cross-arm-binutils.changes +++ b/cross-arm-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Nov 2 15:57:53 UTC 2021 - Michael Matz + +- Fix empty man-pages from broken release tarball [PR28144]. + ------------------------------------------------------------------- Mon Nov 1 09:34:38 UTC 2021 - Martin Liška diff --git a/cross-arm-binutils.spec b/cross-arm-binutils.spec index f8e9cc1..839d453 100644 --- a/cross-arm-binutils.spec +++ b/cross-arm-binutils.spec @@ -235,6 +235,11 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h rm -f ld/ldlex.c rm -f ld/ldgram.c ld/ldgram.h +# The 2.37 released tarball contains wrongly pre-generated (empty) man pages +# so we remove those here as well. Consider removing for later releases. +rm -rf binutils/doc/*.1 +rm -rf binutils/doc/cxxfilt.man + %build %define _lto_cflags %{nil} sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-avr-binutils.changes b/cross-avr-binutils.changes index 8e2c309..bae1c75 100644 --- a/cross-avr-binutils.changes +++ b/cross-avr-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Nov 2 15:57:53 UTC 2021 - Michael Matz + +- Fix empty man-pages from broken release tarball [PR28144]. + ------------------------------------------------------------------- Mon Nov 1 09:34:38 UTC 2021 - Martin Liška diff --git a/cross-avr-binutils.spec b/cross-avr-binutils.spec index 72e97d4..9d9d2d5 100644 --- a/cross-avr-binutils.spec +++ b/cross-avr-binutils.spec @@ -235,6 +235,11 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h rm -f ld/ldlex.c rm -f ld/ldgram.c ld/ldgram.h +# The 2.37 released tarball contains wrongly pre-generated (empty) man pages +# so we remove those here as well. Consider removing for later releases. +rm -rf binutils/doc/*.1 +rm -rf binutils/doc/cxxfilt.man + %build %define _lto_cflags %{nil} sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-epiphany-binutils.changes b/cross-epiphany-binutils.changes index 8e2c309..bae1c75 100644 --- a/cross-epiphany-binutils.changes +++ b/cross-epiphany-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Nov 2 15:57:53 UTC 2021 - Michael Matz + +- Fix empty man-pages from broken release tarball [PR28144]. + ------------------------------------------------------------------- Mon Nov 1 09:34:38 UTC 2021 - Martin Liška diff --git a/cross-epiphany-binutils.spec b/cross-epiphany-binutils.spec index 860b95b..bc62071 100644 --- a/cross-epiphany-binutils.spec +++ b/cross-epiphany-binutils.spec @@ -235,6 +235,11 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h rm -f ld/ldlex.c rm -f ld/ldgram.c ld/ldgram.h +# The 2.37 released tarball contains wrongly pre-generated (empty) man pages +# so we remove those here as well. Consider removing for later releases. +rm -rf binutils/doc/*.1 +rm -rf binutils/doc/cxxfilt.man + %build %define _lto_cflags %{nil} sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-hppa-binutils.changes b/cross-hppa-binutils.changes index 8e2c309..bae1c75 100644 --- a/cross-hppa-binutils.changes +++ b/cross-hppa-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Nov 2 15:57:53 UTC 2021 - Michael Matz + +- Fix empty man-pages from broken release tarball [PR28144]. + ------------------------------------------------------------------- Mon Nov 1 09:34:38 UTC 2021 - Martin Liška diff --git a/cross-hppa-binutils.spec b/cross-hppa-binutils.spec index b735aea..613bfd2 100644 --- a/cross-hppa-binutils.spec +++ b/cross-hppa-binutils.spec @@ -235,6 +235,11 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h rm -f ld/ldlex.c rm -f ld/ldgram.c ld/ldgram.h +# The 2.37 released tarball contains wrongly pre-generated (empty) man pages +# so we remove those here as well. Consider removing for later releases. +rm -rf binutils/doc/*.1 +rm -rf binutils/doc/cxxfilt.man + %build %define _lto_cflags %{nil} sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-hppa64-binutils.changes b/cross-hppa64-binutils.changes index 8e2c309..bae1c75 100644 --- a/cross-hppa64-binutils.changes +++ b/cross-hppa64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Nov 2 15:57:53 UTC 2021 - Michael Matz + +- Fix empty man-pages from broken release tarball [PR28144]. + ------------------------------------------------------------------- Mon Nov 1 09:34:38 UTC 2021 - Martin Liška diff --git a/cross-hppa64-binutils.spec b/cross-hppa64-binutils.spec index 10e9448..c88d16d 100644 --- a/cross-hppa64-binutils.spec +++ b/cross-hppa64-binutils.spec @@ -235,6 +235,11 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h rm -f ld/ldlex.c rm -f ld/ldgram.c ld/ldgram.h +# The 2.37 released tarball contains wrongly pre-generated (empty) man pages +# so we remove those here as well. Consider removing for later releases. +rm -rf binutils/doc/*.1 +rm -rf binutils/doc/cxxfilt.man + %build %define _lto_cflags %{nil} sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-i386-binutils.changes b/cross-i386-binutils.changes index 8e2c309..bae1c75 100644 --- a/cross-i386-binutils.changes +++ b/cross-i386-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Nov 2 15:57:53 UTC 2021 - Michael Matz + +- Fix empty man-pages from broken release tarball [PR28144]. + ------------------------------------------------------------------- Mon Nov 1 09:34:38 UTC 2021 - Martin Liška diff --git a/cross-i386-binutils.spec b/cross-i386-binutils.spec index 15d2def..17abeee 100644 --- a/cross-i386-binutils.spec +++ b/cross-i386-binutils.spec @@ -235,6 +235,11 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h rm -f ld/ldlex.c rm -f ld/ldgram.c ld/ldgram.h +# The 2.37 released tarball contains wrongly pre-generated (empty) man pages +# so we remove those here as well. Consider removing for later releases. +rm -rf binutils/doc/*.1 +rm -rf binutils/doc/cxxfilt.man + %build %define _lto_cflags %{nil} sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-ia64-binutils.changes b/cross-ia64-binutils.changes index 8e2c309..bae1c75 100644 --- a/cross-ia64-binutils.changes +++ b/cross-ia64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Nov 2 15:57:53 UTC 2021 - Michael Matz + +- Fix empty man-pages from broken release tarball [PR28144]. + ------------------------------------------------------------------- Mon Nov 1 09:34:38 UTC 2021 - Martin Liška diff --git a/cross-ia64-binutils.spec b/cross-ia64-binutils.spec index bcfbfa2..8ffdb38 100644 --- a/cross-ia64-binutils.spec +++ b/cross-ia64-binutils.spec @@ -235,6 +235,11 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h rm -f ld/ldlex.c rm -f ld/ldgram.c ld/ldgram.h +# The 2.37 released tarball contains wrongly pre-generated (empty) man pages +# so we remove those here as well. Consider removing for later releases. +rm -rf binutils/doc/*.1 +rm -rf binutils/doc/cxxfilt.man + %build %define _lto_cflags %{nil} sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-m68k-binutils.changes b/cross-m68k-binutils.changes index 8e2c309..bae1c75 100644 --- a/cross-m68k-binutils.changes +++ b/cross-m68k-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Nov 2 15:57:53 UTC 2021 - Michael Matz + +- Fix empty man-pages from broken release tarball [PR28144]. + ------------------------------------------------------------------- Mon Nov 1 09:34:38 UTC 2021 - Martin Liška diff --git a/cross-m68k-binutils.spec b/cross-m68k-binutils.spec index 0709a16..0d2365e 100644 --- a/cross-m68k-binutils.spec +++ b/cross-m68k-binutils.spec @@ -235,6 +235,11 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h rm -f ld/ldlex.c rm -f ld/ldgram.c ld/ldgram.h +# The 2.37 released tarball contains wrongly pre-generated (empty) man pages +# so we remove those here as well. Consider removing for later releases. +rm -rf binutils/doc/*.1 +rm -rf binutils/doc/cxxfilt.man + %build %define _lto_cflags %{nil} sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-mips-binutils.changes b/cross-mips-binutils.changes index 8e2c309..bae1c75 100644 --- a/cross-mips-binutils.changes +++ b/cross-mips-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Nov 2 15:57:53 UTC 2021 - Michael Matz + +- Fix empty man-pages from broken release tarball [PR28144]. + ------------------------------------------------------------------- Mon Nov 1 09:34:38 UTC 2021 - Martin Liška diff --git a/cross-mips-binutils.spec b/cross-mips-binutils.spec index 5c0b51f..4836a90 100644 --- a/cross-mips-binutils.spec +++ b/cross-mips-binutils.spec @@ -235,6 +235,11 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h rm -f ld/ldlex.c rm -f ld/ldgram.c ld/ldgram.h +# The 2.37 released tarball contains wrongly pre-generated (empty) man pages +# so we remove those here as well. Consider removing for later releases. +rm -rf binutils/doc/*.1 +rm -rf binutils/doc/cxxfilt.man + %build %define _lto_cflags %{nil} sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-ppc-binutils.changes b/cross-ppc-binutils.changes index 8e2c309..bae1c75 100644 --- a/cross-ppc-binutils.changes +++ b/cross-ppc-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Nov 2 15:57:53 UTC 2021 - Michael Matz + +- Fix empty man-pages from broken release tarball [PR28144]. + ------------------------------------------------------------------- Mon Nov 1 09:34:38 UTC 2021 - Martin Liška diff --git a/cross-ppc-binutils.spec b/cross-ppc-binutils.spec index ce4a579..ee5910d 100644 --- a/cross-ppc-binutils.spec +++ b/cross-ppc-binutils.spec @@ -235,6 +235,11 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h rm -f ld/ldlex.c rm -f ld/ldgram.c ld/ldgram.h +# The 2.37 released tarball contains wrongly pre-generated (empty) man pages +# so we remove those here as well. Consider removing for later releases. +rm -rf binutils/doc/*.1 +rm -rf binutils/doc/cxxfilt.man + %build %define _lto_cflags %{nil} sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-ppc64-binutils.changes b/cross-ppc64-binutils.changes index 8e2c309..bae1c75 100644 --- a/cross-ppc64-binutils.changes +++ b/cross-ppc64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Nov 2 15:57:53 UTC 2021 - Michael Matz + +- Fix empty man-pages from broken release tarball [PR28144]. + ------------------------------------------------------------------- Mon Nov 1 09:34:38 UTC 2021 - Martin Liška diff --git a/cross-ppc64-binutils.spec b/cross-ppc64-binutils.spec index 524752f..14df4b2 100644 --- a/cross-ppc64-binutils.spec +++ b/cross-ppc64-binutils.spec @@ -235,6 +235,11 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h rm -f ld/ldlex.c rm -f ld/ldgram.c ld/ldgram.h +# The 2.37 released tarball contains wrongly pre-generated (empty) man pages +# so we remove those here as well. Consider removing for later releases. +rm -rf binutils/doc/*.1 +rm -rf binutils/doc/cxxfilt.man + %build %define _lto_cflags %{nil} sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-ppc64le-binutils.changes b/cross-ppc64le-binutils.changes index 8e2c309..bae1c75 100644 --- a/cross-ppc64le-binutils.changes +++ b/cross-ppc64le-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Nov 2 15:57:53 UTC 2021 - Michael Matz + +- Fix empty man-pages from broken release tarball [PR28144]. + ------------------------------------------------------------------- Mon Nov 1 09:34:38 UTC 2021 - Martin Liška diff --git a/cross-ppc64le-binutils.spec b/cross-ppc64le-binutils.spec index c5b1888..353d50b 100644 --- a/cross-ppc64le-binutils.spec +++ b/cross-ppc64le-binutils.spec @@ -235,6 +235,11 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h rm -f ld/ldlex.c rm -f ld/ldgram.c ld/ldgram.h +# The 2.37 released tarball contains wrongly pre-generated (empty) man pages +# so we remove those here as well. Consider removing for later releases. +rm -rf binutils/doc/*.1 +rm -rf binutils/doc/cxxfilt.man + %build %define _lto_cflags %{nil} sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-riscv64-binutils.changes b/cross-riscv64-binutils.changes index 8e2c309..bae1c75 100644 --- a/cross-riscv64-binutils.changes +++ b/cross-riscv64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Nov 2 15:57:53 UTC 2021 - Michael Matz + +- Fix empty man-pages from broken release tarball [PR28144]. + ------------------------------------------------------------------- Mon Nov 1 09:34:38 UTC 2021 - Martin Liška diff --git a/cross-riscv64-binutils.spec b/cross-riscv64-binutils.spec index 1f6c99b..5caaf2a 100644 --- a/cross-riscv64-binutils.spec +++ b/cross-riscv64-binutils.spec @@ -235,6 +235,11 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h rm -f ld/ldlex.c rm -f ld/ldgram.c ld/ldgram.h +# The 2.37 released tarball contains wrongly pre-generated (empty) man pages +# so we remove those here as well. Consider removing for later releases. +rm -rf binutils/doc/*.1 +rm -rf binutils/doc/cxxfilt.man + %build %define _lto_cflags %{nil} sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-rx-binutils.changes b/cross-rx-binutils.changes index 8e2c309..bae1c75 100644 --- a/cross-rx-binutils.changes +++ b/cross-rx-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Nov 2 15:57:53 UTC 2021 - Michael Matz + +- Fix empty man-pages from broken release tarball [PR28144]. + ------------------------------------------------------------------- Mon Nov 1 09:34:38 UTC 2021 - Martin Liška diff --git a/cross-rx-binutils.spec b/cross-rx-binutils.spec index e026096..89e0ac9 100644 --- a/cross-rx-binutils.spec +++ b/cross-rx-binutils.spec @@ -235,6 +235,11 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h rm -f ld/ldlex.c rm -f ld/ldgram.c ld/ldgram.h +# The 2.37 released tarball contains wrongly pre-generated (empty) man pages +# so we remove those here as well. Consider removing for later releases. +rm -rf binutils/doc/*.1 +rm -rf binutils/doc/cxxfilt.man + %build %define _lto_cflags %{nil} sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-s390-binutils.changes b/cross-s390-binutils.changes index 8e2c309..bae1c75 100644 --- a/cross-s390-binutils.changes +++ b/cross-s390-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Nov 2 15:57:53 UTC 2021 - Michael Matz + +- Fix empty man-pages from broken release tarball [PR28144]. + ------------------------------------------------------------------- Mon Nov 1 09:34:38 UTC 2021 - Martin Liška diff --git a/cross-s390-binutils.spec b/cross-s390-binutils.spec index 51d9110..3428e2b 100644 --- a/cross-s390-binutils.spec +++ b/cross-s390-binutils.spec @@ -235,6 +235,11 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h rm -f ld/ldlex.c rm -f ld/ldgram.c ld/ldgram.h +# The 2.37 released tarball contains wrongly pre-generated (empty) man pages +# so we remove those here as well. Consider removing for later releases. +rm -rf binutils/doc/*.1 +rm -rf binutils/doc/cxxfilt.man + %build %define _lto_cflags %{nil} sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-s390x-binutils.changes b/cross-s390x-binutils.changes index 8e2c309..bae1c75 100644 --- a/cross-s390x-binutils.changes +++ b/cross-s390x-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Nov 2 15:57:53 UTC 2021 - Michael Matz + +- Fix empty man-pages from broken release tarball [PR28144]. + ------------------------------------------------------------------- Mon Nov 1 09:34:38 UTC 2021 - Martin Liška diff --git a/cross-s390x-binutils.spec b/cross-s390x-binutils.spec index 52fabaa..f32b198 100644 --- a/cross-s390x-binutils.spec +++ b/cross-s390x-binutils.spec @@ -235,6 +235,11 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h rm -f ld/ldlex.c rm -f ld/ldgram.c ld/ldgram.h +# The 2.37 released tarball contains wrongly pre-generated (empty) man pages +# so we remove those here as well. Consider removing for later releases. +rm -rf binutils/doc/*.1 +rm -rf binutils/doc/cxxfilt.man + %build %define _lto_cflags %{nil} sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-sparc-binutils.changes b/cross-sparc-binutils.changes index 8e2c309..bae1c75 100644 --- a/cross-sparc-binutils.changes +++ b/cross-sparc-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Nov 2 15:57:53 UTC 2021 - Michael Matz + +- Fix empty man-pages from broken release tarball [PR28144]. + ------------------------------------------------------------------- Mon Nov 1 09:34:38 UTC 2021 - Martin Liška diff --git a/cross-sparc-binutils.spec b/cross-sparc-binutils.spec index ad489ac..9de51e4 100644 --- a/cross-sparc-binutils.spec +++ b/cross-sparc-binutils.spec @@ -235,6 +235,11 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h rm -f ld/ldlex.c rm -f ld/ldgram.c ld/ldgram.h +# The 2.37 released tarball contains wrongly pre-generated (empty) man pages +# so we remove those here as well. Consider removing for later releases. +rm -rf binutils/doc/*.1 +rm -rf binutils/doc/cxxfilt.man + %build %define _lto_cflags %{nil} sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-sparc64-binutils.changes b/cross-sparc64-binutils.changes index 8e2c309..bae1c75 100644 --- a/cross-sparc64-binutils.changes +++ b/cross-sparc64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Nov 2 15:57:53 UTC 2021 - Michael Matz + +- Fix empty man-pages from broken release tarball [PR28144]. + ------------------------------------------------------------------- Mon Nov 1 09:34:38 UTC 2021 - Martin Liška diff --git a/cross-sparc64-binutils.spec b/cross-sparc64-binutils.spec index 82b1542..c0784ea 100644 --- a/cross-sparc64-binutils.spec +++ b/cross-sparc64-binutils.spec @@ -235,6 +235,11 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h rm -f ld/ldlex.c rm -f ld/ldgram.c ld/ldgram.h +# The 2.37 released tarball contains wrongly pre-generated (empty) man pages +# so we remove those here as well. Consider removing for later releases. +rm -rf binutils/doc/*.1 +rm -rf binutils/doc/cxxfilt.man + %build %define _lto_cflags %{nil} sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-spu-binutils.changes b/cross-spu-binutils.changes index 8e2c309..bae1c75 100644 --- a/cross-spu-binutils.changes +++ b/cross-spu-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Nov 2 15:57:53 UTC 2021 - Michael Matz + +- Fix empty man-pages from broken release tarball [PR28144]. + ------------------------------------------------------------------- Mon Nov 1 09:34:38 UTC 2021 - Martin Liška diff --git a/cross-spu-binutils.spec b/cross-spu-binutils.spec index 5c90ee2..aedff1b 100644 --- a/cross-spu-binutils.spec +++ b/cross-spu-binutils.spec @@ -235,6 +235,11 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h rm -f ld/ldlex.c rm -f ld/ldgram.c ld/ldgram.h +# The 2.37 released tarball contains wrongly pre-generated (empty) man pages +# so we remove those here as well. Consider removing for later releases. +rm -rf binutils/doc/*.1 +rm -rf binutils/doc/cxxfilt.man + %build %define _lto_cflags %{nil} sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-x86_64-binutils.changes b/cross-x86_64-binutils.changes index 8e2c309..bae1c75 100644 --- a/cross-x86_64-binutils.changes +++ b/cross-x86_64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Nov 2 15:57:53 UTC 2021 - Michael Matz + +- Fix empty man-pages from broken release tarball [PR28144]. + ------------------------------------------------------------------- Mon Nov 1 09:34:38 UTC 2021 - Martin Liška diff --git a/cross-x86_64-binutils.spec b/cross-x86_64-binutils.spec index b95c8bd..033c824 100644 --- a/cross-x86_64-binutils.spec +++ b/cross-x86_64-binutils.spec @@ -235,6 +235,11 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h rm -f ld/ldlex.c rm -f ld/ldgram.c ld/ldgram.h +# The 2.37 released tarball contains wrongly pre-generated (empty) man pages +# so we remove those here as well. Consider removing for later releases. +rm -rf binutils/doc/*.1 +rm -rf binutils/doc/cxxfilt.man + %build %define _lto_cflags %{nil} sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h diff --git a/cross-xtensa-binutils.changes b/cross-xtensa-binutils.changes index 8e2c309..bae1c75 100644 --- a/cross-xtensa-binutils.changes +++ b/cross-xtensa-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Nov 2 15:57:53 UTC 2021 - Michael Matz + +- Fix empty man-pages from broken release tarball [PR28144]. + ------------------------------------------------------------------- Mon Nov 1 09:34:38 UTC 2021 - Martin Liška diff --git a/cross-xtensa-binutils.spec b/cross-xtensa-binutils.spec index 124bb87..5010b6e 100644 --- a/cross-xtensa-binutils.spec +++ b/cross-xtensa-binutils.spec @@ -235,6 +235,11 @@ cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h rm -f ld/ldlex.c rm -f ld/ldgram.c ld/ldgram.h +# The 2.37 released tarball contains wrongly pre-generated (empty) man pages +# so we remove those here as well. Consider removing for later releases. +rm -rf binutils/doc/*.1 +rm -rf binutils/doc/cxxfilt.man + %build %define _lto_cflags %{nil} sed -i -e '/BFD_VERSION_DATE/s/$/-%(echo %release | sed 's/\.[0-9]*$//')/' bfd/version.h From 2a8382549a24d1be937c16b12dc0209304ad49e3ed98cb1abc67b7b556595121 Mon Sep 17 00:00:00 2001 From: Michael Matz Date: Tue, 2 Nov 2021 16:37:43 +0000 Subject: [PATCH 11/12] Forgot to remove some files OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=377 --- binutils.spec | 7 +++++-- cross-aarch64-binutils.spec | 7 +++++-- cross-arm-binutils.spec | 7 +++++-- cross-avr-binutils.spec | 7 +++++-- cross-epiphany-binutils.spec | 7 +++++-- cross-hppa-binutils.spec | 7 +++++-- cross-hppa64-binutils.spec | 7 +++++-- cross-i386-binutils.spec | 7 +++++-- cross-ia64-binutils.spec | 7 +++++-- cross-m68k-binutils.spec | 7 +++++-- cross-mips-binutils.spec | 7 +++++-- cross-ppc-binutils.spec | 7 +++++-- cross-ppc64-binutils.spec | 7 +++++-- cross-ppc64le-binutils.spec | 7 +++++-- cross-riscv64-binutils.spec | 7 +++++-- cross-rx-binutils.spec | 7 +++++-- cross-s390-binutils.spec | 7 +++++-- cross-s390x-binutils.spec | 7 +++++-- cross-sparc-binutils.spec | 7 +++++-- cross-sparc64-binutils.spec | 7 +++++-- cross-spu-binutils.spec | 7 +++++-- cross-x86_64-binutils.spec | 7 +++++-- cross-xtensa-binutils.spec | 7 +++++-- 23 files changed, 115 insertions(+), 46 deletions(-) diff --git a/binutils.spec b/binutils.spec index b4abb5d..eb5bf05 100644 --- a/binutils.spec +++ b/binutils.spec @@ -234,8 +234,11 @@ rm -f ld/ldgram.c ld/ldgram.h # The 2.37 released tarball contains wrongly pre-generated (empty) man pages # so we remove those here as well. Consider removing for later releases. -rm -rf binutils/doc/*.1 -rm -rf binutils/doc/cxxfilt.man +rm -f binutils/doc/*.1 +rm -f binutils/doc/cxxfilt.man +rm -f gprof/*.1 +rm -f gas/doc/*.1 +rm -f ld/*.1 %build %define _lto_cflags %{nil} diff --git a/cross-aarch64-binutils.spec b/cross-aarch64-binutils.spec index 1165781..43dff88 100644 --- a/cross-aarch64-binutils.spec +++ b/cross-aarch64-binutils.spec @@ -237,8 +237,11 @@ rm -f ld/ldgram.c ld/ldgram.h # The 2.37 released tarball contains wrongly pre-generated (empty) man pages # so we remove those here as well. Consider removing for later releases. -rm -rf binutils/doc/*.1 -rm -rf binutils/doc/cxxfilt.man +rm -f binutils/doc/*.1 +rm -f binutils/doc/cxxfilt.man +rm -f gprof/*.1 +rm -f gas/doc/*.1 +rm -f ld/*.1 %build %define _lto_cflags %{nil} diff --git a/cross-arm-binutils.spec b/cross-arm-binutils.spec index 839d453..68c724a 100644 --- a/cross-arm-binutils.spec +++ b/cross-arm-binutils.spec @@ -237,8 +237,11 @@ rm -f ld/ldgram.c ld/ldgram.h # The 2.37 released tarball contains wrongly pre-generated (empty) man pages # so we remove those here as well. Consider removing for later releases. -rm -rf binutils/doc/*.1 -rm -rf binutils/doc/cxxfilt.man +rm -f binutils/doc/*.1 +rm -f binutils/doc/cxxfilt.man +rm -f gprof/*.1 +rm -f gas/doc/*.1 +rm -f ld/*.1 %build %define _lto_cflags %{nil} diff --git a/cross-avr-binutils.spec b/cross-avr-binutils.spec index 9d9d2d5..ae546d5 100644 --- a/cross-avr-binutils.spec +++ b/cross-avr-binutils.spec @@ -237,8 +237,11 @@ rm -f ld/ldgram.c ld/ldgram.h # The 2.37 released tarball contains wrongly pre-generated (empty) man pages # so we remove those here as well. Consider removing for later releases. -rm -rf binutils/doc/*.1 -rm -rf binutils/doc/cxxfilt.man +rm -f binutils/doc/*.1 +rm -f binutils/doc/cxxfilt.man +rm -f gprof/*.1 +rm -f gas/doc/*.1 +rm -f ld/*.1 %build %define _lto_cflags %{nil} diff --git a/cross-epiphany-binutils.spec b/cross-epiphany-binutils.spec index bc62071..4870bd6 100644 --- a/cross-epiphany-binutils.spec +++ b/cross-epiphany-binutils.spec @@ -237,8 +237,11 @@ rm -f ld/ldgram.c ld/ldgram.h # The 2.37 released tarball contains wrongly pre-generated (empty) man pages # so we remove those here as well. Consider removing for later releases. -rm -rf binutils/doc/*.1 -rm -rf binutils/doc/cxxfilt.man +rm -f binutils/doc/*.1 +rm -f binutils/doc/cxxfilt.man +rm -f gprof/*.1 +rm -f gas/doc/*.1 +rm -f ld/*.1 %build %define _lto_cflags %{nil} diff --git a/cross-hppa-binutils.spec b/cross-hppa-binutils.spec index 613bfd2..257d7be 100644 --- a/cross-hppa-binutils.spec +++ b/cross-hppa-binutils.spec @@ -237,8 +237,11 @@ rm -f ld/ldgram.c ld/ldgram.h # The 2.37 released tarball contains wrongly pre-generated (empty) man pages # so we remove those here as well. Consider removing for later releases. -rm -rf binutils/doc/*.1 -rm -rf binutils/doc/cxxfilt.man +rm -f binutils/doc/*.1 +rm -f binutils/doc/cxxfilt.man +rm -f gprof/*.1 +rm -f gas/doc/*.1 +rm -f ld/*.1 %build %define _lto_cflags %{nil} diff --git a/cross-hppa64-binutils.spec b/cross-hppa64-binutils.spec index c88d16d..46fb167 100644 --- a/cross-hppa64-binutils.spec +++ b/cross-hppa64-binutils.spec @@ -237,8 +237,11 @@ rm -f ld/ldgram.c ld/ldgram.h # The 2.37 released tarball contains wrongly pre-generated (empty) man pages # so we remove those here as well. Consider removing for later releases. -rm -rf binutils/doc/*.1 -rm -rf binutils/doc/cxxfilt.man +rm -f binutils/doc/*.1 +rm -f binutils/doc/cxxfilt.man +rm -f gprof/*.1 +rm -f gas/doc/*.1 +rm -f ld/*.1 %build %define _lto_cflags %{nil} diff --git a/cross-i386-binutils.spec b/cross-i386-binutils.spec index 17abeee..1db8a4f 100644 --- a/cross-i386-binutils.spec +++ b/cross-i386-binutils.spec @@ -237,8 +237,11 @@ rm -f ld/ldgram.c ld/ldgram.h # The 2.37 released tarball contains wrongly pre-generated (empty) man pages # so we remove those here as well. Consider removing for later releases. -rm -rf binutils/doc/*.1 -rm -rf binutils/doc/cxxfilt.man +rm -f binutils/doc/*.1 +rm -f binutils/doc/cxxfilt.man +rm -f gprof/*.1 +rm -f gas/doc/*.1 +rm -f ld/*.1 %build %define _lto_cflags %{nil} diff --git a/cross-ia64-binutils.spec b/cross-ia64-binutils.spec index 8ffdb38..c7a1c60 100644 --- a/cross-ia64-binutils.spec +++ b/cross-ia64-binutils.spec @@ -237,8 +237,11 @@ rm -f ld/ldgram.c ld/ldgram.h # The 2.37 released tarball contains wrongly pre-generated (empty) man pages # so we remove those here as well. Consider removing for later releases. -rm -rf binutils/doc/*.1 -rm -rf binutils/doc/cxxfilt.man +rm -f binutils/doc/*.1 +rm -f binutils/doc/cxxfilt.man +rm -f gprof/*.1 +rm -f gas/doc/*.1 +rm -f ld/*.1 %build %define _lto_cflags %{nil} diff --git a/cross-m68k-binutils.spec b/cross-m68k-binutils.spec index 0d2365e..a2a6b0b 100644 --- a/cross-m68k-binutils.spec +++ b/cross-m68k-binutils.spec @@ -237,8 +237,11 @@ rm -f ld/ldgram.c ld/ldgram.h # The 2.37 released tarball contains wrongly pre-generated (empty) man pages # so we remove those here as well. Consider removing for later releases. -rm -rf binutils/doc/*.1 -rm -rf binutils/doc/cxxfilt.man +rm -f binutils/doc/*.1 +rm -f binutils/doc/cxxfilt.man +rm -f gprof/*.1 +rm -f gas/doc/*.1 +rm -f ld/*.1 %build %define _lto_cflags %{nil} diff --git a/cross-mips-binutils.spec b/cross-mips-binutils.spec index 4836a90..7234a75 100644 --- a/cross-mips-binutils.spec +++ b/cross-mips-binutils.spec @@ -237,8 +237,11 @@ rm -f ld/ldgram.c ld/ldgram.h # The 2.37 released tarball contains wrongly pre-generated (empty) man pages # so we remove those here as well. Consider removing for later releases. -rm -rf binutils/doc/*.1 -rm -rf binutils/doc/cxxfilt.man +rm -f binutils/doc/*.1 +rm -f binutils/doc/cxxfilt.man +rm -f gprof/*.1 +rm -f gas/doc/*.1 +rm -f ld/*.1 %build %define _lto_cflags %{nil} diff --git a/cross-ppc-binutils.spec b/cross-ppc-binutils.spec index ee5910d..d83a78e 100644 --- a/cross-ppc-binutils.spec +++ b/cross-ppc-binutils.spec @@ -237,8 +237,11 @@ rm -f ld/ldgram.c ld/ldgram.h # The 2.37 released tarball contains wrongly pre-generated (empty) man pages # so we remove those here as well. Consider removing for later releases. -rm -rf binutils/doc/*.1 -rm -rf binutils/doc/cxxfilt.man +rm -f binutils/doc/*.1 +rm -f binutils/doc/cxxfilt.man +rm -f gprof/*.1 +rm -f gas/doc/*.1 +rm -f ld/*.1 %build %define _lto_cflags %{nil} diff --git a/cross-ppc64-binutils.spec b/cross-ppc64-binutils.spec index 14df4b2..b831191 100644 --- a/cross-ppc64-binutils.spec +++ b/cross-ppc64-binutils.spec @@ -237,8 +237,11 @@ rm -f ld/ldgram.c ld/ldgram.h # The 2.37 released tarball contains wrongly pre-generated (empty) man pages # so we remove those here as well. Consider removing for later releases. -rm -rf binutils/doc/*.1 -rm -rf binutils/doc/cxxfilt.man +rm -f binutils/doc/*.1 +rm -f binutils/doc/cxxfilt.man +rm -f gprof/*.1 +rm -f gas/doc/*.1 +rm -f ld/*.1 %build %define _lto_cflags %{nil} diff --git a/cross-ppc64le-binutils.spec b/cross-ppc64le-binutils.spec index 353d50b..607c224 100644 --- a/cross-ppc64le-binutils.spec +++ b/cross-ppc64le-binutils.spec @@ -237,8 +237,11 @@ rm -f ld/ldgram.c ld/ldgram.h # The 2.37 released tarball contains wrongly pre-generated (empty) man pages # so we remove those here as well. Consider removing for later releases. -rm -rf binutils/doc/*.1 -rm -rf binutils/doc/cxxfilt.man +rm -f binutils/doc/*.1 +rm -f binutils/doc/cxxfilt.man +rm -f gprof/*.1 +rm -f gas/doc/*.1 +rm -f ld/*.1 %build %define _lto_cflags %{nil} diff --git a/cross-riscv64-binutils.spec b/cross-riscv64-binutils.spec index 5caaf2a..9d31a1b 100644 --- a/cross-riscv64-binutils.spec +++ b/cross-riscv64-binutils.spec @@ -237,8 +237,11 @@ rm -f ld/ldgram.c ld/ldgram.h # The 2.37 released tarball contains wrongly pre-generated (empty) man pages # so we remove those here as well. Consider removing for later releases. -rm -rf binutils/doc/*.1 -rm -rf binutils/doc/cxxfilt.man +rm -f binutils/doc/*.1 +rm -f binutils/doc/cxxfilt.man +rm -f gprof/*.1 +rm -f gas/doc/*.1 +rm -f ld/*.1 %build %define _lto_cflags %{nil} diff --git a/cross-rx-binutils.spec b/cross-rx-binutils.spec index 89e0ac9..0b05f19 100644 --- a/cross-rx-binutils.spec +++ b/cross-rx-binutils.spec @@ -237,8 +237,11 @@ rm -f ld/ldgram.c ld/ldgram.h # The 2.37 released tarball contains wrongly pre-generated (empty) man pages # so we remove those here as well. Consider removing for later releases. -rm -rf binutils/doc/*.1 -rm -rf binutils/doc/cxxfilt.man +rm -f binutils/doc/*.1 +rm -f binutils/doc/cxxfilt.man +rm -f gprof/*.1 +rm -f gas/doc/*.1 +rm -f ld/*.1 %build %define _lto_cflags %{nil} diff --git a/cross-s390-binutils.spec b/cross-s390-binutils.spec index 3428e2b..1c23a2c 100644 --- a/cross-s390-binutils.spec +++ b/cross-s390-binutils.spec @@ -237,8 +237,11 @@ rm -f ld/ldgram.c ld/ldgram.h # The 2.37 released tarball contains wrongly pre-generated (empty) man pages # so we remove those here as well. Consider removing for later releases. -rm -rf binutils/doc/*.1 -rm -rf binutils/doc/cxxfilt.man +rm -f binutils/doc/*.1 +rm -f binutils/doc/cxxfilt.man +rm -f gprof/*.1 +rm -f gas/doc/*.1 +rm -f ld/*.1 %build %define _lto_cflags %{nil} diff --git a/cross-s390x-binutils.spec b/cross-s390x-binutils.spec index f32b198..523cca5 100644 --- a/cross-s390x-binutils.spec +++ b/cross-s390x-binutils.spec @@ -237,8 +237,11 @@ rm -f ld/ldgram.c ld/ldgram.h # The 2.37 released tarball contains wrongly pre-generated (empty) man pages # so we remove those here as well. Consider removing for later releases. -rm -rf binutils/doc/*.1 -rm -rf binutils/doc/cxxfilt.man +rm -f binutils/doc/*.1 +rm -f binutils/doc/cxxfilt.man +rm -f gprof/*.1 +rm -f gas/doc/*.1 +rm -f ld/*.1 %build %define _lto_cflags %{nil} diff --git a/cross-sparc-binutils.spec b/cross-sparc-binutils.spec index 9de51e4..a50bc30 100644 --- a/cross-sparc-binutils.spec +++ b/cross-sparc-binutils.spec @@ -237,8 +237,11 @@ rm -f ld/ldgram.c ld/ldgram.h # The 2.37 released tarball contains wrongly pre-generated (empty) man pages # so we remove those here as well. Consider removing for later releases. -rm -rf binutils/doc/*.1 -rm -rf binutils/doc/cxxfilt.man +rm -f binutils/doc/*.1 +rm -f binutils/doc/cxxfilt.man +rm -f gprof/*.1 +rm -f gas/doc/*.1 +rm -f ld/*.1 %build %define _lto_cflags %{nil} diff --git a/cross-sparc64-binutils.spec b/cross-sparc64-binutils.spec index c0784ea..2c8f725 100644 --- a/cross-sparc64-binutils.spec +++ b/cross-sparc64-binutils.spec @@ -237,8 +237,11 @@ rm -f ld/ldgram.c ld/ldgram.h # The 2.37 released tarball contains wrongly pre-generated (empty) man pages # so we remove those here as well. Consider removing for later releases. -rm -rf binutils/doc/*.1 -rm -rf binutils/doc/cxxfilt.man +rm -f binutils/doc/*.1 +rm -f binutils/doc/cxxfilt.man +rm -f gprof/*.1 +rm -f gas/doc/*.1 +rm -f ld/*.1 %build %define _lto_cflags %{nil} diff --git a/cross-spu-binutils.spec b/cross-spu-binutils.spec index aedff1b..fc6287b 100644 --- a/cross-spu-binutils.spec +++ b/cross-spu-binutils.spec @@ -237,8 +237,11 @@ rm -f ld/ldgram.c ld/ldgram.h # The 2.37 released tarball contains wrongly pre-generated (empty) man pages # so we remove those here as well. Consider removing for later releases. -rm -rf binutils/doc/*.1 -rm -rf binutils/doc/cxxfilt.man +rm -f binutils/doc/*.1 +rm -f binutils/doc/cxxfilt.man +rm -f gprof/*.1 +rm -f gas/doc/*.1 +rm -f ld/*.1 %build %define _lto_cflags %{nil} diff --git a/cross-x86_64-binutils.spec b/cross-x86_64-binutils.spec index 033c824..56907d1 100644 --- a/cross-x86_64-binutils.spec +++ b/cross-x86_64-binutils.spec @@ -237,8 +237,11 @@ rm -f ld/ldgram.c ld/ldgram.h # The 2.37 released tarball contains wrongly pre-generated (empty) man pages # so we remove those here as well. Consider removing for later releases. -rm -rf binutils/doc/*.1 -rm -rf binutils/doc/cxxfilt.man +rm -f binutils/doc/*.1 +rm -f binutils/doc/cxxfilt.man +rm -f gprof/*.1 +rm -f gas/doc/*.1 +rm -f ld/*.1 %build %define _lto_cflags %{nil} diff --git a/cross-xtensa-binutils.spec b/cross-xtensa-binutils.spec index 5010b6e..f782c39 100644 --- a/cross-xtensa-binutils.spec +++ b/cross-xtensa-binutils.spec @@ -237,8 +237,11 @@ rm -f ld/ldgram.c ld/ldgram.h # The 2.37 released tarball contains wrongly pre-generated (empty) man pages # so we remove those here as well. Consider removing for later releases. -rm -rf binutils/doc/*.1 -rm -rf binutils/doc/cxxfilt.man +rm -f binutils/doc/*.1 +rm -f binutils/doc/cxxfilt.man +rm -f gprof/*.1 +rm -f gas/doc/*.1 +rm -f ld/*.1 %build %define _lto_cflags %{nil} From f3f5f006783811134986bf22d6aa7621afa6716c1cb0adfccaed8bb2debc915d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Li=C5=A1ka?= Date: Wed, 3 Nov 2021 10:01:49 +0000 Subject: [PATCH 12/12] Accepting request 928960 from home:marxin:branches:devel:gcc - Rebase binutils-2.37-branch.diff: fixes PR28523 aka boo#1188941. OBS-URL: https://build.opensuse.org/request/show/928960 OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=378 --- binutils-2.37-branch.diff.gz | 4 ++-- binutils.changes | 5 +++++ cross-aarch64-binutils.changes | 5 +++++ cross-arm-binutils.changes | 5 +++++ cross-avr-binutils.changes | 5 +++++ cross-epiphany-binutils.changes | 5 +++++ cross-hppa-binutils.changes | 5 +++++ cross-hppa64-binutils.changes | 5 +++++ cross-i386-binutils.changes | 5 +++++ cross-ia64-binutils.changes | 5 +++++ cross-m68k-binutils.changes | 5 +++++ cross-mips-binutils.changes | 5 +++++ cross-ppc-binutils.changes | 5 +++++ cross-ppc64-binutils.changes | 5 +++++ cross-ppc64le-binutils.changes | 5 +++++ cross-riscv64-binutils.changes | 5 +++++ cross-rx-binutils.changes | 5 +++++ cross-s390-binutils.changes | 5 +++++ cross-s390x-binutils.changes | 5 +++++ cross-sparc-binutils.changes | 5 +++++ cross-sparc64-binutils.changes | 5 +++++ cross-spu-binutils.changes | 5 +++++ cross-x86_64-binutils.changes | 5 +++++ cross-xtensa-binutils.changes | 5 +++++ 24 files changed, 117 insertions(+), 2 deletions(-) diff --git a/binutils-2.37-branch.diff.gz b/binutils-2.37-branch.diff.gz index 2fe5fe0..ec92ad7 100644 --- a/binutils-2.37-branch.diff.gz +++ b/binutils-2.37-branch.diff.gz @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:11020a58c45a40dda209a8b12f70415f60409311f3de1072de704b152e9d0825 -size 100802 +oid sha256:a180feaacc91632c8418ec9c460309a213ad23f8ed5f08387421759fef042c42 +size 110663 diff --git a/binutils.changes b/binutils.changes index bae1c75..ea36a88 100644 --- a/binutils.changes +++ b/binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Nov 3 08:23:52 UTC 2021 - Martin Liška + +- Rebase binutils-2.37-branch.diff: fixes PR28523 aka boo#1188941. + ------------------------------------------------------------------- Tue Nov 2 15:57:53 UTC 2021 - Michael Matz diff --git a/cross-aarch64-binutils.changes b/cross-aarch64-binutils.changes index bae1c75..ea36a88 100644 --- a/cross-aarch64-binutils.changes +++ b/cross-aarch64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Nov 3 08:23:52 UTC 2021 - Martin Liška + +- Rebase binutils-2.37-branch.diff: fixes PR28523 aka boo#1188941. + ------------------------------------------------------------------- Tue Nov 2 15:57:53 UTC 2021 - Michael Matz diff --git a/cross-arm-binutils.changes b/cross-arm-binutils.changes index bae1c75..ea36a88 100644 --- a/cross-arm-binutils.changes +++ b/cross-arm-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Nov 3 08:23:52 UTC 2021 - Martin Liška + +- Rebase binutils-2.37-branch.diff: fixes PR28523 aka boo#1188941. + ------------------------------------------------------------------- Tue Nov 2 15:57:53 UTC 2021 - Michael Matz diff --git a/cross-avr-binutils.changes b/cross-avr-binutils.changes index bae1c75..ea36a88 100644 --- a/cross-avr-binutils.changes +++ b/cross-avr-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Nov 3 08:23:52 UTC 2021 - Martin Liška + +- Rebase binutils-2.37-branch.diff: fixes PR28523 aka boo#1188941. + ------------------------------------------------------------------- Tue Nov 2 15:57:53 UTC 2021 - Michael Matz diff --git a/cross-epiphany-binutils.changes b/cross-epiphany-binutils.changes index bae1c75..ea36a88 100644 --- a/cross-epiphany-binutils.changes +++ b/cross-epiphany-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Nov 3 08:23:52 UTC 2021 - Martin Liška + +- Rebase binutils-2.37-branch.diff: fixes PR28523 aka boo#1188941. + ------------------------------------------------------------------- Tue Nov 2 15:57:53 UTC 2021 - Michael Matz diff --git a/cross-hppa-binutils.changes b/cross-hppa-binutils.changes index bae1c75..ea36a88 100644 --- a/cross-hppa-binutils.changes +++ b/cross-hppa-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Nov 3 08:23:52 UTC 2021 - Martin Liška + +- Rebase binutils-2.37-branch.diff: fixes PR28523 aka boo#1188941. + ------------------------------------------------------------------- Tue Nov 2 15:57:53 UTC 2021 - Michael Matz diff --git a/cross-hppa64-binutils.changes b/cross-hppa64-binutils.changes index bae1c75..ea36a88 100644 --- a/cross-hppa64-binutils.changes +++ b/cross-hppa64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Nov 3 08:23:52 UTC 2021 - Martin Liška + +- Rebase binutils-2.37-branch.diff: fixes PR28523 aka boo#1188941. + ------------------------------------------------------------------- Tue Nov 2 15:57:53 UTC 2021 - Michael Matz diff --git a/cross-i386-binutils.changes b/cross-i386-binutils.changes index bae1c75..ea36a88 100644 --- a/cross-i386-binutils.changes +++ b/cross-i386-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Nov 3 08:23:52 UTC 2021 - Martin Liška + +- Rebase binutils-2.37-branch.diff: fixes PR28523 aka boo#1188941. + ------------------------------------------------------------------- Tue Nov 2 15:57:53 UTC 2021 - Michael Matz diff --git a/cross-ia64-binutils.changes b/cross-ia64-binutils.changes index bae1c75..ea36a88 100644 --- a/cross-ia64-binutils.changes +++ b/cross-ia64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Nov 3 08:23:52 UTC 2021 - Martin Liška + +- Rebase binutils-2.37-branch.diff: fixes PR28523 aka boo#1188941. + ------------------------------------------------------------------- Tue Nov 2 15:57:53 UTC 2021 - Michael Matz diff --git a/cross-m68k-binutils.changes b/cross-m68k-binutils.changes index bae1c75..ea36a88 100644 --- a/cross-m68k-binutils.changes +++ b/cross-m68k-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Nov 3 08:23:52 UTC 2021 - Martin Liška + +- Rebase binutils-2.37-branch.diff: fixes PR28523 aka boo#1188941. + ------------------------------------------------------------------- Tue Nov 2 15:57:53 UTC 2021 - Michael Matz diff --git a/cross-mips-binutils.changes b/cross-mips-binutils.changes index bae1c75..ea36a88 100644 --- a/cross-mips-binutils.changes +++ b/cross-mips-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Nov 3 08:23:52 UTC 2021 - Martin Liška + +- Rebase binutils-2.37-branch.diff: fixes PR28523 aka boo#1188941. + ------------------------------------------------------------------- Tue Nov 2 15:57:53 UTC 2021 - Michael Matz diff --git a/cross-ppc-binutils.changes b/cross-ppc-binutils.changes index bae1c75..ea36a88 100644 --- a/cross-ppc-binutils.changes +++ b/cross-ppc-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Nov 3 08:23:52 UTC 2021 - Martin Liška + +- Rebase binutils-2.37-branch.diff: fixes PR28523 aka boo#1188941. + ------------------------------------------------------------------- Tue Nov 2 15:57:53 UTC 2021 - Michael Matz diff --git a/cross-ppc64-binutils.changes b/cross-ppc64-binutils.changes index bae1c75..ea36a88 100644 --- a/cross-ppc64-binutils.changes +++ b/cross-ppc64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Nov 3 08:23:52 UTC 2021 - Martin Liška + +- Rebase binutils-2.37-branch.diff: fixes PR28523 aka boo#1188941. + ------------------------------------------------------------------- Tue Nov 2 15:57:53 UTC 2021 - Michael Matz diff --git a/cross-ppc64le-binutils.changes b/cross-ppc64le-binutils.changes index bae1c75..ea36a88 100644 --- a/cross-ppc64le-binutils.changes +++ b/cross-ppc64le-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Nov 3 08:23:52 UTC 2021 - Martin Liška + +- Rebase binutils-2.37-branch.diff: fixes PR28523 aka boo#1188941. + ------------------------------------------------------------------- Tue Nov 2 15:57:53 UTC 2021 - Michael Matz diff --git a/cross-riscv64-binutils.changes b/cross-riscv64-binutils.changes index bae1c75..ea36a88 100644 --- a/cross-riscv64-binutils.changes +++ b/cross-riscv64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Nov 3 08:23:52 UTC 2021 - Martin Liška + +- Rebase binutils-2.37-branch.diff: fixes PR28523 aka boo#1188941. + ------------------------------------------------------------------- Tue Nov 2 15:57:53 UTC 2021 - Michael Matz diff --git a/cross-rx-binutils.changes b/cross-rx-binutils.changes index bae1c75..ea36a88 100644 --- a/cross-rx-binutils.changes +++ b/cross-rx-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Nov 3 08:23:52 UTC 2021 - Martin Liška + +- Rebase binutils-2.37-branch.diff: fixes PR28523 aka boo#1188941. + ------------------------------------------------------------------- Tue Nov 2 15:57:53 UTC 2021 - Michael Matz diff --git a/cross-s390-binutils.changes b/cross-s390-binutils.changes index bae1c75..ea36a88 100644 --- a/cross-s390-binutils.changes +++ b/cross-s390-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Nov 3 08:23:52 UTC 2021 - Martin Liška + +- Rebase binutils-2.37-branch.diff: fixes PR28523 aka boo#1188941. + ------------------------------------------------------------------- Tue Nov 2 15:57:53 UTC 2021 - Michael Matz diff --git a/cross-s390x-binutils.changes b/cross-s390x-binutils.changes index bae1c75..ea36a88 100644 --- a/cross-s390x-binutils.changes +++ b/cross-s390x-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Nov 3 08:23:52 UTC 2021 - Martin Liška + +- Rebase binutils-2.37-branch.diff: fixes PR28523 aka boo#1188941. + ------------------------------------------------------------------- Tue Nov 2 15:57:53 UTC 2021 - Michael Matz diff --git a/cross-sparc-binutils.changes b/cross-sparc-binutils.changes index bae1c75..ea36a88 100644 --- a/cross-sparc-binutils.changes +++ b/cross-sparc-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Nov 3 08:23:52 UTC 2021 - Martin Liška + +- Rebase binutils-2.37-branch.diff: fixes PR28523 aka boo#1188941. + ------------------------------------------------------------------- Tue Nov 2 15:57:53 UTC 2021 - Michael Matz diff --git a/cross-sparc64-binutils.changes b/cross-sparc64-binutils.changes index bae1c75..ea36a88 100644 --- a/cross-sparc64-binutils.changes +++ b/cross-sparc64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Nov 3 08:23:52 UTC 2021 - Martin Liška + +- Rebase binutils-2.37-branch.diff: fixes PR28523 aka boo#1188941. + ------------------------------------------------------------------- Tue Nov 2 15:57:53 UTC 2021 - Michael Matz diff --git a/cross-spu-binutils.changes b/cross-spu-binutils.changes index bae1c75..ea36a88 100644 --- a/cross-spu-binutils.changes +++ b/cross-spu-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Nov 3 08:23:52 UTC 2021 - Martin Liška + +- Rebase binutils-2.37-branch.diff: fixes PR28523 aka boo#1188941. + ------------------------------------------------------------------- Tue Nov 2 15:57:53 UTC 2021 - Michael Matz diff --git a/cross-x86_64-binutils.changes b/cross-x86_64-binutils.changes index bae1c75..ea36a88 100644 --- a/cross-x86_64-binutils.changes +++ b/cross-x86_64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Nov 3 08:23:52 UTC 2021 - Martin Liška + +- Rebase binutils-2.37-branch.diff: fixes PR28523 aka boo#1188941. + ------------------------------------------------------------------- Tue Nov 2 15:57:53 UTC 2021 - Michael Matz diff --git a/cross-xtensa-binutils.changes b/cross-xtensa-binutils.changes index bae1c75..ea36a88 100644 --- a/cross-xtensa-binutils.changes +++ b/cross-xtensa-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Nov 3 08:23:52 UTC 2021 - Martin Liška + +- Rebase binutils-2.37-branch.diff: fixes PR28523 aka boo#1188941. + ------------------------------------------------------------------- Tue Nov 2 15:57:53 UTC 2021 - Michael Matz