forked from pool/binutils
- Add binutils-fix-relax.diff to fix linking relaxation problems
with old object files hitting some enterprise software. [bsc#1179341] OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=350
This commit is contained in:
parent
a0ed9a9ba6
commit
1ab33b497b
20
binutils-fix-relax.diff
Normal file
20
binutils-fix-relax.diff
Normal file
@ -0,0 +1,20 @@
|
||||
Fix for bsc#1179341
|
||||
|
||||
the movload->movconst relaxation can be done only with REX
|
||||
rewriting, and hence needs a GOTPCRELX relocation. With old object
|
||||
files we might still see GOTPCREL relocs, even with REX bytes available.
|
||||
We still can't do such rewriting and hence need to stay with the old
|
||||
rewriting into a lea.
|
||||
diff --git a/bfd/elf64-x86-64.c b/bfd/elf64-x86-64.c
|
||||
index 549a8be6a6..b89b0023db 100644
|
||||
--- a/bfd/elf64-x86-64.c
|
||||
+++ b/bfd/elf64-x86-64.c
|
||||
@@ -1731,7 +1731,7 @@ elf_x86_64_convert_load_reloc (bfd *abfd,
|
||||
|
||||
if (opcode == 0x8b)
|
||||
{
|
||||
- if (abs_symbol && local_ref)
|
||||
+ if (abs_symbol && local_ref && rex)
|
||||
to_reloc_pc32 = FALSE;
|
||||
|
||||
if (to_reloc_pc32)
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 4 14:52:54 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
- Add binutils-fix-relax.diff to fix linking relaxation problems
|
||||
with old object files hitting some enterprise software. [bsc#1179341]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 23 13:58:56 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
|
@ -98,6 +98,7 @@ Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch39: binutils-revert-nm-symversion.diff
|
||||
Patch40: binutils-fix-abierrormsg.diff
|
||||
Patch41: binutils-fix-relax.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
@ -189,6 +190,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch38
|
||||
%patch39 -p1
|
||||
%patch40 -p1
|
||||
%patch41 -p1
|
||||
%patch100 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 4 14:52:54 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
- Add binutils-fix-relax.diff to fix linking relaxation problems
|
||||
with old object files hitting some enterprise software. [bsc#1179341]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 23 13:58:56 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
|
@ -101,6 +101,7 @@ Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch39: binutils-revert-nm-symversion.diff
|
||||
Patch40: binutils-fix-abierrormsg.diff
|
||||
Patch41: binutils-fix-relax.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
@ -192,6 +193,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch38
|
||||
%patch39 -p1
|
||||
%patch40 -p1
|
||||
%patch41 -p1
|
||||
%patch100 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 4 14:52:54 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
- Add binutils-fix-relax.diff to fix linking relaxation problems
|
||||
with old object files hitting some enterprise software. [bsc#1179341]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 23 13:58:56 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
|
@ -101,6 +101,7 @@ Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch39: binutils-revert-nm-symversion.diff
|
||||
Patch40: binutils-fix-abierrormsg.diff
|
||||
Patch41: binutils-fix-relax.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
@ -192,6 +193,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch38
|
||||
%patch39 -p1
|
||||
%patch40 -p1
|
||||
%patch41 -p1
|
||||
%patch100 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 4 14:52:54 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
- Add binutils-fix-relax.diff to fix linking relaxation problems
|
||||
with old object files hitting some enterprise software. [bsc#1179341]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 23 13:58:56 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
|
@ -101,6 +101,7 @@ Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch39: binutils-revert-nm-symversion.diff
|
||||
Patch40: binutils-fix-abierrormsg.diff
|
||||
Patch41: binutils-fix-relax.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
@ -192,6 +193,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch38
|
||||
%patch39 -p1
|
||||
%patch40 -p1
|
||||
%patch41 -p1
|
||||
%patch100 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 4 14:52:54 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
- Add binutils-fix-relax.diff to fix linking relaxation problems
|
||||
with old object files hitting some enterprise software. [bsc#1179341]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 23 13:58:56 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
|
@ -101,6 +101,7 @@ Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch39: binutils-revert-nm-symversion.diff
|
||||
Patch40: binutils-fix-abierrormsg.diff
|
||||
Patch41: binutils-fix-relax.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
@ -192,6 +193,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch38
|
||||
%patch39 -p1
|
||||
%patch40 -p1
|
||||
%patch41 -p1
|
||||
%patch100 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 4 14:52:54 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
- Add binutils-fix-relax.diff to fix linking relaxation problems
|
||||
with old object files hitting some enterprise software. [bsc#1179341]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 23 13:58:56 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
|
@ -101,6 +101,7 @@ Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch39: binutils-revert-nm-symversion.diff
|
||||
Patch40: binutils-fix-abierrormsg.diff
|
||||
Patch41: binutils-fix-relax.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
@ -192,6 +193,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch38
|
||||
%patch39 -p1
|
||||
%patch40 -p1
|
||||
%patch41 -p1
|
||||
%patch100 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 4 14:52:54 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
- Add binutils-fix-relax.diff to fix linking relaxation problems
|
||||
with old object files hitting some enterprise software. [bsc#1179341]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 23 13:58:56 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
|
@ -101,6 +101,7 @@ Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch39: binutils-revert-nm-symversion.diff
|
||||
Patch40: binutils-fix-abierrormsg.diff
|
||||
Patch41: binutils-fix-relax.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
@ -192,6 +193,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch38
|
||||
%patch39 -p1
|
||||
%patch40 -p1
|
||||
%patch41 -p1
|
||||
%patch100 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 4 14:52:54 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
- Add binutils-fix-relax.diff to fix linking relaxation problems
|
||||
with old object files hitting some enterprise software. [bsc#1179341]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 23 13:58:56 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
|
@ -101,6 +101,7 @@ Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch39: binutils-revert-nm-symversion.diff
|
||||
Patch40: binutils-fix-abierrormsg.diff
|
||||
Patch41: binutils-fix-relax.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
@ -192,6 +193,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch38
|
||||
%patch39 -p1
|
||||
%patch40 -p1
|
||||
%patch41 -p1
|
||||
%patch100 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 4 14:52:54 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
- Add binutils-fix-relax.diff to fix linking relaxation problems
|
||||
with old object files hitting some enterprise software. [bsc#1179341]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 23 13:58:56 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
|
@ -101,6 +101,7 @@ Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch39: binutils-revert-nm-symversion.diff
|
||||
Patch40: binutils-fix-abierrormsg.diff
|
||||
Patch41: binutils-fix-relax.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
@ -192,6 +193,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch38
|
||||
%patch39 -p1
|
||||
%patch40 -p1
|
||||
%patch41 -p1
|
||||
%patch100 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 4 14:52:54 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
- Add binutils-fix-relax.diff to fix linking relaxation problems
|
||||
with old object files hitting some enterprise software. [bsc#1179341]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 23 13:58:56 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
|
@ -101,6 +101,7 @@ Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch39: binutils-revert-nm-symversion.diff
|
||||
Patch40: binutils-fix-abierrormsg.diff
|
||||
Patch41: binutils-fix-relax.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
@ -192,6 +193,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch38
|
||||
%patch39 -p1
|
||||
%patch40 -p1
|
||||
%patch41 -p1
|
||||
%patch100 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 4 14:52:54 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
- Add binutils-fix-relax.diff to fix linking relaxation problems
|
||||
with old object files hitting some enterprise software. [bsc#1179341]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 23 13:58:56 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
|
@ -101,6 +101,7 @@ Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch39: binutils-revert-nm-symversion.diff
|
||||
Patch40: binutils-fix-abierrormsg.diff
|
||||
Patch41: binutils-fix-relax.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
@ -192,6 +193,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch38
|
||||
%patch39 -p1
|
||||
%patch40 -p1
|
||||
%patch41 -p1
|
||||
%patch100 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 4 14:52:54 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
- Add binutils-fix-relax.diff to fix linking relaxation problems
|
||||
with old object files hitting some enterprise software. [bsc#1179341]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 23 13:58:56 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
|
@ -101,6 +101,7 @@ Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch39: binutils-revert-nm-symversion.diff
|
||||
Patch40: binutils-fix-abierrormsg.diff
|
||||
Patch41: binutils-fix-relax.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
@ -192,6 +193,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch38
|
||||
%patch39 -p1
|
||||
%patch40 -p1
|
||||
%patch41 -p1
|
||||
%patch100 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 4 14:52:54 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
- Add binutils-fix-relax.diff to fix linking relaxation problems
|
||||
with old object files hitting some enterprise software. [bsc#1179341]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 23 13:58:56 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
|
@ -101,6 +101,7 @@ Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch39: binutils-revert-nm-symversion.diff
|
||||
Patch40: binutils-fix-abierrormsg.diff
|
||||
Patch41: binutils-fix-relax.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
@ -192,6 +193,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch38
|
||||
%patch39 -p1
|
||||
%patch40 -p1
|
||||
%patch41 -p1
|
||||
%patch100 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 4 14:52:54 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
- Add binutils-fix-relax.diff to fix linking relaxation problems
|
||||
with old object files hitting some enterprise software. [bsc#1179341]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 23 13:58:56 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
|
@ -101,6 +101,7 @@ Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch39: binutils-revert-nm-symversion.diff
|
||||
Patch40: binutils-fix-abierrormsg.diff
|
||||
Patch41: binutils-fix-relax.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
@ -192,6 +193,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch38
|
||||
%patch39 -p1
|
||||
%patch40 -p1
|
||||
%patch41 -p1
|
||||
%patch100 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 4 14:52:54 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
- Add binutils-fix-relax.diff to fix linking relaxation problems
|
||||
with old object files hitting some enterprise software. [bsc#1179341]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 23 13:58:56 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
|
@ -101,6 +101,7 @@ Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch39: binutils-revert-nm-symversion.diff
|
||||
Patch40: binutils-fix-abierrormsg.diff
|
||||
Patch41: binutils-fix-relax.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
@ -192,6 +193,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch38
|
||||
%patch39 -p1
|
||||
%patch40 -p1
|
||||
%patch41 -p1
|
||||
%patch100 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 4 14:52:54 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
- Add binutils-fix-relax.diff to fix linking relaxation problems
|
||||
with old object files hitting some enterprise software. [bsc#1179341]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 23 13:58:56 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
|
@ -101,6 +101,7 @@ Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch39: binutils-revert-nm-symversion.diff
|
||||
Patch40: binutils-fix-abierrormsg.diff
|
||||
Patch41: binutils-fix-relax.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
@ -192,6 +193,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch38
|
||||
%patch39 -p1
|
||||
%patch40 -p1
|
||||
%patch41 -p1
|
||||
%patch100 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 4 14:52:54 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
- Add binutils-fix-relax.diff to fix linking relaxation problems
|
||||
with old object files hitting some enterprise software. [bsc#1179341]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 23 13:58:56 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
|
@ -101,6 +101,7 @@ Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch39: binutils-revert-nm-symversion.diff
|
||||
Patch40: binutils-fix-abierrormsg.diff
|
||||
Patch41: binutils-fix-relax.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
@ -192,6 +193,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch38
|
||||
%patch39 -p1
|
||||
%patch40 -p1
|
||||
%patch41 -p1
|
||||
%patch100 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 4 14:52:54 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
- Add binutils-fix-relax.diff to fix linking relaxation problems
|
||||
with old object files hitting some enterprise software. [bsc#1179341]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 23 13:58:56 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
|
@ -101,6 +101,7 @@ Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch39: binutils-revert-nm-symversion.diff
|
||||
Patch40: binutils-fix-abierrormsg.diff
|
||||
Patch41: binutils-fix-relax.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
@ -192,6 +193,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch38
|
||||
%patch39 -p1
|
||||
%patch40 -p1
|
||||
%patch41 -p1
|
||||
%patch100 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 4 14:52:54 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
- Add binutils-fix-relax.diff to fix linking relaxation problems
|
||||
with old object files hitting some enterprise software. [bsc#1179341]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 23 13:58:56 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
|
@ -101,6 +101,7 @@ Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch39: binutils-revert-nm-symversion.diff
|
||||
Patch40: binutils-fix-abierrormsg.diff
|
||||
Patch41: binutils-fix-relax.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
@ -192,6 +193,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch38
|
||||
%patch39 -p1
|
||||
%patch40 -p1
|
||||
%patch41 -p1
|
||||
%patch100 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 4 14:52:54 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
- Add binutils-fix-relax.diff to fix linking relaxation problems
|
||||
with old object files hitting some enterprise software. [bsc#1179341]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 23 13:58:56 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
|
@ -101,6 +101,7 @@ Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch39: binutils-revert-nm-symversion.diff
|
||||
Patch40: binutils-fix-abierrormsg.diff
|
||||
Patch41: binutils-fix-relax.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
@ -192,6 +193,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch38
|
||||
%patch39 -p1
|
||||
%patch40 -p1
|
||||
%patch41 -p1
|
||||
%patch100 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 4 14:52:54 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
- Add binutils-fix-relax.diff to fix linking relaxation problems
|
||||
with old object files hitting some enterprise software. [bsc#1179341]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 23 13:58:56 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
|
@ -101,6 +101,7 @@ Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch39: binutils-revert-nm-symversion.diff
|
||||
Patch40: binutils-fix-abierrormsg.diff
|
||||
Patch41: binutils-fix-relax.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
@ -192,6 +193,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch38
|
||||
%patch39 -p1
|
||||
%patch40 -p1
|
||||
%patch41 -p1
|
||||
%patch100 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 4 14:52:54 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
- Add binutils-fix-relax.diff to fix linking relaxation problems
|
||||
with old object files hitting some enterprise software. [bsc#1179341]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 23 13:58:56 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
|
@ -101,6 +101,7 @@ Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch39: binutils-revert-nm-symversion.diff
|
||||
Patch40: binutils-fix-abierrormsg.diff
|
||||
Patch41: binutils-fix-relax.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
@ -192,6 +193,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch38
|
||||
%patch39 -p1
|
||||
%patch40 -p1
|
||||
%patch41 -p1
|
||||
%patch100 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 4 14:52:54 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
- Add binutils-fix-relax.diff to fix linking relaxation problems
|
||||
with old object files hitting some enterprise software. [bsc#1179341]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 23 13:58:56 UTC 2020 - Michael Matz <matz@suse.com>
|
||||
|
||||
|
@ -101,6 +101,7 @@ Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch39: binutils-revert-nm-symversion.diff
|
||||
Patch40: binutils-fix-abierrormsg.diff
|
||||
Patch41: binutils-fix-relax.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
@ -192,6 +193,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch38
|
||||
%patch39 -p1
|
||||
%patch40 -p1
|
||||
%patch41 -p1
|
||||
%patch100 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
|
Loading…
Reference in New Issue
Block a user