forked from pool/binutils
- Add binutils-pr22868.diff to fix testsuite fails in LLVM.
OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=266
This commit is contained in:
parent
809215cb87
commit
beaa2c0c2e
20
binutils-pr22868.diff
Normal file
20
binutils-pr22868.diff
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
Fixes two testsuite fails in the gold plugin tests of LLVM.
|
||||||
|
Aka binutils/PR22868
|
||||||
|
Index: binutils-2.30/gold/resolve.cc
|
||||||
|
===================================================================
|
||||||
|
--- binutils-2.30.orig/gold/resolve.cc 2018-01-13 14:31:16.000000000 +0100
|
||||||
|
+++ binutils-2.30/gold/resolve.cc 2018-03-06 16:58:42.000000000 +0100
|
||||||
|
@@ -265,10 +265,13 @@ Symbol_table::resolve(Sized_symbol<size>
|
||||||
|
return;
|
||||||
|
|
||||||
|
// Likewise for an absolute symbol defined twice with the same value.
|
||||||
|
+ // plugin-symbols are always absolute with same value here, so ignore those
|
||||||
|
if (!is_ordinary
|
||||||
|
&& st_shndx == elfcpp::SHN_ABS
|
||||||
|
&& !to_is_ordinary
|
||||||
|
&& to_shndx == elfcpp::SHN_ABS
|
||||||
|
+ && object->pluginobj() == NULL
|
||||||
|
+ && to->object()->pluginobj() == NULL
|
||||||
|
&& to->value() == sym.get_st_value())
|
||||||
|
return;
|
||||||
|
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 6 16:01:24 UTC 2018 - matz@suse.com
|
||||||
|
|
||||||
|
- Add binutils-pr22868.diff to fix testsuite fails in LLVM.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -93,6 +93,7 @@ Patch18: gold-depend-on-opcodes.diff
|
|||||||
Patch22: binutils-bfd_h.patch
|
Patch22: binutils-bfd_h.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: riscv-wrap-relax.patch
|
Patch35: riscv-wrap-relax.patch
|
||||||
|
Patch36: binutils-pr22868.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -163,6 +164,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch22
|
%patch22
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
%patch35 -p1
|
||||||
|
%patch36 -p1
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 6 16:01:24 UTC 2018 - matz@suse.com
|
||||||
|
|
||||||
|
- Add binutils-pr22868.diff to fix testsuite fails in LLVM.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -96,6 +96,7 @@ Patch18: gold-depend-on-opcodes.diff
|
|||||||
Patch22: binutils-bfd_h.patch
|
Patch22: binutils-bfd_h.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: riscv-wrap-relax.patch
|
Patch35: riscv-wrap-relax.patch
|
||||||
|
Patch36: binutils-pr22868.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -166,6 +167,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch22
|
%patch22
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
%patch35 -p1
|
||||||
|
%patch36 -p1
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 6 16:01:24 UTC 2018 - matz@suse.com
|
||||||
|
|
||||||
|
- Add binutils-pr22868.diff to fix testsuite fails in LLVM.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -96,6 +96,7 @@ Patch18: gold-depend-on-opcodes.diff
|
|||||||
Patch22: binutils-bfd_h.patch
|
Patch22: binutils-bfd_h.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: riscv-wrap-relax.patch
|
Patch35: riscv-wrap-relax.patch
|
||||||
|
Patch36: binutils-pr22868.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -166,6 +167,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch22
|
%patch22
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
%patch35 -p1
|
||||||
|
%patch36 -p1
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 6 16:01:24 UTC 2018 - matz@suse.com
|
||||||
|
|
||||||
|
- Add binutils-pr22868.diff to fix testsuite fails in LLVM.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -96,6 +96,7 @@ Patch18: gold-depend-on-opcodes.diff
|
|||||||
Patch22: binutils-bfd_h.patch
|
Patch22: binutils-bfd_h.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: riscv-wrap-relax.patch
|
Patch35: riscv-wrap-relax.patch
|
||||||
|
Patch36: binutils-pr22868.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -166,6 +167,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch22
|
%patch22
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
%patch35 -p1
|
||||||
|
%patch36 -p1
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 6 16:01:24 UTC 2018 - matz@suse.com
|
||||||
|
|
||||||
|
- Add binutils-pr22868.diff to fix testsuite fails in LLVM.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -96,6 +96,7 @@ Patch18: gold-depend-on-opcodes.diff
|
|||||||
Patch22: binutils-bfd_h.patch
|
Patch22: binutils-bfd_h.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: riscv-wrap-relax.patch
|
Patch35: riscv-wrap-relax.patch
|
||||||
|
Patch36: binutils-pr22868.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -166,6 +167,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch22
|
%patch22
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
%patch35 -p1
|
||||||
|
%patch36 -p1
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 6 16:01:24 UTC 2018 - matz@suse.com
|
||||||
|
|
||||||
|
- Add binutils-pr22868.diff to fix testsuite fails in LLVM.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -96,6 +96,7 @@ Patch18: gold-depend-on-opcodes.diff
|
|||||||
Patch22: binutils-bfd_h.patch
|
Patch22: binutils-bfd_h.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: riscv-wrap-relax.patch
|
Patch35: riscv-wrap-relax.patch
|
||||||
|
Patch36: binutils-pr22868.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -166,6 +167,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch22
|
%patch22
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
%patch35 -p1
|
||||||
|
%patch36 -p1
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 6 16:01:24 UTC 2018 - matz@suse.com
|
||||||
|
|
||||||
|
- Add binutils-pr22868.diff to fix testsuite fails in LLVM.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -96,6 +96,7 @@ Patch18: gold-depend-on-opcodes.diff
|
|||||||
Patch22: binutils-bfd_h.patch
|
Patch22: binutils-bfd_h.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: riscv-wrap-relax.patch
|
Patch35: riscv-wrap-relax.patch
|
||||||
|
Patch36: binutils-pr22868.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -166,6 +167,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch22
|
%patch22
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
%patch35 -p1
|
||||||
|
%patch36 -p1
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 6 16:01:24 UTC 2018 - matz@suse.com
|
||||||
|
|
||||||
|
- Add binutils-pr22868.diff to fix testsuite fails in LLVM.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -96,6 +96,7 @@ Patch18: gold-depend-on-opcodes.diff
|
|||||||
Patch22: binutils-bfd_h.patch
|
Patch22: binutils-bfd_h.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: riscv-wrap-relax.patch
|
Patch35: riscv-wrap-relax.patch
|
||||||
|
Patch36: binutils-pr22868.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -166,6 +167,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch22
|
%patch22
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
%patch35 -p1
|
||||||
|
%patch36 -p1
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 6 16:01:24 UTC 2018 - matz@suse.com
|
||||||
|
|
||||||
|
- Add binutils-pr22868.diff to fix testsuite fails in LLVM.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -96,6 +96,7 @@ Patch18: gold-depend-on-opcodes.diff
|
|||||||
Patch22: binutils-bfd_h.patch
|
Patch22: binutils-bfd_h.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: riscv-wrap-relax.patch
|
Patch35: riscv-wrap-relax.patch
|
||||||
|
Patch36: binutils-pr22868.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -166,6 +167,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch22
|
%patch22
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
%patch35 -p1
|
||||||
|
%patch36 -p1
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 6 16:01:24 UTC 2018 - matz@suse.com
|
||||||
|
|
||||||
|
- Add binutils-pr22868.diff to fix testsuite fails in LLVM.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -96,6 +96,7 @@ Patch18: gold-depend-on-opcodes.diff
|
|||||||
Patch22: binutils-bfd_h.patch
|
Patch22: binutils-bfd_h.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: riscv-wrap-relax.patch
|
Patch35: riscv-wrap-relax.patch
|
||||||
|
Patch36: binutils-pr22868.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -166,6 +167,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch22
|
%patch22
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
%patch35 -p1
|
||||||
|
%patch36 -p1
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 6 16:01:24 UTC 2018 - matz@suse.com
|
||||||
|
|
||||||
|
- Add binutils-pr22868.diff to fix testsuite fails in LLVM.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -96,6 +96,7 @@ Patch18: gold-depend-on-opcodes.diff
|
|||||||
Patch22: binutils-bfd_h.patch
|
Patch22: binutils-bfd_h.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: riscv-wrap-relax.patch
|
Patch35: riscv-wrap-relax.patch
|
||||||
|
Patch36: binutils-pr22868.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -166,6 +167,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch22
|
%patch22
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
%patch35 -p1
|
||||||
|
%patch36 -p1
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 6 16:01:24 UTC 2018 - matz@suse.com
|
||||||
|
|
||||||
|
- Add binutils-pr22868.diff to fix testsuite fails in LLVM.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -96,6 +96,7 @@ Patch18: gold-depend-on-opcodes.diff
|
|||||||
Patch22: binutils-bfd_h.patch
|
Patch22: binutils-bfd_h.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: riscv-wrap-relax.patch
|
Patch35: riscv-wrap-relax.patch
|
||||||
|
Patch36: binutils-pr22868.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -166,6 +167,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch22
|
%patch22
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
%patch35 -p1
|
||||||
|
%patch36 -p1
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 6 16:01:24 UTC 2018 - matz@suse.com
|
||||||
|
|
||||||
|
- Add binutils-pr22868.diff to fix testsuite fails in LLVM.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -96,6 +96,7 @@ Patch18: gold-depend-on-opcodes.diff
|
|||||||
Patch22: binutils-bfd_h.patch
|
Patch22: binutils-bfd_h.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: riscv-wrap-relax.patch
|
Patch35: riscv-wrap-relax.patch
|
||||||
|
Patch36: binutils-pr22868.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -166,6 +167,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch22
|
%patch22
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
%patch35 -p1
|
||||||
|
%patch36 -p1
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 6 16:01:24 UTC 2018 - matz@suse.com
|
||||||
|
|
||||||
|
- Add binutils-pr22868.diff to fix testsuite fails in LLVM.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -96,6 +96,7 @@ Patch18: gold-depend-on-opcodes.diff
|
|||||||
Patch22: binutils-bfd_h.patch
|
Patch22: binutils-bfd_h.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: riscv-wrap-relax.patch
|
Patch35: riscv-wrap-relax.patch
|
||||||
|
Patch36: binutils-pr22868.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -166,6 +167,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch22
|
%patch22
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
%patch35 -p1
|
||||||
|
%patch36 -p1
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 6 16:01:24 UTC 2018 - matz@suse.com
|
||||||
|
|
||||||
|
- Add binutils-pr22868.diff to fix testsuite fails in LLVM.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -96,6 +96,7 @@ Patch18: gold-depend-on-opcodes.diff
|
|||||||
Patch22: binutils-bfd_h.patch
|
Patch22: binutils-bfd_h.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: riscv-wrap-relax.patch
|
Patch35: riscv-wrap-relax.patch
|
||||||
|
Patch36: binutils-pr22868.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -166,6 +167,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch22
|
%patch22
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
%patch35 -p1
|
||||||
|
%patch36 -p1
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 6 16:01:24 UTC 2018 - matz@suse.com
|
||||||
|
|
||||||
|
- Add binutils-pr22868.diff to fix testsuite fails in LLVM.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -96,6 +96,7 @@ Patch18: gold-depend-on-opcodes.diff
|
|||||||
Patch22: binutils-bfd_h.patch
|
Patch22: binutils-bfd_h.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: riscv-wrap-relax.patch
|
Patch35: riscv-wrap-relax.patch
|
||||||
|
Patch36: binutils-pr22868.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -166,6 +167,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch22
|
%patch22
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
%patch35 -p1
|
||||||
|
%patch36 -p1
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 6 16:01:24 UTC 2018 - matz@suse.com
|
||||||
|
|
||||||
|
- Add binutils-pr22868.diff to fix testsuite fails in LLVM.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -96,6 +96,7 @@ Patch18: gold-depend-on-opcodes.diff
|
|||||||
Patch22: binutils-bfd_h.patch
|
Patch22: binutils-bfd_h.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: riscv-wrap-relax.patch
|
Patch35: riscv-wrap-relax.patch
|
||||||
|
Patch36: binutils-pr22868.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -166,6 +167,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch22
|
%patch22
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
%patch35 -p1
|
||||||
|
%patch36 -p1
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 6 16:01:24 UTC 2018 - matz@suse.com
|
||||||
|
|
||||||
|
- Add binutils-pr22868.diff to fix testsuite fails in LLVM.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -96,6 +96,7 @@ Patch18: gold-depend-on-opcodes.diff
|
|||||||
Patch22: binutils-bfd_h.patch
|
Patch22: binutils-bfd_h.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: riscv-wrap-relax.patch
|
Patch35: riscv-wrap-relax.patch
|
||||||
|
Patch36: binutils-pr22868.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -166,6 +167,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch22
|
%patch22
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
%patch35 -p1
|
||||||
|
%patch36 -p1
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 6 16:01:24 UTC 2018 - matz@suse.com
|
||||||
|
|
||||||
|
- Add binutils-pr22868.diff to fix testsuite fails in LLVM.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -96,6 +96,7 @@ Patch18: gold-depend-on-opcodes.diff
|
|||||||
Patch22: binutils-bfd_h.patch
|
Patch22: binutils-bfd_h.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: riscv-wrap-relax.patch
|
Patch35: riscv-wrap-relax.patch
|
||||||
|
Patch36: binutils-pr22868.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -166,6 +167,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch22
|
%patch22
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
%patch35 -p1
|
||||||
|
%patch36 -p1
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 6 16:01:24 UTC 2018 - matz@suse.com
|
||||||
|
|
||||||
|
- Add binutils-pr22868.diff to fix testsuite fails in LLVM.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -96,6 +96,7 @@ Patch18: gold-depend-on-opcodes.diff
|
|||||||
Patch22: binutils-bfd_h.patch
|
Patch22: binutils-bfd_h.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: riscv-wrap-relax.patch
|
Patch35: riscv-wrap-relax.patch
|
||||||
|
Patch36: binutils-pr22868.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -166,6 +167,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch22
|
%patch22
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
%patch35 -p1
|
||||||
|
%patch36 -p1
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 6 16:01:24 UTC 2018 - matz@suse.com
|
||||||
|
|
||||||
|
- Add binutils-pr22868.diff to fix testsuite fails in LLVM.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -96,6 +96,7 @@ Patch18: gold-depend-on-opcodes.diff
|
|||||||
Patch22: binutils-bfd_h.patch
|
Patch22: binutils-bfd_h.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: riscv-wrap-relax.patch
|
Patch35: riscv-wrap-relax.patch
|
||||||
|
Patch36: binutils-pr22868.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -166,6 +167,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch22
|
%patch22
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
%patch35 -p1
|
||||||
|
%patch36 -p1
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 6 16:01:24 UTC 2018 - matz@suse.com
|
||||||
|
|
||||||
|
- Add binutils-pr22868.diff to fix testsuite fails in LLVM.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
Mon Feb 26 11:03:07 UTC 2018 - schwab@suse.de
|
||||||
|
|
||||||
|
@ -96,6 +96,7 @@ Patch18: gold-depend-on-opcodes.diff
|
|||||||
Patch22: binutils-bfd_h.patch
|
Patch22: binutils-bfd_h.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: riscv-wrap-relax.patch
|
Patch35: riscv-wrap-relax.patch
|
||||||
|
Patch36: binutils-pr22868.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -166,6 +167,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch22
|
%patch22
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
%patch35 -p1
|
||||||
|
%patch36 -p1
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
Loading…
Reference in New Issue
Block a user