- Add binutils-bso21193.diff to fix section alignment on

.gnu_debuglink.  [bso#21193]

OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=228
This commit is contained in:
Richard Biener 2017-02-24 10:51:58 +00:00 committed by Git OBS Bridge
parent f1bbe29a58
commit 137be544d1
43 changed files with 224 additions and 0 deletions

35
binutils-bso21193.diff Normal file
View 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;
}

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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