Accepting request 79447 from home:a_jaeger:branches:openSUSE:Factory
Make --no-copy-dt-needed-default the default for ld. OBS-URL: https://build.opensuse.org/request/show/79447 OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=63
This commit is contained in:
parent
32c5a46368
commit
78e1a393dd
65
binutils-no-copy-dt-needed-default.patch
Normal file
65
binutils-no-copy-dt-needed-default.patch
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
From: Michael Matz <matz at suse dot de>
|
||||||
|
To: Ian Lance Taylor <iant at google dot com>
|
||||||
|
Cc: binutils at sourceware dot org
|
||||||
|
Subject: Re: Make no-copy-dt-needed default?
|
||||||
|
|
||||||
|
|
||||||
|
* ldmain.c (add_DT_NEEDED_for_dynamic): Default to FALSE.
|
||||||
|
* ld.texinfo (--copy-dt-needed-entries): Mention new default.
|
||||||
|
|
||||||
|
Index: ld.texinfo
|
||||||
|
===================================================================
|
||||||
|
RCS file: /cvs/src/src/ld/ld.texinfo,v
|
||||||
|
retrieving revision 1.279
|
||||||
|
diff -u -p -r1.279 ld.texinfo
|
||||||
|
--- ld/ld.texinfo 9 Aug 2011 13:10:44 -0000 1.279
|
||||||
|
+++ ld/ld.texinfo 16 Aug 2011 15:58:50 -0000
|
||||||
|
@@ -1258,21 +1258,20 @@ option.
|
||||||
|
@itemx --no-copy-dt-needed-entries
|
||||||
|
This option affects the treatment of dynamic libraries referred to
|
||||||
|
by DT_NEEDED tags @emph{inside} ELF dynamic libraries mentioned on the
|
||||||
|
-command line. Normally the linker will add a DT_NEEDED tag to the
|
||||||
|
+command line. Normally the linker won't add a DT_NEEDED tag to the
|
||||||
|
output binary for each library mentioned in a DT_NEEDED tag in an
|
||||||
|
-input dynamic library. With @option{--no-copy-dt-needed-entries}
|
||||||
|
+input dynamic library. With @option{--copy-dt-needed-entries}
|
||||||
|
specified on the command line however any dynamic libraries that
|
||||||
|
-follow it will have their DT_NEEDED entries ignored. The default
|
||||||
|
-behaviour can be restored with @option{--copy-dt-needed-entries}.
|
||||||
|
+follow it will have their DT_NEEDED entries added. The default
|
||||||
|
+behaviour can be restored with @option{--no-copy-dt-needed-entries}.
|
||||||
|
|
||||||
|
This option also has an effect on the resolution of symbols in dynamic
|
||||||
|
-libraries. With the default setting dynamic libraries mentioned on
|
||||||
|
-the command line will be recursively searched, following their
|
||||||
|
-DT_NEEDED tags to other libraries, in order to resolve symbols
|
||||||
|
-required by the output binary. With
|
||||||
|
-@option{--no-copy-dt-needed-entries} specified however the searching
|
||||||
|
-of dynamic libraries that follow it will stop with the dynamic
|
||||||
|
-library itself. No DT_NEEDED links will be traversed to resolve
|
||||||
|
+libraries. With @option{--copy-dt-needed-entries} dynamic libraries
|
||||||
|
+mentioned on the command line will be recursively searched, following
|
||||||
|
+their DT_NEEDED tags to other libraries, in order to resolve symbols
|
||||||
|
+required by the output binary. With the default setting however
|
||||||
|
+the searching of dynamic libraries that follow it will stop with the
|
||||||
|
+dynamic library itself. No DT_NEEDED links will be traversed to resolve
|
||||||
|
symbols.
|
||||||
|
|
||||||
|
@cindex cross reference table
|
||||||
|
Index: ldmain.c
|
||||||
|
===================================================================
|
||||||
|
RCS file: /cvs/src/src/ld/ldmain.c,v
|
||||||
|
retrieving revision 1.158
|
||||||
|
diff -u -p -r1.158 ldmain.c
|
||||||
|
--- ld/ldmain.c 4 Aug 2011 20:47:46 -0000 1.158
|
||||||
|
+++ ld/ldmain.c 16 Aug 2011 15:58:50 -0000
|
||||||
|
@@ -105,7 +105,7 @@ bfd_boolean add_DT_NEEDED_for_regular;
|
||||||
|
/* True means create DT_NEEDED entries for dynamic libraries that
|
||||||
|
are DT_NEEDED by dynamic libraries specifically mentioned on
|
||||||
|
the command line. */
|
||||||
|
-bfd_boolean add_DT_NEEDED_for_dynamic = TRUE;
|
||||||
|
+bfd_boolean add_DT_NEEDED_for_dynamic;
|
||||||
|
|
||||||
|
/* TRUE if we should demangle symbol names. */
|
||||||
|
bfd_boolean demangling;
|
||||||
|
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
||||||
|
|
||||||
|
- Make --no-copy-dt-needed-default the default for ld.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
|
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
|
||||||
|
|
||||||
|
@ -96,6 +96,7 @@ 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
|
Patch20: bso12982.diff
|
||||||
|
Patch21: binutils-no-copy-dt-needed-default.patch
|
||||||
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
|
||||||
@ -311,6 +312,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch18
|
%patch18
|
||||||
%patch19
|
%patch19
|
||||||
%patch20 -p1
|
%patch20 -p1
|
||||||
|
%patch21
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
||||||
|
|
||||||
|
- Make --no-copy-dt-needed-default the default for ld.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
|
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
|
||||||
|
|
||||||
|
@ -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.
|
||||||
#
|
#
|
||||||
@ -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: 3
|
Release: 8
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -96,6 +96,7 @@ 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
|
Patch20: bso12982.diff
|
||||||
|
Patch21: binutils-no-copy-dt-needed-default.patch
|
||||||
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
|
||||||
@ -283,6 +284,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch18
|
%patch18
|
||||||
%patch19
|
%patch19
|
||||||
%patch20 -p1
|
%patch20 -p1
|
||||||
|
%patch21
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
||||||
|
|
||||||
|
- Make --no-copy-dt-needed-default the default for ld.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
|
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
|
||||||
|
|
||||||
|
@ -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.
|
||||||
#
|
#
|
||||||
@ -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: 3
|
Release: 8
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -96,6 +96,7 @@ 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
|
Patch20: bso12982.diff
|
||||||
|
Patch21: binutils-no-copy-dt-needed-default.patch
|
||||||
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
|
||||||
@ -283,6 +284,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch18
|
%patch18
|
||||||
%patch19
|
%patch19
|
||||||
%patch20 -p1
|
%patch20 -p1
|
||||||
|
%patch21
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
||||||
|
|
||||||
|
- Make --no-copy-dt-needed-default the default for ld.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
|
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
|
||||||
|
|
||||||
|
@ -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.
|
||||||
#
|
#
|
||||||
@ -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: 3
|
Release: 8
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -96,6 +96,7 @@ 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
|
Patch20: bso12982.diff
|
||||||
|
Patch21: binutils-no-copy-dt-needed-default.patch
|
||||||
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
|
||||||
@ -283,6 +284,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch18
|
%patch18
|
||||||
%patch19
|
%patch19
|
||||||
%patch20 -p1
|
%patch20 -p1
|
||||||
|
%patch21
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
||||||
|
|
||||||
|
- Make --no-copy-dt-needed-default the default for ld.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
|
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
|
||||||
|
|
||||||
|
@ -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.
|
||||||
#
|
#
|
||||||
@ -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: 3
|
Release: 8
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -96,6 +96,7 @@ 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
|
Patch20: bso12982.diff
|
||||||
|
Patch21: binutils-no-copy-dt-needed-default.patch
|
||||||
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
|
||||||
@ -283,6 +284,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch18
|
%patch18
|
||||||
%patch19
|
%patch19
|
||||||
%patch20 -p1
|
%patch20 -p1
|
||||||
|
%patch21
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
||||||
|
|
||||||
|
- Make --no-copy-dt-needed-default the default for ld.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
|
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
|
||||||
|
|
||||||
|
@ -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.
|
||||||
#
|
#
|
||||||
@ -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: 3
|
Release: 8
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -96,6 +96,7 @@ 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
|
Patch20: bso12982.diff
|
||||||
|
Patch21: binutils-no-copy-dt-needed-default.patch
|
||||||
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
|
||||||
@ -283,6 +284,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch18
|
%patch18
|
||||||
%patch19
|
%patch19
|
||||||
%patch20 -p1
|
%patch20 -p1
|
||||||
|
%patch21
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
||||||
|
|
||||||
|
- Make --no-copy-dt-needed-default the default for ld.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
|
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
|
||||||
|
|
||||||
|
@ -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.
|
||||||
#
|
#
|
||||||
@ -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: 3
|
Release: 8
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -96,6 +96,7 @@ 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
|
Patch20: bso12982.diff
|
||||||
|
Patch21: binutils-no-copy-dt-needed-default.patch
|
||||||
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
|
||||||
@ -283,6 +284,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch18
|
%patch18
|
||||||
%patch19
|
%patch19
|
||||||
%patch20 -p1
|
%patch20 -p1
|
||||||
|
%patch21
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
||||||
|
|
||||||
|
- Make --no-copy-dt-needed-default the default for ld.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
|
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
|
||||||
|
|
||||||
|
@ -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.
|
||||||
#
|
#
|
||||||
@ -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: 3
|
Release: 8
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -96,6 +96,7 @@ 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
|
Patch20: bso12982.diff
|
||||||
|
Patch21: binutils-no-copy-dt-needed-default.patch
|
||||||
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
|
||||||
@ -283,6 +284,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch18
|
%patch18
|
||||||
%patch19
|
%patch19
|
||||||
%patch20 -p1
|
%patch20 -p1
|
||||||
|
%patch21
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
||||||
|
|
||||||
|
- Make --no-copy-dt-needed-default the default for ld.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
|
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
|
||||||
|
|
||||||
|
@ -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.
|
||||||
#
|
#
|
||||||
@ -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: 3
|
Release: 8
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -96,6 +96,7 @@ 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
|
Patch20: bso12982.diff
|
||||||
|
Patch21: binutils-no-copy-dt-needed-default.patch
|
||||||
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
|
||||||
@ -283,6 +284,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch18
|
%patch18
|
||||||
%patch19
|
%patch19
|
||||||
%patch20 -p1
|
%patch20 -p1
|
||||||
|
%patch21
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
||||||
|
|
||||||
|
- Make --no-copy-dt-needed-default the default for ld.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
|
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
|
||||||
|
|
||||||
|
@ -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.
|
||||||
#
|
#
|
||||||
@ -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: 3
|
Release: 8
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -96,6 +96,7 @@ 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
|
Patch20: bso12982.diff
|
||||||
|
Patch21: binutils-no-copy-dt-needed-default.patch
|
||||||
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
|
||||||
@ -283,6 +284,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch18
|
%patch18
|
||||||
%patch19
|
%patch19
|
||||||
%patch20 -p1
|
%patch20 -p1
|
||||||
|
%patch21
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
||||||
|
|
||||||
|
- Make --no-copy-dt-needed-default the default for ld.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
|
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
|
||||||
|
|
||||||
|
@ -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.
|
||||||
#
|
#
|
||||||
@ -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: 3
|
Release: 8
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -96,6 +96,7 @@ 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
|
Patch20: bso12982.diff
|
||||||
|
Patch21: binutils-no-copy-dt-needed-default.patch
|
||||||
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
|
||||||
@ -283,6 +284,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch18
|
%patch18
|
||||||
%patch19
|
%patch19
|
||||||
%patch20 -p1
|
%patch20 -p1
|
||||||
|
%patch21
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
||||||
|
|
||||||
|
- Make --no-copy-dt-needed-default the default for ld.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
|
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
|
||||||
|
|
||||||
|
@ -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.
|
||||||
#
|
#
|
||||||
@ -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: 3
|
Release: 8
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -96,6 +96,7 @@ 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
|
Patch20: bso12982.diff
|
||||||
|
Patch21: binutils-no-copy-dt-needed-default.patch
|
||||||
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
|
||||||
@ -283,6 +284,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch18
|
%patch18
|
||||||
%patch19
|
%patch19
|
||||||
%patch20 -p1
|
%patch20 -p1
|
||||||
|
%patch21
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
||||||
|
|
||||||
|
- Make --no-copy-dt-needed-default the default for ld.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
|
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
|
||||||
|
|
||||||
|
@ -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.
|
||||||
#
|
#
|
||||||
@ -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: 3
|
Release: 8
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -96,6 +96,7 @@ 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
|
Patch20: bso12982.diff
|
||||||
|
Patch21: binutils-no-copy-dt-needed-default.patch
|
||||||
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
|
||||||
@ -283,6 +284,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch18
|
%patch18
|
||||||
%patch19
|
%patch19
|
||||||
%patch20 -p1
|
%patch20 -p1
|
||||||
|
%patch21
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
||||||
|
|
||||||
|
- Make --no-copy-dt-needed-default the default for ld.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
|
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
|
||||||
|
|
||||||
|
@ -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.
|
||||||
#
|
#
|
||||||
@ -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: 3
|
Release: 8
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -96,6 +96,7 @@ 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
|
Patch20: bso12982.diff
|
||||||
|
Patch21: binutils-no-copy-dt-needed-default.patch
|
||||||
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
|
||||||
@ -283,6 +284,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch18
|
%patch18
|
||||||
%patch19
|
%patch19
|
||||||
%patch20 -p1
|
%patch20 -p1
|
||||||
|
%patch21
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
||||||
|
|
||||||
|
- Make --no-copy-dt-needed-default the default for ld.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
|
Tue Jul 12 08:54:56 UTC 2011 - rguenther@novell.com
|
||||||
|
|
||||||
|
@ -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.
|
||||||
#
|
#
|
||||||
@ -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: 3
|
Release: 8
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -96,6 +96,7 @@ 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
|
Patch20: bso12982.diff
|
||||||
|
Patch21: binutils-no-copy-dt-needed-default.patch
|
||||||
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
|
||||||
@ -283,6 +284,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch18
|
%patch18
|
||||||
%patch19
|
%patch19
|
||||||
%patch20 -p1
|
%patch20 -p1
|
||||||
|
%patch21
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
|
Loading…
Reference in New Issue
Block a user