forked from pool/binutils
- Add binutils-fix-invalid-op-errata.diff to fix various
build fails (PR25210). OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=325
This commit is contained in:
parent
a7c95a23a5
commit
288847c92a
21
binutils-fix-invalid-op-errata.diff
Normal file
21
binutils-fix-invalid-op-errata.diff
Normal file
@ -0,0 +1,21 @@
|
||||
Also reported as PR25210
|
||||
--- bfd/elfnn-aarch64.c.mm 2019-09-09 13:19:43.000000000 +0000
|
||||
+++ bfd/elfnn-aarch64.c 2019-11-20 11:44:00.000000000 +0000
|
||||
@@ -4312,7 +4312,8 @@ elfNN_aarch64_size_stubs (bfd *output_bf
|
||||
|
||||
for (input_bfd = info->input_bfds;
|
||||
input_bfd != NULL; input_bfd = input_bfd->link.next)
|
||||
- if (!_bfd_aarch64_erratum_835769_scan (input_bfd, info,
|
||||
+ if (input_bfd != stub_bfd
|
||||
+ && !_bfd_aarch64_erratum_835769_scan (input_bfd, info,
|
||||
&num_erratum_835769_fixes))
|
||||
return FALSE;
|
||||
|
||||
@@ -4327,6 +4328,7 @@ elfNN_aarch64_size_stubs (bfd *output_bf
|
||||
for (input_bfd = info->input_bfds;
|
||||
input_bfd != NULL;
|
||||
input_bfd = input_bfd->link.next)
|
||||
+ if (input_bfd != stub_bfd)
|
||||
{
|
||||
asection *section;
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 20 16:22:51 UTC 2019 - matz@suse.com
|
||||
|
||||
- Add binutils-fix-invalid-op-errata.diff to fix various
|
||||
build fails (PR25210).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 18 17:06:15 UTC 2019 - matz@suse.com
|
||||
|
||||
|
@ -95,7 +95,8 @@ Patch22: binutils-bfd_h.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch36: binutils-pr22868.diff
|
||||
Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: add-ulp-section.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -169,6 +170,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch37 -p1
|
||||
%endif
|
||||
%patch38
|
||||
%patch100
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 20 16:22:51 UTC 2019 - matz@suse.com
|
||||
|
||||
- Add binutils-fix-invalid-op-errata.diff to fix various
|
||||
build fails (PR25210).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 18 17:06:15 UTC 2019 - matz@suse.com
|
||||
|
||||
|
@ -98,7 +98,8 @@ Patch22: binutils-bfd_h.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch36: binutils-pr22868.diff
|
||||
Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: add-ulp-section.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -172,6 +173,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch37 -p1
|
||||
%endif
|
||||
%patch38
|
||||
%patch100
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 20 16:22:51 UTC 2019 - matz@suse.com
|
||||
|
||||
- Add binutils-fix-invalid-op-errata.diff to fix various
|
||||
build fails (PR25210).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 18 17:06:15 UTC 2019 - matz@suse.com
|
||||
|
||||
|
@ -98,7 +98,8 @@ Patch22: binutils-bfd_h.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch36: binutils-pr22868.diff
|
||||
Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: add-ulp-section.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -172,6 +173,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch37 -p1
|
||||
%endif
|
||||
%patch38
|
||||
%patch100
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 20 16:22:51 UTC 2019 - matz@suse.com
|
||||
|
||||
- Add binutils-fix-invalid-op-errata.diff to fix various
|
||||
build fails (PR25210).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 18 17:06:15 UTC 2019 - matz@suse.com
|
||||
|
||||
|
@ -98,7 +98,8 @@ Patch22: binutils-bfd_h.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch36: binutils-pr22868.diff
|
||||
Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: add-ulp-section.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -172,6 +173,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch37 -p1
|
||||
%endif
|
||||
%patch38
|
||||
%patch100
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 20 16:22:51 UTC 2019 - matz@suse.com
|
||||
|
||||
- Add binutils-fix-invalid-op-errata.diff to fix various
|
||||
build fails (PR25210).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 18 17:06:15 UTC 2019 - matz@suse.com
|
||||
|
||||
|
@ -98,7 +98,8 @@ Patch22: binutils-bfd_h.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch36: binutils-pr22868.diff
|
||||
Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: add-ulp-section.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -172,6 +173,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch37 -p1
|
||||
%endif
|
||||
%patch38
|
||||
%patch100
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 20 16:22:51 UTC 2019 - matz@suse.com
|
||||
|
||||
- Add binutils-fix-invalid-op-errata.diff to fix various
|
||||
build fails (PR25210).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 18 17:06:15 UTC 2019 - matz@suse.com
|
||||
|
||||
|
@ -98,7 +98,8 @@ Patch22: binutils-bfd_h.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch36: binutils-pr22868.diff
|
||||
Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: add-ulp-section.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -172,6 +173,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch37 -p1
|
||||
%endif
|
||||
%patch38
|
||||
%patch100
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 20 16:22:51 UTC 2019 - matz@suse.com
|
||||
|
||||
- Add binutils-fix-invalid-op-errata.diff to fix various
|
||||
build fails (PR25210).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 18 17:06:15 UTC 2019 - matz@suse.com
|
||||
|
||||
|
@ -98,7 +98,8 @@ Patch22: binutils-bfd_h.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch36: binutils-pr22868.diff
|
||||
Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: add-ulp-section.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -172,6 +173,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch37 -p1
|
||||
%endif
|
||||
%patch38
|
||||
%patch100
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 20 16:22:51 UTC 2019 - matz@suse.com
|
||||
|
||||
- Add binutils-fix-invalid-op-errata.diff to fix various
|
||||
build fails (PR25210).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 18 17:06:15 UTC 2019 - matz@suse.com
|
||||
|
||||
|
@ -98,7 +98,8 @@ Patch22: binutils-bfd_h.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch36: binutils-pr22868.diff
|
||||
Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: add-ulp-section.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -172,6 +173,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch37 -p1
|
||||
%endif
|
||||
%patch38
|
||||
%patch100
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 20 16:22:51 UTC 2019 - matz@suse.com
|
||||
|
||||
- Add binutils-fix-invalid-op-errata.diff to fix various
|
||||
build fails (PR25210).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 18 17:06:15 UTC 2019 - matz@suse.com
|
||||
|
||||
|
@ -98,7 +98,8 @@ Patch22: binutils-bfd_h.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch36: binutils-pr22868.diff
|
||||
Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: add-ulp-section.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -172,6 +173,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch37 -p1
|
||||
%endif
|
||||
%patch38
|
||||
%patch100
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 20 16:22:51 UTC 2019 - matz@suse.com
|
||||
|
||||
- Add binutils-fix-invalid-op-errata.diff to fix various
|
||||
build fails (PR25210).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 18 17:06:15 UTC 2019 - matz@suse.com
|
||||
|
||||
|
@ -98,7 +98,8 @@ Patch22: binutils-bfd_h.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch36: binutils-pr22868.diff
|
||||
Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: add-ulp-section.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -172,6 +173,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch37 -p1
|
||||
%endif
|
||||
%patch38
|
||||
%patch100
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 20 16:22:51 UTC 2019 - matz@suse.com
|
||||
|
||||
- Add binutils-fix-invalid-op-errata.diff to fix various
|
||||
build fails (PR25210).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 18 17:06:15 UTC 2019 - matz@suse.com
|
||||
|
||||
|
@ -98,7 +98,8 @@ Patch22: binutils-bfd_h.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch36: binutils-pr22868.diff
|
||||
Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: add-ulp-section.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -172,6 +173,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch37 -p1
|
||||
%endif
|
||||
%patch38
|
||||
%patch100
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 20 16:22:51 UTC 2019 - matz@suse.com
|
||||
|
||||
- Add binutils-fix-invalid-op-errata.diff to fix various
|
||||
build fails (PR25210).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 18 17:06:15 UTC 2019 - matz@suse.com
|
||||
|
||||
|
@ -98,7 +98,8 @@ Patch22: binutils-bfd_h.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch36: binutils-pr22868.diff
|
||||
Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: add-ulp-section.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -172,6 +173,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch37 -p1
|
||||
%endif
|
||||
%patch38
|
||||
%patch100
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 20 16:22:51 UTC 2019 - matz@suse.com
|
||||
|
||||
- Add binutils-fix-invalid-op-errata.diff to fix various
|
||||
build fails (PR25210).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 18 17:06:15 UTC 2019 - matz@suse.com
|
||||
|
||||
|
@ -98,7 +98,8 @@ Patch22: binutils-bfd_h.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch36: binutils-pr22868.diff
|
||||
Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: add-ulp-section.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -172,6 +173,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch37 -p1
|
||||
%endif
|
||||
%patch38
|
||||
%patch100
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 20 16:22:51 UTC 2019 - matz@suse.com
|
||||
|
||||
- Add binutils-fix-invalid-op-errata.diff to fix various
|
||||
build fails (PR25210).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 18 17:06:15 UTC 2019 - matz@suse.com
|
||||
|
||||
|
@ -98,7 +98,8 @@ Patch22: binutils-bfd_h.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch36: binutils-pr22868.diff
|
||||
Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: add-ulp-section.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -172,6 +173,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch37 -p1
|
||||
%endif
|
||||
%patch38
|
||||
%patch100
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 20 16:22:51 UTC 2019 - matz@suse.com
|
||||
|
||||
- Add binutils-fix-invalid-op-errata.diff to fix various
|
||||
build fails (PR25210).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 18 17:06:15 UTC 2019 - matz@suse.com
|
||||
|
||||
|
@ -98,7 +98,8 @@ Patch22: binutils-bfd_h.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch36: binutils-pr22868.diff
|
||||
Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: add-ulp-section.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -172,6 +173,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch37 -p1
|
||||
%endif
|
||||
%patch38
|
||||
%patch100
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 20 16:22:51 UTC 2019 - matz@suse.com
|
||||
|
||||
- Add binutils-fix-invalid-op-errata.diff to fix various
|
||||
build fails (PR25210).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 18 17:06:15 UTC 2019 - matz@suse.com
|
||||
|
||||
|
@ -98,7 +98,8 @@ Patch22: binutils-bfd_h.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch36: binutils-pr22868.diff
|
||||
Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: add-ulp-section.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -172,6 +173,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch37 -p1
|
||||
%endif
|
||||
%patch38
|
||||
%patch100
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 20 16:22:51 UTC 2019 - matz@suse.com
|
||||
|
||||
- Add binutils-fix-invalid-op-errata.diff to fix various
|
||||
build fails (PR25210).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 18 17:06:15 UTC 2019 - matz@suse.com
|
||||
|
||||
|
@ -98,7 +98,8 @@ Patch22: binutils-bfd_h.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch36: binutils-pr22868.diff
|
||||
Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: add-ulp-section.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -172,6 +173,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch37 -p1
|
||||
%endif
|
||||
%patch38
|
||||
%patch100
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 20 16:22:51 UTC 2019 - matz@suse.com
|
||||
|
||||
- Add binutils-fix-invalid-op-errata.diff to fix various
|
||||
build fails (PR25210).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 18 17:06:15 UTC 2019 - matz@suse.com
|
||||
|
||||
|
@ -98,7 +98,8 @@ Patch22: binutils-bfd_h.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch36: binutils-pr22868.diff
|
||||
Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: add-ulp-section.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -172,6 +173,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch37 -p1
|
||||
%endif
|
||||
%patch38
|
||||
%patch100
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 20 16:22:51 UTC 2019 - matz@suse.com
|
||||
|
||||
- Add binutils-fix-invalid-op-errata.diff to fix various
|
||||
build fails (PR25210).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 18 17:06:15 UTC 2019 - matz@suse.com
|
||||
|
||||
|
@ -98,7 +98,8 @@ Patch22: binutils-bfd_h.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch36: binutils-pr22868.diff
|
||||
Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: add-ulp-section.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -172,6 +173,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch37 -p1
|
||||
%endif
|
||||
%patch38
|
||||
%patch100
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 20 16:22:51 UTC 2019 - matz@suse.com
|
||||
|
||||
- Add binutils-fix-invalid-op-errata.diff to fix various
|
||||
build fails (PR25210).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 18 17:06:15 UTC 2019 - matz@suse.com
|
||||
|
||||
|
@ -98,7 +98,8 @@ Patch22: binutils-bfd_h.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch36: binutils-pr22868.diff
|
||||
Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: add-ulp-section.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -172,6 +173,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch37 -p1
|
||||
%endif
|
||||
%patch38
|
||||
%patch100
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 20 16:22:51 UTC 2019 - matz@suse.com
|
||||
|
||||
- Add binutils-fix-invalid-op-errata.diff to fix various
|
||||
build fails (PR25210).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 18 17:06:15 UTC 2019 - matz@suse.com
|
||||
|
||||
|
@ -98,7 +98,8 @@ Patch22: binutils-bfd_h.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch36: binutils-pr22868.diff
|
||||
Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: add-ulp-section.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -172,6 +173,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch37 -p1
|
||||
%endif
|
||||
%patch38
|
||||
%patch100
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 20 16:22:51 UTC 2019 - matz@suse.com
|
||||
|
||||
- Add binutils-fix-invalid-op-errata.diff to fix various
|
||||
build fails (PR25210).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 18 17:06:15 UTC 2019 - matz@suse.com
|
||||
|
||||
|
@ -98,7 +98,8 @@ Patch22: binutils-bfd_h.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch36: binutils-pr22868.diff
|
||||
Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: add-ulp-section.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -172,6 +173,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch37 -p1
|
||||
%endif
|
||||
%patch38
|
||||
%patch100
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 20 16:22:51 UTC 2019 - matz@suse.com
|
||||
|
||||
- Add binutils-fix-invalid-op-errata.diff to fix various
|
||||
build fails (PR25210).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 18 17:06:15 UTC 2019 - matz@suse.com
|
||||
|
||||
|
@ -98,7 +98,8 @@ Patch22: binutils-bfd_h.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch36: binutils-pr22868.diff
|
||||
Patch37: binutils-revert-plt32-in-branches.diff
|
||||
Patch38: add-ulp-section.diff
|
||||
Patch38: binutils-fix-invalid-op-errata.diff
|
||||
Patch100: add-ulp-section.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -172,6 +173,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch37 -p1
|
||||
%endif
|
||||
%patch38
|
||||
%patch100
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
Loading…
Reference in New Issue
Block a user