OBS User unknown 2009-06-12 14:47:10 +00:00 committed by Git OBS Bridge
parent 7e4dc3f513
commit a63b6f7d79
35 changed files with 217 additions and 17 deletions

View File

@ -0,0 +1,13 @@
Index: ld/ldmain.c
===================================================================
--- ld/ldmain.c.orig 2009-06-09 14:34:35.000000000 +0200
+++ ld/ldmain.c 2009-06-09 14:47:37.000000000 +0200
@@ -277,6 +277,8 @@ main (int argc, char **argv)
link_info.pei386_auto_import = -1;
link_info.spare_dynamic_tags = 5;
link_info.path_separator = ':';
+ if (getenv ("SUSE_IGNORED_RPATHS"))
+ as_needed = TRUE;
ldfile_add_arch ("");
emulation = get_emulation (argc, argv);

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jun 9 14:48:40 CEST 2009 - matz@suse.de
- Use --as-needed by default in the build system.
-------------------------------------------------------------------
Wed May 27 17:12:55 CEST 2009 - rguenther@suse.de

View File

@ -20,7 +20,7 @@
Name: binutils
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
Version: 2.19.51
Release: 7
Release: 8
#
# RUN_TESTS
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
@ -76,6 +76,7 @@ Patch10: enable-targets.diff
Patch11: use-hashtype-both-by-default.diff
Patch12: s390-pic-dso.diff
Patch13: gold-basename.diff
Patch14: binutils-build-as-needed.diff
Patch90: cross-avr-nesc-as.patch
Patch92: cross-avr-omit_section_dynsym.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -283,6 +284,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
%patch11
%patch12
%patch13
%patch14
%if "%{TARGET}" == "avr"
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
%patch90
@ -360,6 +362,7 @@ cd ../build-dir3
make %{?jobs:-j%jobs} all-bfd all-opcodes
%check
unset SUSE_IGNORED_RPATHS
cd build-dir
%ifnarch %arm
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || %{make_check_handling}
@ -425,6 +428,7 @@ make -C gas-nesc %{?jobs:-j%jobs}
%endif
%check
unset SUSE_IGNORED_RPATHS
cd build-dir
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
%endif
@ -539,6 +543,8 @@ rm -rf $RPM_BUILD_ROOT
%{_libdir}/lib*.*a
%changelog
* Tue Jun 09 2009 matz@suse.de
- Use --as-needed by default in the build system.
* Wed May 27 2009 rguenther@suse.de
- Update to head of trunk.
- Add patch to fix gold build with glibc 2.10, gcc 4.4.

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jun 9 14:48:40 CEST 2009 - matz@suse.de
- Use --as-needed by default in the build system.
-------------------------------------------------------------------
Wed May 27 17:12:55 CEST 2009 - rguenther@suse.de

View File

@ -20,7 +20,7 @@
Name: cross-alpha-binutils
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
Version: 2.19.51
Release: 7
Release: 8
#
# RUN_TESTS
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
@ -76,6 +76,7 @@ Patch10: enable-targets.diff
Patch11: use-hashtype-both-by-default.diff
Patch12: s390-pic-dso.diff
Patch13: gold-basename.diff
Patch14: binutils-build-as-needed.diff
Patch90: cross-avr-nesc-as.patch
Patch92: cross-avr-omit_section_dynsym.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -176,6 +177,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
%patch11
%patch12
%patch13
%patch14
%if "%{TARGET}" == "avr"
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
%patch90
@ -246,6 +248,7 @@ cd ../build-dir3
make %{?jobs:-j%jobs} all-bfd all-opcodes
%check
unset SUSE_IGNORED_RPATHS
cd build-dir
%ifnarch %arm
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || %{make_check_handling}
@ -307,6 +310,7 @@ make -C gas-nesc %{?jobs:-j%jobs}
%endif
%check
unset SUSE_IGNORED_RPATHS
cd build-dir
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
%endif
@ -398,6 +402,8 @@ rm -rf $RPM_BUILD_ROOT
%endif
%changelog
* Tue Jun 09 2009 matz@suse.de
- Use --as-needed by default in the build system.
* Wed May 27 2009 rguenther@suse.de
- Update to head of trunk.
- Add patch to fix gold build with glibc 2.10, gcc 4.4.

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jun 9 14:48:40 CEST 2009 - matz@suse.de
- Use --as-needed by default in the build system.
-------------------------------------------------------------------
Wed May 27 17:12:55 CEST 2009 - rguenther@suse.de

View File

@ -20,7 +20,7 @@
Name: cross-arm-binutils
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
Version: 2.19.51
Release: 7
Release: 8
#
# RUN_TESTS
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
@ -76,6 +76,7 @@ Patch10: enable-targets.diff
Patch11: use-hashtype-both-by-default.diff
Patch12: s390-pic-dso.diff
Patch13: gold-basename.diff
Patch14: binutils-build-as-needed.diff
Patch90: cross-avr-nesc-as.patch
Patch92: cross-avr-omit_section_dynsym.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -176,6 +177,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
%patch11
%patch12
%patch13
%patch14
%if "%{TARGET}" == "avr"
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
%patch90
@ -246,6 +248,7 @@ cd ../build-dir3
make %{?jobs:-j%jobs} all-bfd all-opcodes
%check
unset SUSE_IGNORED_RPATHS
cd build-dir
%ifnarch %arm
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || %{make_check_handling}
@ -307,6 +310,7 @@ make -C gas-nesc %{?jobs:-j%jobs}
%endif
%check
unset SUSE_IGNORED_RPATHS
cd build-dir
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
%endif
@ -398,6 +402,8 @@ rm -rf $RPM_BUILD_ROOT
%endif
%changelog
* Tue Jun 09 2009 matz@suse.de
- Use --as-needed by default in the build system.
* Wed May 27 2009 rguenther@suse.de
- Update to head of trunk.
- Add patch to fix gold build with glibc 2.10, gcc 4.4.

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jun 9 14:48:40 CEST 2009 - matz@suse.de
- Use --as-needed by default in the build system.
-------------------------------------------------------------------
Wed May 27 17:12:55 CEST 2009 - rguenther@suse.de

View File

@ -20,7 +20,7 @@
Name: cross-avr-binutils
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
Version: 2.19.51
Release: 7
Release: 8
#
# RUN_TESTS
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
@ -76,6 +76,7 @@ Patch10: enable-targets.diff
Patch11: use-hashtype-both-by-default.diff
Patch12: s390-pic-dso.diff
Patch13: gold-basename.diff
Patch14: binutils-build-as-needed.diff
Patch90: cross-avr-nesc-as.patch
Patch92: cross-avr-omit_section_dynsym.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -176,6 +177,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
%patch11
%patch12
%patch13
%patch14
%if "%{TARGET}" == "avr"
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
%patch90
@ -246,6 +248,7 @@ cd ../build-dir3
make %{?jobs:-j%jobs} all-bfd all-opcodes
%check
unset SUSE_IGNORED_RPATHS
cd build-dir
%ifnarch %arm
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || %{make_check_handling}
@ -307,6 +310,7 @@ make -C gas-nesc %{?jobs:-j%jobs}
%endif
%check
unset SUSE_IGNORED_RPATHS
cd build-dir
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
%endif
@ -398,6 +402,8 @@ rm -rf $RPM_BUILD_ROOT
%endif
%changelog
* Tue Jun 09 2009 matz@suse.de
- Use --as-needed by default in the build system.
* Wed May 27 2009 rguenther@suse.de
- Update to head of trunk.
- Add patch to fix gold build with glibc 2.10, gcc 4.4.

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jun 9 14:48:40 CEST 2009 - matz@suse.de
- Use --as-needed by default in the build system.
-------------------------------------------------------------------
Wed May 27 17:12:55 CEST 2009 - rguenther@suse.de

View File

@ -20,7 +20,7 @@
Name: cross-hppa-binutils
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
Version: 2.19.51
Release: 7
Release: 8
#
# RUN_TESTS
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
@ -76,6 +76,7 @@ Patch10: enable-targets.diff
Patch11: use-hashtype-both-by-default.diff
Patch12: s390-pic-dso.diff
Patch13: gold-basename.diff
Patch14: binutils-build-as-needed.diff
Patch90: cross-avr-nesc-as.patch
Patch92: cross-avr-omit_section_dynsym.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -176,6 +177,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
%patch11
%patch12
%patch13
%patch14
%if "%{TARGET}" == "avr"
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
%patch90
@ -246,6 +248,7 @@ cd ../build-dir3
make %{?jobs:-j%jobs} all-bfd all-opcodes
%check
unset SUSE_IGNORED_RPATHS
cd build-dir
%ifnarch %arm
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || %{make_check_handling}
@ -307,6 +310,7 @@ make -C gas-nesc %{?jobs:-j%jobs}
%endif
%check
unset SUSE_IGNORED_RPATHS
cd build-dir
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
%endif
@ -398,6 +402,8 @@ rm -rf $RPM_BUILD_ROOT
%endif
%changelog
* Tue Jun 09 2009 matz@suse.de
- Use --as-needed by default in the build system.
* Wed May 27 2009 rguenther@suse.de
- Update to head of trunk.
- Add patch to fix gold build with glibc 2.10, gcc 4.4.

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jun 9 14:48:40 CEST 2009 - matz@suse.de
- Use --as-needed by default in the build system.
-------------------------------------------------------------------
Wed May 27 17:12:55 CEST 2009 - rguenther@suse.de

View File

@ -20,7 +20,7 @@
Name: cross-hppa64-binutils
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
Version: 2.19.51
Release: 7
Release: 8
#
# RUN_TESTS
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
@ -76,6 +76,7 @@ Patch10: enable-targets.diff
Patch11: use-hashtype-both-by-default.diff
Patch12: s390-pic-dso.diff
Patch13: gold-basename.diff
Patch14: binutils-build-as-needed.diff
Patch90: cross-avr-nesc-as.patch
Patch92: cross-avr-omit_section_dynsym.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -176,6 +177,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
%patch11
%patch12
%patch13
%patch14
%if "%{TARGET}" == "avr"
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
%patch90
@ -246,6 +248,7 @@ cd ../build-dir3
make %{?jobs:-j%jobs} all-bfd all-opcodes
%check
unset SUSE_IGNORED_RPATHS
cd build-dir
%ifnarch %arm
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || %{make_check_handling}
@ -307,6 +310,7 @@ make -C gas-nesc %{?jobs:-j%jobs}
%endif
%check
unset SUSE_IGNORED_RPATHS
cd build-dir
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
%endif
@ -398,6 +402,8 @@ rm -rf $RPM_BUILD_ROOT
%endif
%changelog
* Tue Jun 09 2009 matz@suse.de
- Use --as-needed by default in the build system.
* Wed May 27 2009 rguenther@suse.de
- Update to head of trunk.
- Add patch to fix gold build with glibc 2.10, gcc 4.4.

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jun 9 14:48:40 CEST 2009 - matz@suse.de
- Use --as-needed by default in the build system.
-------------------------------------------------------------------
Wed May 27 17:12:55 CEST 2009 - rguenther@suse.de

View File

@ -20,7 +20,7 @@
Name: cross-i386-binutils
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
Version: 2.19.51
Release: 7
Release: 8
#
# RUN_TESTS
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
@ -76,6 +76,7 @@ Patch10: enable-targets.diff
Patch11: use-hashtype-both-by-default.diff
Patch12: s390-pic-dso.diff
Patch13: gold-basename.diff
Patch14: binutils-build-as-needed.diff
Patch90: cross-avr-nesc-as.patch
Patch92: cross-avr-omit_section_dynsym.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -176,6 +177,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
%patch11
%patch12
%patch13
%patch14
%if "%{TARGET}" == "avr"
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
%patch90
@ -246,6 +248,7 @@ cd ../build-dir3
make %{?jobs:-j%jobs} all-bfd all-opcodes
%check
unset SUSE_IGNORED_RPATHS
cd build-dir
%ifnarch %arm
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || %{make_check_handling}
@ -307,6 +310,7 @@ make -C gas-nesc %{?jobs:-j%jobs}
%endif
%check
unset SUSE_IGNORED_RPATHS
cd build-dir
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
%endif
@ -398,6 +402,8 @@ rm -rf $RPM_BUILD_ROOT
%endif
%changelog
* Tue Jun 09 2009 matz@suse.de
- Use --as-needed by default in the build system.
* Wed May 27 2009 rguenther@suse.de
- Update to head of trunk.
- Add patch to fix gold build with glibc 2.10, gcc 4.4.

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jun 9 14:48:40 CEST 2009 - matz@suse.de
- Use --as-needed by default in the build system.
-------------------------------------------------------------------
Wed May 27 17:12:55 CEST 2009 - rguenther@suse.de

View File

@ -20,7 +20,7 @@
Name: cross-ia64-binutils
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
Version: 2.19.51
Release: 7
Release: 8
#
# RUN_TESTS
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
@ -76,6 +76,7 @@ Patch10: enable-targets.diff
Patch11: use-hashtype-both-by-default.diff
Patch12: s390-pic-dso.diff
Patch13: gold-basename.diff
Patch14: binutils-build-as-needed.diff
Patch90: cross-avr-nesc-as.patch
Patch92: cross-avr-omit_section_dynsym.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -176,6 +177,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
%patch11
%patch12
%patch13
%patch14
%if "%{TARGET}" == "avr"
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
%patch90
@ -246,6 +248,7 @@ cd ../build-dir3
make %{?jobs:-j%jobs} all-bfd all-opcodes
%check
unset SUSE_IGNORED_RPATHS
cd build-dir
%ifnarch %arm
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || %{make_check_handling}
@ -307,6 +310,7 @@ make -C gas-nesc %{?jobs:-j%jobs}
%endif
%check
unset SUSE_IGNORED_RPATHS
cd build-dir
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
%endif
@ -398,6 +402,8 @@ rm -rf $RPM_BUILD_ROOT
%endif
%changelog
* Tue Jun 09 2009 matz@suse.de
- Use --as-needed by default in the build system.
* Wed May 27 2009 rguenther@suse.de
- Update to head of trunk.
- Add patch to fix gold build with glibc 2.10, gcc 4.4.

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jun 9 14:48:40 CEST 2009 - matz@suse.de
- Use --as-needed by default in the build system.
-------------------------------------------------------------------
Wed May 27 17:12:55 CEST 2009 - rguenther@suse.de

View File

@ -20,7 +20,7 @@
Name: cross-mips-binutils
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
Version: 2.19.51
Release: 7
Release: 8
#
# RUN_TESTS
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
@ -76,6 +76,7 @@ Patch10: enable-targets.diff
Patch11: use-hashtype-both-by-default.diff
Patch12: s390-pic-dso.diff
Patch13: gold-basename.diff
Patch14: binutils-build-as-needed.diff
Patch90: cross-avr-nesc-as.patch
Patch92: cross-avr-omit_section_dynsym.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -176,6 +177,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
%patch11
%patch12
%patch13
%patch14
%if "%{TARGET}" == "avr"
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
%patch90
@ -246,6 +248,7 @@ cd ../build-dir3
make %{?jobs:-j%jobs} all-bfd all-opcodes
%check
unset SUSE_IGNORED_RPATHS
cd build-dir
%ifnarch %arm
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || %{make_check_handling}
@ -307,6 +310,7 @@ make -C gas-nesc %{?jobs:-j%jobs}
%endif
%check
unset SUSE_IGNORED_RPATHS
cd build-dir
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
%endif
@ -398,6 +402,8 @@ rm -rf $RPM_BUILD_ROOT
%endif
%changelog
* Tue Jun 09 2009 matz@suse.de
- Use --as-needed by default in the build system.
* Wed May 27 2009 rguenther@suse.de
- Update to head of trunk.
- Add patch to fix gold build with glibc 2.10, gcc 4.4.

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jun 9 14:48:40 CEST 2009 - matz@suse.de
- Use --as-needed by default in the build system.
-------------------------------------------------------------------
Wed May 27 17:12:55 CEST 2009 - rguenther@suse.de

View File

@ -20,7 +20,7 @@
Name: cross-ppc-binutils
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
Version: 2.19.51
Release: 7
Release: 8
#
# RUN_TESTS
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
@ -76,6 +76,7 @@ Patch10: enable-targets.diff
Patch11: use-hashtype-both-by-default.diff
Patch12: s390-pic-dso.diff
Patch13: gold-basename.diff
Patch14: binutils-build-as-needed.diff
Patch90: cross-avr-nesc-as.patch
Patch92: cross-avr-omit_section_dynsym.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -176,6 +177,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
%patch11
%patch12
%patch13
%patch14
%if "%{TARGET}" == "avr"
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
%patch90
@ -246,6 +248,7 @@ cd ../build-dir3
make %{?jobs:-j%jobs} all-bfd all-opcodes
%check
unset SUSE_IGNORED_RPATHS
cd build-dir
%ifnarch %arm
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || %{make_check_handling}
@ -307,6 +310,7 @@ make -C gas-nesc %{?jobs:-j%jobs}
%endif
%check
unset SUSE_IGNORED_RPATHS
cd build-dir
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
%endif
@ -398,6 +402,8 @@ rm -rf $RPM_BUILD_ROOT
%endif
%changelog
* Tue Jun 09 2009 matz@suse.de
- Use --as-needed by default in the build system.
* Wed May 27 2009 rguenther@suse.de
- Update to head of trunk.
- Add patch to fix gold build with glibc 2.10, gcc 4.4.

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jun 9 14:48:40 CEST 2009 - matz@suse.de
- Use --as-needed by default in the build system.
-------------------------------------------------------------------
Wed May 27 17:12:55 CEST 2009 - rguenther@suse.de

View File

@ -20,7 +20,7 @@
Name: cross-ppc64-binutils
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
Version: 2.19.51
Release: 7
Release: 8
#
# RUN_TESTS
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
@ -76,6 +76,7 @@ Patch10: enable-targets.diff
Patch11: use-hashtype-both-by-default.diff
Patch12: s390-pic-dso.diff
Patch13: gold-basename.diff
Patch14: binutils-build-as-needed.diff
Patch90: cross-avr-nesc-as.patch
Patch92: cross-avr-omit_section_dynsym.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -176,6 +177,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
%patch11
%patch12
%patch13
%patch14
%if "%{TARGET}" == "avr"
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
%patch90
@ -246,6 +248,7 @@ cd ../build-dir3
make %{?jobs:-j%jobs} all-bfd all-opcodes
%check
unset SUSE_IGNORED_RPATHS
cd build-dir
%ifnarch %arm
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || %{make_check_handling}
@ -307,6 +310,7 @@ make -C gas-nesc %{?jobs:-j%jobs}
%endif
%check
unset SUSE_IGNORED_RPATHS
cd build-dir
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
%endif
@ -398,6 +402,8 @@ rm -rf $RPM_BUILD_ROOT
%endif
%changelog
* Tue Jun 09 2009 matz@suse.de
- Use --as-needed by default in the build system.
* Wed May 27 2009 rguenther@suse.de
- Update to head of trunk.
- Add patch to fix gold build with glibc 2.10, gcc 4.4.

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jun 9 14:48:40 CEST 2009 - matz@suse.de
- Use --as-needed by default in the build system.
-------------------------------------------------------------------
Wed May 27 17:12:55 CEST 2009 - rguenther@suse.de

View File

@ -20,7 +20,7 @@
Name: cross-s390-binutils
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
Version: 2.19.51
Release: 7
Release: 8
#
# RUN_TESTS
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
@ -76,6 +76,7 @@ Patch10: enable-targets.diff
Patch11: use-hashtype-both-by-default.diff
Patch12: s390-pic-dso.diff
Patch13: gold-basename.diff
Patch14: binutils-build-as-needed.diff
Patch90: cross-avr-nesc-as.patch
Patch92: cross-avr-omit_section_dynsym.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -176,6 +177,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
%patch11
%patch12
%patch13
%patch14
%if "%{TARGET}" == "avr"
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
%patch90
@ -246,6 +248,7 @@ cd ../build-dir3
make %{?jobs:-j%jobs} all-bfd all-opcodes
%check
unset SUSE_IGNORED_RPATHS
cd build-dir
%ifnarch %arm
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || %{make_check_handling}
@ -307,6 +310,7 @@ make -C gas-nesc %{?jobs:-j%jobs}
%endif
%check
unset SUSE_IGNORED_RPATHS
cd build-dir
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
%endif
@ -398,6 +402,8 @@ rm -rf $RPM_BUILD_ROOT
%endif
%changelog
* Tue Jun 09 2009 matz@suse.de
- Use --as-needed by default in the build system.
* Wed May 27 2009 rguenther@suse.de
- Update to head of trunk.
- Add patch to fix gold build with glibc 2.10, gcc 4.4.

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jun 9 14:48:40 CEST 2009 - matz@suse.de
- Use --as-needed by default in the build system.
-------------------------------------------------------------------
Wed May 27 17:12:55 CEST 2009 - rguenther@suse.de

View File

@ -20,7 +20,7 @@
Name: cross-s390x-binutils
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
Version: 2.19.51
Release: 7
Release: 8
#
# RUN_TESTS
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
@ -76,6 +76,7 @@ Patch10: enable-targets.diff
Patch11: use-hashtype-both-by-default.diff
Patch12: s390-pic-dso.diff
Patch13: gold-basename.diff
Patch14: binutils-build-as-needed.diff
Patch90: cross-avr-nesc-as.patch
Patch92: cross-avr-omit_section_dynsym.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -176,6 +177,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
%patch11
%patch12
%patch13
%patch14
%if "%{TARGET}" == "avr"
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
%patch90
@ -246,6 +248,7 @@ cd ../build-dir3
make %{?jobs:-j%jobs} all-bfd all-opcodes
%check
unset SUSE_IGNORED_RPATHS
cd build-dir
%ifnarch %arm
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || %{make_check_handling}
@ -307,6 +310,7 @@ make -C gas-nesc %{?jobs:-j%jobs}
%endif
%check
unset SUSE_IGNORED_RPATHS
cd build-dir
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
%endif
@ -398,6 +402,8 @@ rm -rf $RPM_BUILD_ROOT
%endif
%changelog
* Tue Jun 09 2009 matz@suse.de
- Use --as-needed by default in the build system.
* Wed May 27 2009 rguenther@suse.de
- Update to head of trunk.
- Add patch to fix gold build with glibc 2.10, gcc 4.4.

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jun 9 14:48:40 CEST 2009 - matz@suse.de
- Use --as-needed by default in the build system.
-------------------------------------------------------------------
Wed May 27 17:12:55 CEST 2009 - rguenther@suse.de

View File

@ -20,7 +20,7 @@
Name: cross-sh4-binutils
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
Version: 2.19.51
Release: 7
Release: 8
#
# RUN_TESTS
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
@ -76,6 +76,7 @@ Patch10: enable-targets.diff
Patch11: use-hashtype-both-by-default.diff
Patch12: s390-pic-dso.diff
Patch13: gold-basename.diff
Patch14: binutils-build-as-needed.diff
Patch90: cross-avr-nesc-as.patch
Patch92: cross-avr-omit_section_dynsym.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -175,6 +176,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
%patch11
%patch12
%patch13
%patch14
%if "%{TARGET}" == "avr"
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
%patch90
@ -245,6 +247,7 @@ cd ../build-dir3
make %{?jobs:-j%jobs} all-bfd all-opcodes
%check
unset SUSE_IGNORED_RPATHS
cd build-dir
%ifnarch %arm
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || %{make_check_handling}
@ -306,6 +309,7 @@ make -C gas-nesc %{?jobs:-j%jobs}
%endif
%check
unset SUSE_IGNORED_RPATHS
cd build-dir
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
%endif
@ -397,6 +401,8 @@ rm -rf $RPM_BUILD_ROOT
%endif
%changelog
* Tue Jun 09 2009 matz@suse.de
- Use --as-needed by default in the build system.
* Wed May 27 2009 rguenther@suse.de
- Update to head of trunk.
- Add patch to fix gold build with glibc 2.10, gcc 4.4.

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jun 9 14:48:40 CEST 2009 - matz@suse.de
- Use --as-needed by default in the build system.
-------------------------------------------------------------------
Wed May 27 17:12:55 CEST 2009 - rguenther@suse.de

View File

@ -20,7 +20,7 @@
Name: cross-sparc-binutils
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
Version: 2.19.51
Release: 7
Release: 8
#
# RUN_TESTS
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
@ -76,6 +76,7 @@ Patch10: enable-targets.diff
Patch11: use-hashtype-both-by-default.diff
Patch12: s390-pic-dso.diff
Patch13: gold-basename.diff
Patch14: binutils-build-as-needed.diff
Patch90: cross-avr-nesc-as.patch
Patch92: cross-avr-omit_section_dynsym.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -176,6 +177,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
%patch11
%patch12
%patch13
%patch14
%if "%{TARGET}" == "avr"
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
%patch90
@ -246,6 +248,7 @@ cd ../build-dir3
make %{?jobs:-j%jobs} all-bfd all-opcodes
%check
unset SUSE_IGNORED_RPATHS
cd build-dir
%ifnarch %arm
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || %{make_check_handling}
@ -307,6 +310,7 @@ make -C gas-nesc %{?jobs:-j%jobs}
%endif
%check
unset SUSE_IGNORED_RPATHS
cd build-dir
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
%endif
@ -398,6 +402,8 @@ rm -rf $RPM_BUILD_ROOT
%endif
%changelog
* Tue Jun 09 2009 matz@suse.de
- Use --as-needed by default in the build system.
* Wed May 27 2009 rguenther@suse.de
- Update to head of trunk.
- Add patch to fix gold build with glibc 2.10, gcc 4.4.

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jun 9 14:48:40 CEST 2009 - matz@suse.de
- Use --as-needed by default in the build system.
-------------------------------------------------------------------
Wed May 27 17:12:55 CEST 2009 - rguenther@suse.de

View File

@ -20,7 +20,7 @@
Name: cross-spu-binutils
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
Version: 2.19.51
Release: 7
Release: 8
#
# RUN_TESTS
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
@ -76,6 +76,7 @@ Patch10: enable-targets.diff
Patch11: use-hashtype-both-by-default.diff
Patch12: s390-pic-dso.diff
Patch13: gold-basename.diff
Patch14: binutils-build-as-needed.diff
Patch90: cross-avr-nesc-as.patch
Patch92: cross-avr-omit_section_dynsym.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -176,6 +177,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
%patch11
%patch12
%patch13
%patch14
%if "%{TARGET}" == "avr"
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
%patch90
@ -246,6 +248,7 @@ cd ../build-dir3
make %{?jobs:-j%jobs} all-bfd all-opcodes
%check
unset SUSE_IGNORED_RPATHS
cd build-dir
%ifnarch %arm
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || %{make_check_handling}
@ -307,6 +310,7 @@ make -C gas-nesc %{?jobs:-j%jobs}
%endif
%check
unset SUSE_IGNORED_RPATHS
cd build-dir
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
%endif
@ -398,6 +402,8 @@ rm -rf $RPM_BUILD_ROOT
%endif
%changelog
* Tue Jun 09 2009 matz@suse.de
- Use --as-needed by default in the build system.
* Wed May 27 2009 rguenther@suse.de
- Update to head of trunk.
- Add patch to fix gold build with glibc 2.10, gcc 4.4.

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jun 9 14:48:40 CEST 2009 - matz@suse.de
- Use --as-needed by default in the build system.
-------------------------------------------------------------------
Wed May 27 17:12:55 CEST 2009 - rguenther@suse.de

View File

@ -20,7 +20,7 @@
Name: cross-x86_64-binutils
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
Version: 2.19.51
Release: 7
Release: 8
#
# RUN_TESTS
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
@ -76,6 +76,7 @@ Patch10: enable-targets.diff
Patch11: use-hashtype-both-by-default.diff
Patch12: s390-pic-dso.diff
Patch13: gold-basename.diff
Patch14: binutils-build-as-needed.diff
Patch90: cross-avr-nesc-as.patch
Patch92: cross-avr-omit_section_dynsym.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -176,6 +177,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
%patch11
%patch12
%patch13
%patch14
%if "%{TARGET}" == "avr"
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
%patch90
@ -246,6 +248,7 @@ cd ../build-dir3
make %{?jobs:-j%jobs} all-bfd all-opcodes
%check
unset SUSE_IGNORED_RPATHS
cd build-dir
%ifnarch %arm
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || %{make_check_handling}
@ -307,6 +310,7 @@ make -C gas-nesc %{?jobs:-j%jobs}
%endif
%check
unset SUSE_IGNORED_RPATHS
cd build-dir
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
%endif
@ -398,6 +402,8 @@ rm -rf $RPM_BUILD_ROOT
%endif
%changelog
* Tue Jun 09 2009 matz@suse.de
- Use --as-needed by default in the build system.
* Wed May 27 2009 rguenther@suse.de
- Update to head of trunk.
- Add patch to fix gold build with glibc 2.10, gcc 4.4.