forked from pool/binutils
- Revert back to --copy-dt-needed-entries being the default for ld.
- Make --no-copy-dt-needed-entries the default for ld. OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=66
This commit is contained in:
parent
61b85cabb1
commit
da09f347b2
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Aug 29 08:09:15 UTC 2011 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Revert back to --copy-dt-needed-entries being the default for ld.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
||||||
|
|
||||||
@ -6,7 +11,7 @@ Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
||||||
|
|
||||||
- Make --no-copy-dt-needed-default the default for ld.
|
- Make --no-copy-dt-needed-entries 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,7 +96,8 @@ 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
|
# Too much fallout for now
|
||||||
|
#Patch21: binutils-no-copy-dt-needed-default.patch
|
||||||
Patch22: bnc713504.diff
|
Patch22: bnc713504.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
|
||||||
@ -313,7 +314,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch18
|
%patch18
|
||||||
%patch19
|
%patch19
|
||||||
%patch20 -p1
|
%patch20 -p1
|
||||||
%patch21
|
#%patch21
|
||||||
%patch22
|
%patch22
|
||||||
%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
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Aug 29 08:09:15 UTC 2011 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Revert back to --copy-dt-needed-entries being the default for ld.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
||||||
|
|
||||||
@ -6,7 +11,7 @@ Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
||||||
|
|
||||||
- Make --no-copy-dt-needed-default the default for ld.
|
- Make --no-copy-dt-needed-entries 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.
|
||||||
#
|
#
|
||||||
@ -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: 4
|
Release: 10
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -96,7 +96,8 @@ 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
|
# Too much fallout for now
|
||||||
|
#Patch21: binutils-no-copy-dt-needed-default.patch
|
||||||
Patch22: bnc713504.diff
|
Patch22: bnc713504.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
|
||||||
@ -285,7 +286,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch18
|
%patch18
|
||||||
%patch19
|
%patch19
|
||||||
%patch20 -p1
|
%patch20 -p1
|
||||||
%patch21
|
#%patch21
|
||||||
%patch22
|
%patch22
|
||||||
%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
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Aug 29 08:09:15 UTC 2011 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Revert back to --copy-dt-needed-entries being the default for ld.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
||||||
|
|
||||||
@ -6,7 +11,7 @@ Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
||||||
|
|
||||||
- Make --no-copy-dt-needed-default the default for ld.
|
- Make --no-copy-dt-needed-entries 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.
|
||||||
#
|
#
|
||||||
@ -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: 4
|
Release: 10
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -96,7 +96,8 @@ 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
|
# Too much fallout for now
|
||||||
|
#Patch21: binutils-no-copy-dt-needed-default.patch
|
||||||
Patch22: bnc713504.diff
|
Patch22: bnc713504.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
|
||||||
@ -285,7 +286,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch18
|
%patch18
|
||||||
%patch19
|
%patch19
|
||||||
%patch20 -p1
|
%patch20 -p1
|
||||||
%patch21
|
#%patch21
|
||||||
%patch22
|
%patch22
|
||||||
%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
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Aug 29 08:09:15 UTC 2011 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Revert back to --copy-dt-needed-entries being the default for ld.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
||||||
|
|
||||||
@ -6,7 +11,7 @@ Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
||||||
|
|
||||||
- Make --no-copy-dt-needed-default the default for ld.
|
- Make --no-copy-dt-needed-entries 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.
|
||||||
#
|
#
|
||||||
@ -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: 4
|
Release: 10
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -96,7 +96,8 @@ 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
|
# Too much fallout for now
|
||||||
|
#Patch21: binutils-no-copy-dt-needed-default.patch
|
||||||
Patch22: bnc713504.diff
|
Patch22: bnc713504.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
|
||||||
@ -285,7 +286,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch18
|
%patch18
|
||||||
%patch19
|
%patch19
|
||||||
%patch20 -p1
|
%patch20 -p1
|
||||||
%patch21
|
#%patch21
|
||||||
%patch22
|
%patch22
|
||||||
%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
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Aug 29 08:09:15 UTC 2011 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Revert back to --copy-dt-needed-entries being the default for ld.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
||||||
|
|
||||||
@ -6,7 +11,7 @@ Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
||||||
|
|
||||||
- Make --no-copy-dt-needed-default the default for ld.
|
- Make --no-copy-dt-needed-entries 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.
|
||||||
#
|
#
|
||||||
@ -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: 4
|
Release: 10
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -96,7 +96,8 @@ 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
|
# Too much fallout for now
|
||||||
|
#Patch21: binutils-no-copy-dt-needed-default.patch
|
||||||
Patch22: bnc713504.diff
|
Patch22: bnc713504.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
|
||||||
@ -285,7 +286,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch18
|
%patch18
|
||||||
%patch19
|
%patch19
|
||||||
%patch20 -p1
|
%patch20 -p1
|
||||||
%patch21
|
#%patch21
|
||||||
%patch22
|
%patch22
|
||||||
%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
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Aug 29 08:09:15 UTC 2011 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Revert back to --copy-dt-needed-entries being the default for ld.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
||||||
|
|
||||||
@ -6,7 +11,7 @@ Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
||||||
|
|
||||||
- Make --no-copy-dt-needed-default the default for ld.
|
- Make --no-copy-dt-needed-entries 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.
|
||||||
#
|
#
|
||||||
@ -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: 4
|
Release: 10
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -96,7 +96,8 @@ 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
|
# Too much fallout for now
|
||||||
|
#Patch21: binutils-no-copy-dt-needed-default.patch
|
||||||
Patch22: bnc713504.diff
|
Patch22: bnc713504.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
|
||||||
@ -285,7 +286,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch18
|
%patch18
|
||||||
%patch19
|
%patch19
|
||||||
%patch20 -p1
|
%patch20 -p1
|
||||||
%patch21
|
#%patch21
|
||||||
%patch22
|
%patch22
|
||||||
%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
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Aug 29 08:09:15 UTC 2011 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Revert back to --copy-dt-needed-entries being the default for ld.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
||||||
|
|
||||||
@ -6,7 +11,7 @@ Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
||||||
|
|
||||||
- Make --no-copy-dt-needed-default the default for ld.
|
- Make --no-copy-dt-needed-entries 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.
|
||||||
#
|
#
|
||||||
@ -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: 4
|
Release: 10
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -96,7 +96,8 @@ 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
|
# Too much fallout for now
|
||||||
|
#Patch21: binutils-no-copy-dt-needed-default.patch
|
||||||
Patch22: bnc713504.diff
|
Patch22: bnc713504.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
|
||||||
@ -285,7 +286,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch18
|
%patch18
|
||||||
%patch19
|
%patch19
|
||||||
%patch20 -p1
|
%patch20 -p1
|
||||||
%patch21
|
#%patch21
|
||||||
%patch22
|
%patch22
|
||||||
%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
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Aug 29 08:09:15 UTC 2011 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Revert back to --copy-dt-needed-entries being the default for ld.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
||||||
|
|
||||||
@ -6,7 +11,7 @@ Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
||||||
|
|
||||||
- Make --no-copy-dt-needed-default the default for ld.
|
- Make --no-copy-dt-needed-entries 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.
|
||||||
#
|
#
|
||||||
@ -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: 4
|
Release: 10
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -96,7 +96,8 @@ 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
|
# Too much fallout for now
|
||||||
|
#Patch21: binutils-no-copy-dt-needed-default.patch
|
||||||
Patch22: bnc713504.diff
|
Patch22: bnc713504.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
|
||||||
@ -285,7 +286,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch18
|
%patch18
|
||||||
%patch19
|
%patch19
|
||||||
%patch20 -p1
|
%patch20 -p1
|
||||||
%patch21
|
#%patch21
|
||||||
%patch22
|
%patch22
|
||||||
%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
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Aug 29 08:09:15 UTC 2011 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Revert back to --copy-dt-needed-entries being the default for ld.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
||||||
|
|
||||||
@ -6,7 +11,7 @@ Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
||||||
|
|
||||||
- Make --no-copy-dt-needed-default the default for ld.
|
- Make --no-copy-dt-needed-entries 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.
|
||||||
#
|
#
|
||||||
@ -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: 4
|
Release: 10
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -96,7 +96,8 @@ 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
|
# Too much fallout for now
|
||||||
|
#Patch21: binutils-no-copy-dt-needed-default.patch
|
||||||
Patch22: bnc713504.diff
|
Patch22: bnc713504.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
|
||||||
@ -285,7 +286,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch18
|
%patch18
|
||||||
%patch19
|
%patch19
|
||||||
%patch20 -p1
|
%patch20 -p1
|
||||||
%patch21
|
#%patch21
|
||||||
%patch22
|
%patch22
|
||||||
%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
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Aug 29 08:09:15 UTC 2011 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Revert back to --copy-dt-needed-entries being the default for ld.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
||||||
|
|
||||||
@ -6,7 +11,7 @@ Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
||||||
|
|
||||||
- Make --no-copy-dt-needed-default the default for ld.
|
- Make --no-copy-dt-needed-entries 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.
|
||||||
#
|
#
|
||||||
@ -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: 4
|
Release: 10
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -96,7 +96,8 @@ 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
|
# Too much fallout for now
|
||||||
|
#Patch21: binutils-no-copy-dt-needed-default.patch
|
||||||
Patch22: bnc713504.diff
|
Patch22: bnc713504.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
|
||||||
@ -285,7 +286,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch18
|
%patch18
|
||||||
%patch19
|
%patch19
|
||||||
%patch20 -p1
|
%patch20 -p1
|
||||||
%patch21
|
#%patch21
|
||||||
%patch22
|
%patch22
|
||||||
%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
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Aug 29 08:09:15 UTC 2011 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Revert back to --copy-dt-needed-entries being the default for ld.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
||||||
|
|
||||||
@ -6,7 +11,7 @@ Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
||||||
|
|
||||||
- Make --no-copy-dt-needed-default the default for ld.
|
- Make --no-copy-dt-needed-entries 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.
|
||||||
#
|
#
|
||||||
@ -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: 4
|
Release: 10
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -96,7 +96,8 @@ 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
|
# Too much fallout for now
|
||||||
|
#Patch21: binutils-no-copy-dt-needed-default.patch
|
||||||
Patch22: bnc713504.diff
|
Patch22: bnc713504.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
|
||||||
@ -285,7 +286,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch18
|
%patch18
|
||||||
%patch19
|
%patch19
|
||||||
%patch20 -p1
|
%patch20 -p1
|
||||||
%patch21
|
#%patch21
|
||||||
%patch22
|
%patch22
|
||||||
%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
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Aug 29 08:09:15 UTC 2011 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Revert back to --copy-dt-needed-entries being the default for ld.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
||||||
|
|
||||||
@ -6,7 +11,7 @@ Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
||||||
|
|
||||||
- Make --no-copy-dt-needed-default the default for ld.
|
- Make --no-copy-dt-needed-entries 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.
|
||||||
#
|
#
|
||||||
@ -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: 4
|
Release: 10
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -96,7 +96,8 @@ 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
|
# Too much fallout for now
|
||||||
|
#Patch21: binutils-no-copy-dt-needed-default.patch
|
||||||
Patch22: bnc713504.diff
|
Patch22: bnc713504.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
|
||||||
@ -285,7 +286,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch18
|
%patch18
|
||||||
%patch19
|
%patch19
|
||||||
%patch20 -p1
|
%patch20 -p1
|
||||||
%patch21
|
#%patch21
|
||||||
%patch22
|
%patch22
|
||||||
%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
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Aug 29 08:09:15 UTC 2011 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Revert back to --copy-dt-needed-entries being the default for ld.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
||||||
|
|
||||||
@ -6,7 +11,7 @@ Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
||||||
|
|
||||||
- Make --no-copy-dt-needed-default the default for ld.
|
- Make --no-copy-dt-needed-entries 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.
|
||||||
#
|
#
|
||||||
@ -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: 4
|
Release: 10
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -96,7 +96,8 @@ 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
|
# Too much fallout for now
|
||||||
|
#Patch21: binutils-no-copy-dt-needed-default.patch
|
||||||
Patch22: bnc713504.diff
|
Patch22: bnc713504.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
|
||||||
@ -285,7 +286,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch18
|
%patch18
|
||||||
%patch19
|
%patch19
|
||||||
%patch20 -p1
|
%patch20 -p1
|
||||||
%patch21
|
#%patch21
|
||||||
%patch22
|
%patch22
|
||||||
%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
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Aug 29 08:09:15 UTC 2011 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Revert back to --copy-dt-needed-entries being the default for ld.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
||||||
|
|
||||||
@ -6,7 +11,7 @@ Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
||||||
|
|
||||||
- Make --no-copy-dt-needed-default the default for ld.
|
- Make --no-copy-dt-needed-entries 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.
|
||||||
#
|
#
|
||||||
@ -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: 4
|
Release: 10
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -96,7 +96,8 @@ 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
|
# Too much fallout for now
|
||||||
|
#Patch21: binutils-no-copy-dt-needed-default.patch
|
||||||
Patch22: bnc713504.diff
|
Patch22: bnc713504.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
|
||||||
@ -285,7 +286,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch18
|
%patch18
|
||||||
%patch19
|
%patch19
|
||||||
%patch20 -p1
|
%patch20 -p1
|
||||||
%patch21
|
#%patch21
|
||||||
%patch22
|
%patch22
|
||||||
%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
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Aug 29 08:09:15 UTC 2011 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Revert back to --copy-dt-needed-entries being the default for ld.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
||||||
|
|
||||||
@ -6,7 +11,7 @@ Tue Aug 23 11:39:25 UTC 2011 - rguenther@novell.com
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
Sun Aug 21 14:14:41 UTC 2011 - aj@suse.de
|
||||||
|
|
||||||
- Make --no-copy-dt-needed-default the default for ld.
|
- Make --no-copy-dt-needed-entries 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.
|
||||||
#
|
#
|
||||||
@ -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: 4
|
Release: 10
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -96,7 +96,8 @@ 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
|
# Too much fallout for now
|
||||||
|
#Patch21: binutils-no-copy-dt-needed-default.patch
|
||||||
Patch22: bnc713504.diff
|
Patch22: bnc713504.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
|
||||||
@ -285,7 +286,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch18
|
%patch18
|
||||||
%patch19
|
%patch19
|
||||||
%patch20 -p1
|
%patch20 -p1
|
||||||
%patch21
|
#%patch21
|
||||||
%patch22
|
%patch22
|
||||||
%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
|
||||||
|
Loading…
Reference in New Issue
Block a user