forked from pool/binutils
Accepting request 460174 from devel:gcc
- Add binutils-bso21193.diff to fix section alignment on .gnu_debuglink. [bso#21193] OBS-URL: https://build.opensuse.org/request/show/460174 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/binutils?expand=0&rev=114
This commit is contained in:
commit
85d4caefaf
35
binutils-bso21193.diff
Normal file
35
binutils-bso21193.diff
Normal file
@ -0,0 +1,35 @@
|
||||
commit 758d96d834ba725461abf4be36df9f13e0815054
|
||||
Author: Nick Clifton <nickc@redhat.com>
|
||||
Date: Wed Feb 22 17:28:33 2017 +0000
|
||||
|
||||
Align .gnu_debuglink sections on a 4-byte boundary.
|
||||
|
||||
PR binutils/21193
|
||||
* opncls.c (bfd_create_gnu_debuglink_section): Give the newly
|
||||
created section 4-byte alignment.
|
||||
|
||||
diff --git a/bfd/opncls.c b/bfd/opncls.c
|
||||
index 2ab7dfe..4137a3b 100644
|
||||
--- a/bfd/opncls.c
|
||||
+++ b/bfd/opncls.c
|
||||
@@ -1645,6 +1645,8 @@ bfd_create_gnu_debuglink_section (bfd *abfd, const char *filename)
|
||||
if (sect == NULL)
|
||||
return NULL;
|
||||
|
||||
+ /* Compute the size of the section. Allow for the CRC after the filename,
|
||||
+ and padding so that it will start on a 4-byte boundary. */
|
||||
debuglink_size = strlen (filename) + 1;
|
||||
debuglink_size += 3;
|
||||
debuglink_size &= ~3;
|
||||
@@ -1654,6 +1656,11 @@ bfd_create_gnu_debuglink_section (bfd *abfd, const char *filename)
|
||||
/* XXX Should we delete the section from the bfd ? */
|
||||
return NULL;
|
||||
|
||||
+ /* PR 21193: Ensure that the section has 4-byte alignment for the CRC.
|
||||
+ Note - despite the name of the function being called, we are
|
||||
+ setting an alignment power, not a byte alignment value. */
|
||||
+ bfd_set_section_alignment (abfd, sect, 2);
|
||||
+
|
||||
return sect;
|
||||
}
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 24 10:38:24 UTC 2017 - rguenther@suse.com
|
||||
|
||||
- Add binutils-bso21193.diff to fix section alignment on
|
||||
.gnu_debuglink. [bso#21193]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 7 11:42:02 UTC 2017 - rguenther@suse.com
|
||||
|
||||
|
@ -101,6 +101,8 @@ Patch23: binutils-2.27-fix-section-order.diff
|
||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch35: aarch64-alignment-frags.patch
|
||||
# Backport 758d96d834ba725461a
|
||||
Patch36: binutils-bso21193.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -179,6 +181,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch24 -p1
|
||||
%patch34 -p1
|
||||
%patch35 -p1
|
||||
%patch36 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 24 10:38:24 UTC 2017 - rguenther@suse.com
|
||||
|
||||
- Add binutils-bso21193.diff to fix section alignment on
|
||||
.gnu_debuglink. [bso#21193]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 7 11:42:02 UTC 2017 - rguenther@suse.com
|
||||
|
||||
|
@ -104,6 +104,8 @@ Patch23: binutils-2.27-fix-section-order.diff
|
||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch35: aarch64-alignment-frags.patch
|
||||
# Backport 758d96d834ba725461a
|
||||
Patch36: binutils-bso21193.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -182,6 +184,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch24 -p1
|
||||
%patch34 -p1
|
||||
%patch35 -p1
|
||||
%patch36 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 24 10:38:24 UTC 2017 - rguenther@suse.com
|
||||
|
||||
- Add binutils-bso21193.diff to fix section alignment on
|
||||
.gnu_debuglink. [bso#21193]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 7 11:42:02 UTC 2017 - rguenther@suse.com
|
||||
|
||||
|
@ -104,6 +104,8 @@ Patch23: binutils-2.27-fix-section-order.diff
|
||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch35: aarch64-alignment-frags.patch
|
||||
# Backport 758d96d834ba725461a
|
||||
Patch36: binutils-bso21193.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -182,6 +184,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch24 -p1
|
||||
%patch34 -p1
|
||||
%patch35 -p1
|
||||
%patch36 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 24 10:38:24 UTC 2017 - rguenther@suse.com
|
||||
|
||||
- Add binutils-bso21193.diff to fix section alignment on
|
||||
.gnu_debuglink. [bso#21193]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 7 11:42:02 UTC 2017 - rguenther@suse.com
|
||||
|
||||
|
@ -104,6 +104,8 @@ Patch23: binutils-2.27-fix-section-order.diff
|
||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch35: aarch64-alignment-frags.patch
|
||||
# Backport 758d96d834ba725461a
|
||||
Patch36: binutils-bso21193.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -182,6 +184,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch24 -p1
|
||||
%patch34 -p1
|
||||
%patch35 -p1
|
||||
%patch36 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 24 10:38:24 UTC 2017 - rguenther@suse.com
|
||||
|
||||
- Add binutils-bso21193.diff to fix section alignment on
|
||||
.gnu_debuglink. [bso#21193]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 7 11:42:02 UTC 2017 - rguenther@suse.com
|
||||
|
||||
|
@ -104,6 +104,8 @@ Patch23: binutils-2.27-fix-section-order.diff
|
||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch35: aarch64-alignment-frags.patch
|
||||
# Backport 758d96d834ba725461a
|
||||
Patch36: binutils-bso21193.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -182,6 +184,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch24 -p1
|
||||
%patch34 -p1
|
||||
%patch35 -p1
|
||||
%patch36 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 24 10:38:24 UTC 2017 - rguenther@suse.com
|
||||
|
||||
- Add binutils-bso21193.diff to fix section alignment on
|
||||
.gnu_debuglink. [bso#21193]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 7 11:42:02 UTC 2017 - rguenther@suse.com
|
||||
|
||||
|
@ -104,6 +104,8 @@ Patch23: binutils-2.27-fix-section-order.diff
|
||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch35: aarch64-alignment-frags.patch
|
||||
# Backport 758d96d834ba725461a
|
||||
Patch36: binutils-bso21193.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -182,6 +184,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch24 -p1
|
||||
%patch34 -p1
|
||||
%patch35 -p1
|
||||
%patch36 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 24 10:38:24 UTC 2017 - rguenther@suse.com
|
||||
|
||||
- Add binutils-bso21193.diff to fix section alignment on
|
||||
.gnu_debuglink. [bso#21193]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 7 11:42:02 UTC 2017 - rguenther@suse.com
|
||||
|
||||
|
@ -104,6 +104,8 @@ Patch23: binutils-2.27-fix-section-order.diff
|
||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch35: aarch64-alignment-frags.patch
|
||||
# Backport 758d96d834ba725461a
|
||||
Patch36: binutils-bso21193.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -182,6 +184,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch24 -p1
|
||||
%patch34 -p1
|
||||
%patch35 -p1
|
||||
%patch36 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 24 10:38:24 UTC 2017 - rguenther@suse.com
|
||||
|
||||
- Add binutils-bso21193.diff to fix section alignment on
|
||||
.gnu_debuglink. [bso#21193]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 7 11:42:02 UTC 2017 - rguenther@suse.com
|
||||
|
||||
|
@ -104,6 +104,8 @@ Patch23: binutils-2.27-fix-section-order.diff
|
||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch35: aarch64-alignment-frags.patch
|
||||
# Backport 758d96d834ba725461a
|
||||
Patch36: binutils-bso21193.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -182,6 +184,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch24 -p1
|
||||
%patch34 -p1
|
||||
%patch35 -p1
|
||||
%patch36 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 24 10:38:24 UTC 2017 - rguenther@suse.com
|
||||
|
||||
- Add binutils-bso21193.diff to fix section alignment on
|
||||
.gnu_debuglink. [bso#21193]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 7 11:42:02 UTC 2017 - rguenther@suse.com
|
||||
|
||||
|
@ -104,6 +104,8 @@ Patch23: binutils-2.27-fix-section-order.diff
|
||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch35: aarch64-alignment-frags.patch
|
||||
# Backport 758d96d834ba725461a
|
||||
Patch36: binutils-bso21193.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -182,6 +184,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch24 -p1
|
||||
%patch34 -p1
|
||||
%patch35 -p1
|
||||
%patch36 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 24 10:38:24 UTC 2017 - rguenther@suse.com
|
||||
|
||||
- Add binutils-bso21193.diff to fix section alignment on
|
||||
.gnu_debuglink. [bso#21193]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 7 11:42:02 UTC 2017 - rguenther@suse.com
|
||||
|
||||
|
@ -104,6 +104,8 @@ Patch23: binutils-2.27-fix-section-order.diff
|
||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch35: aarch64-alignment-frags.patch
|
||||
# Backport 758d96d834ba725461a
|
||||
Patch36: binutils-bso21193.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -182,6 +184,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch24 -p1
|
||||
%patch34 -p1
|
||||
%patch35 -p1
|
||||
%patch36 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 24 10:38:24 UTC 2017 - rguenther@suse.com
|
||||
|
||||
- Add binutils-bso21193.diff to fix section alignment on
|
||||
.gnu_debuglink. [bso#21193]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 7 11:42:02 UTC 2017 - rguenther@suse.com
|
||||
|
||||
|
@ -104,6 +104,8 @@ Patch23: binutils-2.27-fix-section-order.diff
|
||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch35: aarch64-alignment-frags.patch
|
||||
# Backport 758d96d834ba725461a
|
||||
Patch36: binutils-bso21193.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -182,6 +184,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch24 -p1
|
||||
%patch34 -p1
|
||||
%patch35 -p1
|
||||
%patch36 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 24 10:38:24 UTC 2017 - rguenther@suse.com
|
||||
|
||||
- Add binutils-bso21193.diff to fix section alignment on
|
||||
.gnu_debuglink. [bso#21193]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 7 11:42:02 UTC 2017 - rguenther@suse.com
|
||||
|
||||
|
@ -104,6 +104,8 @@ Patch23: binutils-2.27-fix-section-order.diff
|
||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch35: aarch64-alignment-frags.patch
|
||||
# Backport 758d96d834ba725461a
|
||||
Patch36: binutils-bso21193.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -182,6 +184,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch24 -p1
|
||||
%patch34 -p1
|
||||
%patch35 -p1
|
||||
%patch36 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 24 10:38:24 UTC 2017 - rguenther@suse.com
|
||||
|
||||
- Add binutils-bso21193.diff to fix section alignment on
|
||||
.gnu_debuglink. [bso#21193]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 7 11:42:02 UTC 2017 - rguenther@suse.com
|
||||
|
||||
|
@ -104,6 +104,8 @@ Patch23: binutils-2.27-fix-section-order.diff
|
||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch35: aarch64-alignment-frags.patch
|
||||
# Backport 758d96d834ba725461a
|
||||
Patch36: binutils-bso21193.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -182,6 +184,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch24 -p1
|
||||
%patch34 -p1
|
||||
%patch35 -p1
|
||||
%patch36 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 24 10:38:24 UTC 2017 - rguenther@suse.com
|
||||
|
||||
- Add binutils-bso21193.diff to fix section alignment on
|
||||
.gnu_debuglink. [bso#21193]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 7 11:42:02 UTC 2017 - rguenther@suse.com
|
||||
|
||||
|
@ -104,6 +104,8 @@ Patch23: binutils-2.27-fix-section-order.diff
|
||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch35: aarch64-alignment-frags.patch
|
||||
# Backport 758d96d834ba725461a
|
||||
Patch36: binutils-bso21193.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -182,6 +184,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch24 -p1
|
||||
%patch34 -p1
|
||||
%patch35 -p1
|
||||
%patch36 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 24 10:38:24 UTC 2017 - rguenther@suse.com
|
||||
|
||||
- Add binutils-bso21193.diff to fix section alignment on
|
||||
.gnu_debuglink. [bso#21193]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 7 11:42:02 UTC 2017 - rguenther@suse.com
|
||||
|
||||
|
@ -104,6 +104,8 @@ Patch23: binutils-2.27-fix-section-order.diff
|
||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch35: aarch64-alignment-frags.patch
|
||||
# Backport 758d96d834ba725461a
|
||||
Patch36: binutils-bso21193.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -182,6 +184,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch24 -p1
|
||||
%patch34 -p1
|
||||
%patch35 -p1
|
||||
%patch36 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 24 10:38:24 UTC 2017 - rguenther@suse.com
|
||||
|
||||
- Add binutils-bso21193.diff to fix section alignment on
|
||||
.gnu_debuglink. [bso#21193]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 7 11:42:02 UTC 2017 - rguenther@suse.com
|
||||
|
||||
|
@ -104,6 +104,8 @@ Patch23: binutils-2.27-fix-section-order.diff
|
||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch35: aarch64-alignment-frags.patch
|
||||
# Backport 758d96d834ba725461a
|
||||
Patch36: binutils-bso21193.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -182,6 +184,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch24 -p1
|
||||
%patch34 -p1
|
||||
%patch35 -p1
|
||||
%patch36 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 24 10:38:24 UTC 2017 - rguenther@suse.com
|
||||
|
||||
- Add binutils-bso21193.diff to fix section alignment on
|
||||
.gnu_debuglink. [bso#21193]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 7 11:42:02 UTC 2017 - rguenther@suse.com
|
||||
|
||||
|
@ -104,6 +104,8 @@ Patch23: binutils-2.27-fix-section-order.diff
|
||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch35: aarch64-alignment-frags.patch
|
||||
# Backport 758d96d834ba725461a
|
||||
Patch36: binutils-bso21193.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -182,6 +184,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch24 -p1
|
||||
%patch34 -p1
|
||||
%patch35 -p1
|
||||
%patch36 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 24 10:38:24 UTC 2017 - rguenther@suse.com
|
||||
|
||||
- Add binutils-bso21193.diff to fix section alignment on
|
||||
.gnu_debuglink. [bso#21193]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 7 11:42:02 UTC 2017 - rguenther@suse.com
|
||||
|
||||
|
@ -104,6 +104,8 @@ Patch23: binutils-2.27-fix-section-order.diff
|
||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch35: aarch64-alignment-frags.patch
|
||||
# Backport 758d96d834ba725461a
|
||||
Patch36: binutils-bso21193.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -182,6 +184,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch24 -p1
|
||||
%patch34 -p1
|
||||
%patch35 -p1
|
||||
%patch36 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 24 10:38:24 UTC 2017 - rguenther@suse.com
|
||||
|
||||
- Add binutils-bso21193.diff to fix section alignment on
|
||||
.gnu_debuglink. [bso#21193]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 7 11:42:02 UTC 2017 - rguenther@suse.com
|
||||
|
||||
|
@ -104,6 +104,8 @@ Patch23: binutils-2.27-fix-section-order.diff
|
||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch35: aarch64-alignment-frags.patch
|
||||
# Backport 758d96d834ba725461a
|
||||
Patch36: binutils-bso21193.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -182,6 +184,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch24 -p1
|
||||
%patch34 -p1
|
||||
%patch35 -p1
|
||||
%patch36 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 24 10:38:24 UTC 2017 - rguenther@suse.com
|
||||
|
||||
- Add binutils-bso21193.diff to fix section alignment on
|
||||
.gnu_debuglink. [bso#21193]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 7 11:42:02 UTC 2017 - rguenther@suse.com
|
||||
|
||||
|
@ -104,6 +104,8 @@ Patch23: binutils-2.27-fix-section-order.diff
|
||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch35: aarch64-alignment-frags.patch
|
||||
# Backport 758d96d834ba725461a
|
||||
Patch36: binutils-bso21193.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -182,6 +184,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch24 -p1
|
||||
%patch34 -p1
|
||||
%patch35 -p1
|
||||
%patch36 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 24 10:38:24 UTC 2017 - rguenther@suse.com
|
||||
|
||||
- Add binutils-bso21193.diff to fix section alignment on
|
||||
.gnu_debuglink. [bso#21193]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 7 11:42:02 UTC 2017 - rguenther@suse.com
|
||||
|
||||
|
@ -104,6 +104,8 @@ Patch23: binutils-2.27-fix-section-order.diff
|
||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||
Patch34: aarch64-common-pagesize.patch
|
||||
Patch35: aarch64-alignment-frags.patch
|
||||
# Backport 758d96d834ba725461a
|
||||
Patch36: binutils-bso21193.diff
|
||||
Patch90: cross-avr-nesc-as.patch
|
||||
Patch92: cross-avr-omit_section_dynsym.patch
|
||||
Patch93: cross-avr-size.patch
|
||||
@ -182,6 +184,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
||||
%patch24 -p1
|
||||
%patch34 -p1
|
||||
%patch35 -p1
|
||||
%patch36 -p1
|
||||
%if "%{TARGET}" == "avr"
|
||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||
%patch90
|
||||
|
Loading…
Reference in New Issue
Block a user