Accepting request 76101 from devel:gcc

- Add patch for bogus executable stack setting with -flto.  [bso#12982]

OBS-URL: https://build.opensuse.org/request/show/76101
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/binutils?expand=0&rev=65
This commit is contained in:
Marcus Rückert 2011-07-12 12:06:07 +00:00 committed by Git OBS Bridge
commit 3d84c3d55f
31 changed files with 179 additions and 57 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
- Add patch for bogus executable stack setting with -flto. [bso#12982]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com
@ -6,7 +11,7 @@ Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jul 5 12:42:10 UTC 2011 - saschpe@suse.de Tue Jul 5 12:42:10 UTC 2011 - saschpe@suse.de
- Add patch to fix a readelf endless loop bug [#12855] - Add patch to fix a readelf endless loop bug. [bso#12855]
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jun 28 08:12:12 UTC 2011 - rguenther@novell.com Tue Jun 28 08:12:12 UTC 2011 - rguenther@novell.com

View File

@ -95,6 +95,7 @@ Patch16: amd-bdver2-and-fixes2.diff.gz
Patch17: binutils-add-pep.diff Patch17: binutils-add-pep.diff
Patch18: gold-depend-on-opcodes.diff Patch18: gold-depend-on-opcodes.diff
Patch19: readelf-bad-elf-endless-loop.patch Patch19: readelf-bad-elf-endless-loop.patch
Patch20: bso12982.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
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -309,6 +310,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
%patch17 -p1 %patch17 -p1
%patch18 %patch18
%patch19 %patch19
%patch20 -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

17
bso12982.diff Normal file
View File

@ -0,0 +1,17 @@
===================================================================
RCS file: /cvs/src/src/bfd/elflink.c,v
retrieving revision 1.414
retrieving revision 1.415
diff -u -r1.414 -r1.415
--- src/bfd/elflink.c 2011/07/11 15:03:05 1.414
+++ src/bfd/elflink.c 2011/07/11 18:39:13 1.415
@@ -5525,7 +5525,8 @@
{
asection *s;
- if (inputobj->flags & (DYNAMIC | EXEC_P | BFD_LINKER_CREATED))
+ if (inputobj->flags
+ & (DYNAMIC | EXEC_P | BFD_PLUGIN | BFD_LINKER_CREATED))
continue;
s = bfd_get_section_by_name (inputobj, ".note.GNU-stack");
if (s)

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
- Add patch for bogus executable stack setting with -flto. [bso#12982]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com
@ -6,7 +11,7 @@ Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jul 5 12:42:10 UTC 2011 - saschpe@suse.de Tue Jul 5 12:42:10 UTC 2011 - saschpe@suse.de
- Add patch to fix a readelf endless loop bug [#12855] - Add patch to fix a readelf endless loop bug. [bso#12855]
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jun 28 08:12:12 UTC 2011 - rguenther@novell.com Tue Jun 28 08:12:12 UTC 2011 - rguenther@novell.com

View File

@ -1,5 +1,5 @@
# #
# spec file for package cross-alpha-binutils # spec file for package binutils
# #
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
# #
@ -17,7 +17,7 @@
Name: cross-alpha-binutils Name: cross-alpha-binutils
BuildRequires: bison dejagnu flex gcc-c++ BuildRequires: bison dejagnu flex gcc-c++
# for the testsuite # for the testsuite
%if 0%{suse_version} >= 1210 %if 0%{suse_version} >= 1210
@ -31,7 +31,7 @@ BuildRequires: zlib-devel-static
BuildRequires: zlib-devel BuildRequires: zlib-devel
%endif %endif
Version: 2.21.1 Version: 2.21.1
Release: 2 Release: 6
# #
# RUN_TESTS # RUN_TESTS
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
@ -95,6 +95,7 @@ Patch16: amd-bdver2-and-fixes2.diff.gz
Patch17: binutils-add-pep.diff Patch17: binutils-add-pep.diff
Patch18: gold-depend-on-opcodes.diff Patch18: gold-depend-on-opcodes.diff
Patch19: readelf-bad-elf-endless-loop.patch Patch19: readelf-bad-elf-endless-loop.patch
Patch20: bso12982.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
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -281,6 +282,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
%patch17 -p1 %patch17 -p1
%patch18 %patch18
%patch19 %patch19
%patch20 -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

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
- Add patch for bogus executable stack setting with -flto. [bso#12982]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com
@ -6,7 +11,7 @@ Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jul 5 12:42:10 UTC 2011 - saschpe@suse.de Tue Jul 5 12:42:10 UTC 2011 - saschpe@suse.de
- Add patch to fix a readelf endless loop bug [#12855] - Add patch to fix a readelf endless loop bug. [bso#12855]
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jun 28 08:12:12 UTC 2011 - rguenther@novell.com Tue Jun 28 08:12:12 UTC 2011 - rguenther@novell.com

View File

@ -1,5 +1,5 @@
# #
# spec file for package cross-arm-binutils # spec file for package binutils
# #
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
# #
@ -17,7 +17,7 @@
Name: cross-arm-binutils Name: cross-arm-binutils
BuildRequires: bison dejagnu flex gcc-c++ BuildRequires: bison dejagnu flex gcc-c++
# for the testsuite # for the testsuite
%if 0%{suse_version} >= 1210 %if 0%{suse_version} >= 1210
@ -31,7 +31,7 @@ BuildRequires: zlib-devel-static
BuildRequires: zlib-devel BuildRequires: zlib-devel
%endif %endif
Version: 2.21.1 Version: 2.21.1
Release: 2 Release: 6
# #
# RUN_TESTS # RUN_TESTS
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
@ -95,6 +95,7 @@ Patch16: amd-bdver2-and-fixes2.diff.gz
Patch17: binutils-add-pep.diff Patch17: binutils-add-pep.diff
Patch18: gold-depend-on-opcodes.diff Patch18: gold-depend-on-opcodes.diff
Patch19: readelf-bad-elf-endless-loop.patch Patch19: readelf-bad-elf-endless-loop.patch
Patch20: bso12982.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
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -281,6 +282,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
%patch17 -p1 %patch17 -p1
%patch18 %patch18
%patch19 %patch19
%patch20 -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

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
- Add patch for bogus executable stack setting with -flto. [bso#12982]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com
@ -6,7 +11,7 @@ Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jul 5 12:42:10 UTC 2011 - saschpe@suse.de Tue Jul 5 12:42:10 UTC 2011 - saschpe@suse.de
- Add patch to fix a readelf endless loop bug [#12855] - Add patch to fix a readelf endless loop bug. [bso#12855]
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jun 28 08:12:12 UTC 2011 - rguenther@novell.com Tue Jun 28 08:12:12 UTC 2011 - rguenther@novell.com

View File

@ -1,5 +1,5 @@
# #
# spec file for package cross-hppa-binutils # spec file for package binutils
# #
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
# #
@ -17,7 +17,7 @@
Name: cross-hppa-binutils Name: cross-hppa-binutils
BuildRequires: bison dejagnu flex gcc-c++ BuildRequires: bison dejagnu flex gcc-c++
# for the testsuite # for the testsuite
%if 0%{suse_version} >= 1210 %if 0%{suse_version} >= 1210
@ -31,7 +31,7 @@ BuildRequires: zlib-devel-static
BuildRequires: zlib-devel BuildRequires: zlib-devel
%endif %endif
Version: 2.21.1 Version: 2.21.1
Release: 2 Release: 6
# #
# RUN_TESTS # RUN_TESTS
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
@ -95,6 +95,7 @@ Patch16: amd-bdver2-and-fixes2.diff.gz
Patch17: binutils-add-pep.diff Patch17: binutils-add-pep.diff
Patch18: gold-depend-on-opcodes.diff Patch18: gold-depend-on-opcodes.diff
Patch19: readelf-bad-elf-endless-loop.patch Patch19: readelf-bad-elf-endless-loop.patch
Patch20: bso12982.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
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -281,6 +282,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
%patch17 -p1 %patch17 -p1
%patch18 %patch18
%patch19 %patch19
%patch20 -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

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
- Add patch for bogus executable stack setting with -flto. [bso#12982]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com
@ -6,7 +11,7 @@ Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jul 5 12:42:10 UTC 2011 - saschpe@suse.de Tue Jul 5 12:42:10 UTC 2011 - saschpe@suse.de
- Add patch to fix a readelf endless loop bug [#12855] - Add patch to fix a readelf endless loop bug. [bso#12855]
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jun 28 08:12:12 UTC 2011 - rguenther@novell.com Tue Jun 28 08:12:12 UTC 2011 - rguenther@novell.com

View File

@ -1,5 +1,5 @@
# #
# spec file for package cross-hppa64-binutils # spec file for package binutils
# #
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
# #
@ -17,7 +17,7 @@
Name: cross-hppa64-binutils Name: cross-hppa64-binutils
BuildRequires: bison dejagnu flex gcc-c++ BuildRequires: bison dejagnu flex gcc-c++
# for the testsuite # for the testsuite
%if 0%{suse_version} >= 1210 %if 0%{suse_version} >= 1210
@ -31,7 +31,7 @@ BuildRequires: zlib-devel-static
BuildRequires: zlib-devel BuildRequires: zlib-devel
%endif %endif
Version: 2.21.1 Version: 2.21.1
Release: 2 Release: 6
# #
# RUN_TESTS # RUN_TESTS
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
@ -95,6 +95,7 @@ Patch16: amd-bdver2-and-fixes2.diff.gz
Patch17: binutils-add-pep.diff Patch17: binutils-add-pep.diff
Patch18: gold-depend-on-opcodes.diff Patch18: gold-depend-on-opcodes.diff
Patch19: readelf-bad-elf-endless-loop.patch Patch19: readelf-bad-elf-endless-loop.patch
Patch20: bso12982.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
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -281,6 +282,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
%patch17 -p1 %patch17 -p1
%patch18 %patch18
%patch19 %patch19
%patch20 -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

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
- Add patch for bogus executable stack setting with -flto. [bso#12982]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com
@ -6,7 +11,7 @@ Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jul 5 12:42:10 UTC 2011 - saschpe@suse.de Tue Jul 5 12:42:10 UTC 2011 - saschpe@suse.de
- Add patch to fix a readelf endless loop bug [#12855] - Add patch to fix a readelf endless loop bug. [bso#12855]
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jun 28 08:12:12 UTC 2011 - rguenther@novell.com Tue Jun 28 08:12:12 UTC 2011 - rguenther@novell.com

View File

@ -1,5 +1,5 @@
# #
# spec file for package cross-i386-binutils # spec file for package binutils
# #
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
# #
@ -17,7 +17,7 @@
Name: cross-i386-binutils Name: cross-i386-binutils
BuildRequires: bison dejagnu flex gcc-c++ BuildRequires: bison dejagnu flex gcc-c++
# for the testsuite # for the testsuite
%if 0%{suse_version} >= 1210 %if 0%{suse_version} >= 1210
@ -31,7 +31,7 @@ BuildRequires: zlib-devel-static
BuildRequires: zlib-devel BuildRequires: zlib-devel
%endif %endif
Version: 2.21.1 Version: 2.21.1
Release: 2 Release: 6
# #
# RUN_TESTS # RUN_TESTS
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
@ -95,6 +95,7 @@ Patch16: amd-bdver2-and-fixes2.diff.gz
Patch17: binutils-add-pep.diff Patch17: binutils-add-pep.diff
Patch18: gold-depend-on-opcodes.diff Patch18: gold-depend-on-opcodes.diff
Patch19: readelf-bad-elf-endless-loop.patch Patch19: readelf-bad-elf-endless-loop.patch
Patch20: bso12982.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
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -281,6 +282,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
%patch17 -p1 %patch17 -p1
%patch18 %patch18
%patch19 %patch19
%patch20 -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

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
- Add patch for bogus executable stack setting with -flto. [bso#12982]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com
@ -6,7 +11,7 @@ Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jul 5 12:42:10 UTC 2011 - saschpe@suse.de Tue Jul 5 12:42:10 UTC 2011 - saschpe@suse.de
- Add patch to fix a readelf endless loop bug [#12855] - Add patch to fix a readelf endless loop bug. [bso#12855]
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jun 28 08:12:12 UTC 2011 - rguenther@novell.com Tue Jun 28 08:12:12 UTC 2011 - rguenther@novell.com

View File

@ -1,5 +1,5 @@
# #
# spec file for package cross-ia64-binutils # spec file for package binutils
# #
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
# #
@ -17,7 +17,7 @@
Name: cross-ia64-binutils Name: cross-ia64-binutils
BuildRequires: bison dejagnu flex gcc-c++ BuildRequires: bison dejagnu flex gcc-c++
# for the testsuite # for the testsuite
%if 0%{suse_version} >= 1210 %if 0%{suse_version} >= 1210
@ -31,7 +31,7 @@ BuildRequires: zlib-devel-static
BuildRequires: zlib-devel BuildRequires: zlib-devel
%endif %endif
Version: 2.21.1 Version: 2.21.1
Release: 2 Release: 6
# #
# RUN_TESTS # RUN_TESTS
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
@ -95,6 +95,7 @@ Patch16: amd-bdver2-and-fixes2.diff.gz
Patch17: binutils-add-pep.diff Patch17: binutils-add-pep.diff
Patch18: gold-depend-on-opcodes.diff Patch18: gold-depend-on-opcodes.diff
Patch19: readelf-bad-elf-endless-loop.patch Patch19: readelf-bad-elf-endless-loop.patch
Patch20: bso12982.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
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -281,6 +282,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
%patch17 -p1 %patch17 -p1
%patch18 %patch18
%patch19 %patch19
%patch20 -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

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
- Add patch for bogus executable stack setting with -flto. [bso#12982]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com
@ -6,7 +11,7 @@ Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jul 5 12:42:10 UTC 2011 - saschpe@suse.de Tue Jul 5 12:42:10 UTC 2011 - saschpe@suse.de
- Add patch to fix a readelf endless loop bug [#12855] - Add patch to fix a readelf endless loop bug. [bso#12855]
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jun 28 08:12:12 UTC 2011 - rguenther@novell.com Tue Jun 28 08:12:12 UTC 2011 - rguenther@novell.com

View File

@ -1,5 +1,5 @@
# #
# spec file for package cross-mips-binutils # spec file for package binutils
# #
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
# #
@ -17,7 +17,7 @@
Name: cross-mips-binutils Name: cross-mips-binutils
BuildRequires: bison dejagnu flex gcc-c++ BuildRequires: bison dejagnu flex gcc-c++
# for the testsuite # for the testsuite
%if 0%{suse_version} >= 1210 %if 0%{suse_version} >= 1210
@ -31,7 +31,7 @@ BuildRequires: zlib-devel-static
BuildRequires: zlib-devel BuildRequires: zlib-devel
%endif %endif
Version: 2.21.1 Version: 2.21.1
Release: 2 Release: 6
# #
# RUN_TESTS # RUN_TESTS
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
@ -95,6 +95,7 @@ Patch16: amd-bdver2-and-fixes2.diff.gz
Patch17: binutils-add-pep.diff Patch17: binutils-add-pep.diff
Patch18: gold-depend-on-opcodes.diff Patch18: gold-depend-on-opcodes.diff
Patch19: readelf-bad-elf-endless-loop.patch Patch19: readelf-bad-elf-endless-loop.patch
Patch20: bso12982.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
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -281,6 +282,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
%patch17 -p1 %patch17 -p1
%patch18 %patch18
%patch19 %patch19
%patch20 -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

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
- Add patch for bogus executable stack setting with -flto. [bso#12982]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com
@ -6,7 +11,7 @@ Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jul 5 12:42:10 UTC 2011 - saschpe@suse.de Tue Jul 5 12:42:10 UTC 2011 - saschpe@suse.de
- Add patch to fix a readelf endless loop bug [#12855] - Add patch to fix a readelf endless loop bug. [bso#12855]
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jun 28 08:12:12 UTC 2011 - rguenther@novell.com Tue Jun 28 08:12:12 UTC 2011 - rguenther@novell.com

View File

@ -1,5 +1,5 @@
# #
# spec file for package cross-ppc-binutils # spec file for package binutils
# #
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
# #
@ -17,7 +17,7 @@
Name: cross-ppc-binutils Name: cross-ppc-binutils
BuildRequires: bison dejagnu flex gcc-c++ BuildRequires: bison dejagnu flex gcc-c++
# for the testsuite # for the testsuite
%if 0%{suse_version} >= 1210 %if 0%{suse_version} >= 1210
@ -31,7 +31,7 @@ BuildRequires: zlib-devel-static
BuildRequires: zlib-devel BuildRequires: zlib-devel
%endif %endif
Version: 2.21.1 Version: 2.21.1
Release: 2 Release: 6
# #
# RUN_TESTS # RUN_TESTS
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
@ -95,6 +95,7 @@ Patch16: amd-bdver2-and-fixes2.diff.gz
Patch17: binutils-add-pep.diff Patch17: binutils-add-pep.diff
Patch18: gold-depend-on-opcodes.diff Patch18: gold-depend-on-opcodes.diff
Patch19: readelf-bad-elf-endless-loop.patch Patch19: readelf-bad-elf-endless-loop.patch
Patch20: bso12982.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
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -281,6 +282,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
%patch17 -p1 %patch17 -p1
%patch18 %patch18
%patch19 %patch19
%patch20 -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

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
- Add patch for bogus executable stack setting with -flto. [bso#12982]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com
@ -6,7 +11,7 @@ Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jul 5 12:42:10 UTC 2011 - saschpe@suse.de Tue Jul 5 12:42:10 UTC 2011 - saschpe@suse.de
- Add patch to fix a readelf endless loop bug [#12855] - Add patch to fix a readelf endless loop bug. [bso#12855]
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jun 28 08:12:12 UTC 2011 - rguenther@novell.com Tue Jun 28 08:12:12 UTC 2011 - rguenther@novell.com

View File

@ -1,5 +1,5 @@
# #
# spec file for package cross-ppc64-binutils # spec file for package binutils
# #
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
# #
@ -17,7 +17,7 @@
Name: cross-ppc64-binutils Name: cross-ppc64-binutils
BuildRequires: bison dejagnu flex gcc-c++ BuildRequires: bison dejagnu flex gcc-c++
# for the testsuite # for the testsuite
%if 0%{suse_version} >= 1210 %if 0%{suse_version} >= 1210
@ -31,7 +31,7 @@ BuildRequires: zlib-devel-static
BuildRequires: zlib-devel BuildRequires: zlib-devel
%endif %endif
Version: 2.21.1 Version: 2.21.1
Release: 2 Release: 6
# #
# RUN_TESTS # RUN_TESTS
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
@ -95,6 +95,7 @@ Patch16: amd-bdver2-and-fixes2.diff.gz
Patch17: binutils-add-pep.diff Patch17: binutils-add-pep.diff
Patch18: gold-depend-on-opcodes.diff Patch18: gold-depend-on-opcodes.diff
Patch19: readelf-bad-elf-endless-loop.patch Patch19: readelf-bad-elf-endless-loop.patch
Patch20: bso12982.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
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -281,6 +282,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
%patch17 -p1 %patch17 -p1
%patch18 %patch18
%patch19 %patch19
%patch20 -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

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
- Add patch for bogus executable stack setting with -flto. [bso#12982]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com
@ -6,7 +11,7 @@ Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jul 5 12:42:10 UTC 2011 - saschpe@suse.de Tue Jul 5 12:42:10 UTC 2011 - saschpe@suse.de
- Add patch to fix a readelf endless loop bug [#12855] - Add patch to fix a readelf endless loop bug. [bso#12855]
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jun 28 08:12:12 UTC 2011 - rguenther@novell.com Tue Jun 28 08:12:12 UTC 2011 - rguenther@novell.com

View File

@ -1,5 +1,5 @@
# #
# spec file for package cross-s390-binutils # spec file for package binutils
# #
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
# #
@ -17,7 +17,7 @@
Name: cross-s390-binutils Name: cross-s390-binutils
BuildRequires: bison dejagnu flex gcc-c++ BuildRequires: bison dejagnu flex gcc-c++
# for the testsuite # for the testsuite
%if 0%{suse_version} >= 1210 %if 0%{suse_version} >= 1210
@ -31,7 +31,7 @@ BuildRequires: zlib-devel-static
BuildRequires: zlib-devel BuildRequires: zlib-devel
%endif %endif
Version: 2.21.1 Version: 2.21.1
Release: 2 Release: 6
# #
# RUN_TESTS # RUN_TESTS
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
@ -95,6 +95,7 @@ Patch16: amd-bdver2-and-fixes2.diff.gz
Patch17: binutils-add-pep.diff Patch17: binutils-add-pep.diff
Patch18: gold-depend-on-opcodes.diff Patch18: gold-depend-on-opcodes.diff
Patch19: readelf-bad-elf-endless-loop.patch Patch19: readelf-bad-elf-endless-loop.patch
Patch20: bso12982.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
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -281,6 +282,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
%patch17 -p1 %patch17 -p1
%patch18 %patch18
%patch19 %patch19
%patch20 -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

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
- Add patch for bogus executable stack setting with -flto. [bso#12982]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com
@ -6,7 +11,7 @@ Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jul 5 12:42:10 UTC 2011 - saschpe@suse.de Tue Jul 5 12:42:10 UTC 2011 - saschpe@suse.de
- Add patch to fix a readelf endless loop bug [#12855] - Add patch to fix a readelf endless loop bug. [bso#12855]
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jun 28 08:12:12 UTC 2011 - rguenther@novell.com Tue Jun 28 08:12:12 UTC 2011 - rguenther@novell.com

View File

@ -1,5 +1,5 @@
# #
# spec file for package cross-s390x-binutils # spec file for package binutils
# #
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
# #
@ -17,7 +17,7 @@
Name: cross-s390x-binutils Name: cross-s390x-binutils
BuildRequires: bison dejagnu flex gcc-c++ BuildRequires: bison dejagnu flex gcc-c++
# for the testsuite # for the testsuite
%if 0%{suse_version} >= 1210 %if 0%{suse_version} >= 1210
@ -31,7 +31,7 @@ BuildRequires: zlib-devel-static
BuildRequires: zlib-devel BuildRequires: zlib-devel
%endif %endif
Version: 2.21.1 Version: 2.21.1
Release: 2 Release: 6
# #
# RUN_TESTS # RUN_TESTS
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
@ -95,6 +95,7 @@ Patch16: amd-bdver2-and-fixes2.diff.gz
Patch17: binutils-add-pep.diff Patch17: binutils-add-pep.diff
Patch18: gold-depend-on-opcodes.diff Patch18: gold-depend-on-opcodes.diff
Patch19: readelf-bad-elf-endless-loop.patch Patch19: readelf-bad-elf-endless-loop.patch
Patch20: bso12982.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
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -281,6 +282,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
%patch17 -p1 %patch17 -p1
%patch18 %patch18
%patch19 %patch19
%patch20 -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

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
- Add patch for bogus executable stack setting with -flto. [bso#12982]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com
@ -6,7 +11,7 @@ Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jul 5 12:42:10 UTC 2011 - saschpe@suse.de Tue Jul 5 12:42:10 UTC 2011 - saschpe@suse.de
- Add patch to fix a readelf endless loop bug [#12855] - Add patch to fix a readelf endless loop bug. [bso#12855]
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jun 28 08:12:12 UTC 2011 - rguenther@novell.com Tue Jun 28 08:12:12 UTC 2011 - rguenther@novell.com

View File

@ -1,5 +1,5 @@
# #
# spec file for package cross-sparc-binutils # spec file for package binutils
# #
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
# #
@ -17,7 +17,7 @@
Name: cross-sparc-binutils Name: cross-sparc-binutils
BuildRequires: bison dejagnu flex gcc-c++ BuildRequires: bison dejagnu flex gcc-c++
# for the testsuite # for the testsuite
%if 0%{suse_version} >= 1210 %if 0%{suse_version} >= 1210
@ -31,7 +31,7 @@ BuildRequires: zlib-devel-static
BuildRequires: zlib-devel BuildRequires: zlib-devel
%endif %endif
Version: 2.21.1 Version: 2.21.1
Release: 2 Release: 6
# #
# RUN_TESTS # RUN_TESTS
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
@ -95,6 +95,7 @@ Patch16: amd-bdver2-and-fixes2.diff.gz
Patch17: binutils-add-pep.diff Patch17: binutils-add-pep.diff
Patch18: gold-depend-on-opcodes.diff Patch18: gold-depend-on-opcodes.diff
Patch19: readelf-bad-elf-endless-loop.patch Patch19: readelf-bad-elf-endless-loop.patch
Patch20: bso12982.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
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -281,6 +282,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
%patch17 -p1 %patch17 -p1
%patch18 %patch18
%patch19 %patch19
%patch20 -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

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
- Add patch for bogus executable stack setting with -flto. [bso#12982]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com
@ -6,7 +11,7 @@ Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jul 5 12:42:10 UTC 2011 - saschpe@suse.de Tue Jul 5 12:42:10 UTC 2011 - saschpe@suse.de
- Add patch to fix a readelf endless loop bug [#12855] - Add patch to fix a readelf endless loop bug. [bso#12855]
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jun 28 08:12:12 UTC 2011 - rguenther@novell.com Tue Jun 28 08:12:12 UTC 2011 - rguenther@novell.com

View File

@ -1,5 +1,5 @@
# #
# spec file for package cross-spu-binutils # spec file for package binutils
# #
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
# #
@ -17,7 +17,7 @@
Name: cross-spu-binutils Name: cross-spu-binutils
BuildRequires: bison dejagnu flex gcc-c++ BuildRequires: bison dejagnu flex gcc-c++
# for the testsuite # for the testsuite
%if 0%{suse_version} >= 1210 %if 0%{suse_version} >= 1210
@ -31,7 +31,7 @@ BuildRequires: zlib-devel-static
BuildRequires: zlib-devel BuildRequires: zlib-devel
%endif %endif
Version: 2.21.1 Version: 2.21.1
Release: 2 Release: 6
# #
# RUN_TESTS # RUN_TESTS
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
@ -95,6 +95,7 @@ Patch16: amd-bdver2-and-fixes2.diff.gz
Patch17: binutils-add-pep.diff Patch17: binutils-add-pep.diff
Patch18: gold-depend-on-opcodes.diff Patch18: gold-depend-on-opcodes.diff
Patch19: readelf-bad-elf-endless-loop.patch Patch19: readelf-bad-elf-endless-loop.patch
Patch20: bso12982.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
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -281,6 +282,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
%patch17 -p1 %patch17 -p1
%patch18 %patch18
%patch19 %patch19
%patch20 -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

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
- Add patch for bogus executable stack setting with -flto. [bso#12982]
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com
@ -6,7 +11,7 @@ Mon Jul 11 08:42:13 UTC 2011 - rguenther@novell.com
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jul 5 12:42:10 UTC 2011 - saschpe@suse.de Tue Jul 5 12:42:10 UTC 2011 - saschpe@suse.de
- Add patch to fix a readelf endless loop bug [#12855] - Add patch to fix a readelf endless loop bug. [bso#12855]
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jun 28 08:12:12 UTC 2011 - rguenther@novell.com Tue Jun 28 08:12:12 UTC 2011 - rguenther@novell.com

View File

@ -1,5 +1,5 @@
# #
# spec file for package cross-x86_64-binutils # spec file for package binutils
# #
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
# #
@ -17,7 +17,7 @@
Name: cross-x86_64-binutils Name: cross-x86_64-binutils
BuildRequires: bison dejagnu flex gcc-c++ BuildRequires: bison dejagnu flex gcc-c++
# for the testsuite # for the testsuite
%if 0%{suse_version} >= 1210 %if 0%{suse_version} >= 1210
@ -31,7 +31,7 @@ BuildRequires: zlib-devel-static
BuildRequires: zlib-devel BuildRequires: zlib-devel
%endif %endif
Version: 2.21.1 Version: 2.21.1
Release: 2 Release: 6
# #
# RUN_TESTS # RUN_TESTS
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
@ -95,6 +95,7 @@ Patch16: amd-bdver2-and-fixes2.diff.gz
Patch17: binutils-add-pep.diff Patch17: binutils-add-pep.diff
Patch18: gold-depend-on-opcodes.diff Patch18: gold-depend-on-opcodes.diff
Patch19: readelf-bad-elf-endless-loop.patch Patch19: readelf-bad-elf-endless-loop.patch
Patch20: bso12982.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
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -281,6 +282,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
%patch17 -p1 %patch17 -p1
%patch18 %patch18
%patch19 %patch19
%patch20 -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