forked from pool/binutils
This commit is contained in:
parent
7e4dc3f513
commit
a63b6f7d79
13
binutils-build-as-needed.diff
Normal file
13
binutils-build-as-needed.diff
Normal 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);
|
@ -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
|
Wed May 27 17:12:55 CEST 2009 - rguenther@suse.de
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
Name: binutils
|
Name: binutils
|
||||||
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
|
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
|
||||||
Version: 2.19.51
|
Version: 2.19.51
|
||||||
Release: 7
|
Release: 8
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -76,6 +76,7 @@ Patch10: enable-targets.diff
|
|||||||
Patch11: use-hashtype-both-by-default.diff
|
Patch11: use-hashtype-both-by-default.diff
|
||||||
Patch12: s390-pic-dso.diff
|
Patch12: s390-pic-dso.diff
|
||||||
Patch13: gold-basename.diff
|
Patch13: gold-basename.diff
|
||||||
|
Patch14: binutils-build-as-needed.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -283,6 +284,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch11
|
%patch11
|
||||||
%patch12
|
%patch12
|
||||||
%patch13
|
%patch13
|
||||||
|
%patch14
|
||||||
%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
|
||||||
@ -360,6 +362,7 @@ cd ../build-dir3
|
|||||||
make %{?jobs:-j%jobs} all-bfd all-opcodes
|
make %{?jobs:-j%jobs} all-bfd all-opcodes
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
unset SUSE_IGNORED_RPATHS
|
||||||
cd build-dir
|
cd build-dir
|
||||||
%ifnarch %arm
|
%ifnarch %arm
|
||||||
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || %{make_check_handling}
|
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
|
%endif
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
unset SUSE_IGNORED_RPATHS
|
||||||
cd build-dir
|
cd build-dir
|
||||||
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
|
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
|
||||||
%endif
|
%endif
|
||||||
@ -539,6 +543,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_libdir}/lib*.*a
|
%{_libdir}/lib*.*a
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jun 09 2009 matz@suse.de
|
||||||
|
- Use --as-needed by default in the build system.
|
||||||
* Wed May 27 2009 rguenther@suse.de
|
* Wed May 27 2009 rguenther@suse.de
|
||||||
- Update to head of trunk.
|
- Update to head of trunk.
|
||||||
- Add patch to fix gold build with glibc 2.10, gcc 4.4.
|
- Add patch to fix gold build with glibc 2.10, gcc 4.4.
|
||||||
|
@ -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
|
Wed May 27 17:12:55 CEST 2009 - rguenther@suse.de
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
Name: cross-alpha-binutils
|
Name: cross-alpha-binutils
|
||||||
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
|
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
|
||||||
Version: 2.19.51
|
Version: 2.19.51
|
||||||
Release: 7
|
Release: 8
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -76,6 +76,7 @@ Patch10: enable-targets.diff
|
|||||||
Patch11: use-hashtype-both-by-default.diff
|
Patch11: use-hashtype-both-by-default.diff
|
||||||
Patch12: s390-pic-dso.diff
|
Patch12: s390-pic-dso.diff
|
||||||
Patch13: gold-basename.diff
|
Patch13: gold-basename.diff
|
||||||
|
Patch14: binutils-build-as-needed.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -176,6 +177,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch11
|
%patch11
|
||||||
%patch12
|
%patch12
|
||||||
%patch13
|
%patch13
|
||||||
|
%patch14
|
||||||
%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
|
||||||
@ -246,6 +248,7 @@ cd ../build-dir3
|
|||||||
make %{?jobs:-j%jobs} all-bfd all-opcodes
|
make %{?jobs:-j%jobs} all-bfd all-opcodes
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
unset SUSE_IGNORED_RPATHS
|
||||||
cd build-dir
|
cd build-dir
|
||||||
%ifnarch %arm
|
%ifnarch %arm
|
||||||
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || %{make_check_handling}
|
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
|
%endif
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
unset SUSE_IGNORED_RPATHS
|
||||||
cd build-dir
|
cd build-dir
|
||||||
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
|
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
|
||||||
%endif
|
%endif
|
||||||
@ -398,6 +402,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jun 09 2009 matz@suse.de
|
||||||
|
- Use --as-needed by default in the build system.
|
||||||
* Wed May 27 2009 rguenther@suse.de
|
* Wed May 27 2009 rguenther@suse.de
|
||||||
- Update to head of trunk.
|
- Update to head of trunk.
|
||||||
- Add patch to fix gold build with glibc 2.10, gcc 4.4.
|
- Add patch to fix gold build with glibc 2.10, gcc 4.4.
|
||||||
|
@ -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
|
Wed May 27 17:12:55 CEST 2009 - rguenther@suse.de
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
Name: cross-arm-binutils
|
Name: cross-arm-binutils
|
||||||
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
|
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
|
||||||
Version: 2.19.51
|
Version: 2.19.51
|
||||||
Release: 7
|
Release: 8
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -76,6 +76,7 @@ Patch10: enable-targets.diff
|
|||||||
Patch11: use-hashtype-both-by-default.diff
|
Patch11: use-hashtype-both-by-default.diff
|
||||||
Patch12: s390-pic-dso.diff
|
Patch12: s390-pic-dso.diff
|
||||||
Patch13: gold-basename.diff
|
Patch13: gold-basename.diff
|
||||||
|
Patch14: binutils-build-as-needed.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -176,6 +177,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch11
|
%patch11
|
||||||
%patch12
|
%patch12
|
||||||
%patch13
|
%patch13
|
||||||
|
%patch14
|
||||||
%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
|
||||||
@ -246,6 +248,7 @@ cd ../build-dir3
|
|||||||
make %{?jobs:-j%jobs} all-bfd all-opcodes
|
make %{?jobs:-j%jobs} all-bfd all-opcodes
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
unset SUSE_IGNORED_RPATHS
|
||||||
cd build-dir
|
cd build-dir
|
||||||
%ifnarch %arm
|
%ifnarch %arm
|
||||||
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || %{make_check_handling}
|
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
|
%endif
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
unset SUSE_IGNORED_RPATHS
|
||||||
cd build-dir
|
cd build-dir
|
||||||
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
|
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
|
||||||
%endif
|
%endif
|
||||||
@ -398,6 +402,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jun 09 2009 matz@suse.de
|
||||||
|
- Use --as-needed by default in the build system.
|
||||||
* Wed May 27 2009 rguenther@suse.de
|
* Wed May 27 2009 rguenther@suse.de
|
||||||
- Update to head of trunk.
|
- Update to head of trunk.
|
||||||
- Add patch to fix gold build with glibc 2.10, gcc 4.4.
|
- Add patch to fix gold build with glibc 2.10, gcc 4.4.
|
||||||
|
@ -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
|
Wed May 27 17:12:55 CEST 2009 - rguenther@suse.de
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
Name: cross-avr-binutils
|
Name: cross-avr-binutils
|
||||||
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
|
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
|
||||||
Version: 2.19.51
|
Version: 2.19.51
|
||||||
Release: 7
|
Release: 8
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -76,6 +76,7 @@ Patch10: enable-targets.diff
|
|||||||
Patch11: use-hashtype-both-by-default.diff
|
Patch11: use-hashtype-both-by-default.diff
|
||||||
Patch12: s390-pic-dso.diff
|
Patch12: s390-pic-dso.diff
|
||||||
Patch13: gold-basename.diff
|
Patch13: gold-basename.diff
|
||||||
|
Patch14: binutils-build-as-needed.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -176,6 +177,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch11
|
%patch11
|
||||||
%patch12
|
%patch12
|
||||||
%patch13
|
%patch13
|
||||||
|
%patch14
|
||||||
%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
|
||||||
@ -246,6 +248,7 @@ cd ../build-dir3
|
|||||||
make %{?jobs:-j%jobs} all-bfd all-opcodes
|
make %{?jobs:-j%jobs} all-bfd all-opcodes
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
unset SUSE_IGNORED_RPATHS
|
||||||
cd build-dir
|
cd build-dir
|
||||||
%ifnarch %arm
|
%ifnarch %arm
|
||||||
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || %{make_check_handling}
|
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
|
%endif
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
unset SUSE_IGNORED_RPATHS
|
||||||
cd build-dir
|
cd build-dir
|
||||||
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
|
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
|
||||||
%endif
|
%endif
|
||||||
@ -398,6 +402,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jun 09 2009 matz@suse.de
|
||||||
|
- Use --as-needed by default in the build system.
|
||||||
* Wed May 27 2009 rguenther@suse.de
|
* Wed May 27 2009 rguenther@suse.de
|
||||||
- Update to head of trunk.
|
- Update to head of trunk.
|
||||||
- Add patch to fix gold build with glibc 2.10, gcc 4.4.
|
- Add patch to fix gold build with glibc 2.10, gcc 4.4.
|
||||||
|
@ -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
|
Wed May 27 17:12:55 CEST 2009 - rguenther@suse.de
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
Name: cross-hppa-binutils
|
Name: cross-hppa-binutils
|
||||||
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
|
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
|
||||||
Version: 2.19.51
|
Version: 2.19.51
|
||||||
Release: 7
|
Release: 8
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -76,6 +76,7 @@ Patch10: enable-targets.diff
|
|||||||
Patch11: use-hashtype-both-by-default.diff
|
Patch11: use-hashtype-both-by-default.diff
|
||||||
Patch12: s390-pic-dso.diff
|
Patch12: s390-pic-dso.diff
|
||||||
Patch13: gold-basename.diff
|
Patch13: gold-basename.diff
|
||||||
|
Patch14: binutils-build-as-needed.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -176,6 +177,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch11
|
%patch11
|
||||||
%patch12
|
%patch12
|
||||||
%patch13
|
%patch13
|
||||||
|
%patch14
|
||||||
%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
|
||||||
@ -246,6 +248,7 @@ cd ../build-dir3
|
|||||||
make %{?jobs:-j%jobs} all-bfd all-opcodes
|
make %{?jobs:-j%jobs} all-bfd all-opcodes
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
unset SUSE_IGNORED_RPATHS
|
||||||
cd build-dir
|
cd build-dir
|
||||||
%ifnarch %arm
|
%ifnarch %arm
|
||||||
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || %{make_check_handling}
|
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
|
%endif
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
unset SUSE_IGNORED_RPATHS
|
||||||
cd build-dir
|
cd build-dir
|
||||||
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
|
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
|
||||||
%endif
|
%endif
|
||||||
@ -398,6 +402,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jun 09 2009 matz@suse.de
|
||||||
|
- Use --as-needed by default in the build system.
|
||||||
* Wed May 27 2009 rguenther@suse.de
|
* Wed May 27 2009 rguenther@suse.de
|
||||||
- Update to head of trunk.
|
- Update to head of trunk.
|
||||||
- Add patch to fix gold build with glibc 2.10, gcc 4.4.
|
- Add patch to fix gold build with glibc 2.10, gcc 4.4.
|
||||||
|
@ -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
|
Wed May 27 17:12:55 CEST 2009 - rguenther@suse.de
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
Name: cross-hppa64-binutils
|
Name: cross-hppa64-binutils
|
||||||
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
|
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
|
||||||
Version: 2.19.51
|
Version: 2.19.51
|
||||||
Release: 7
|
Release: 8
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -76,6 +76,7 @@ Patch10: enable-targets.diff
|
|||||||
Patch11: use-hashtype-both-by-default.diff
|
Patch11: use-hashtype-both-by-default.diff
|
||||||
Patch12: s390-pic-dso.diff
|
Patch12: s390-pic-dso.diff
|
||||||
Patch13: gold-basename.diff
|
Patch13: gold-basename.diff
|
||||||
|
Patch14: binutils-build-as-needed.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -176,6 +177,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch11
|
%patch11
|
||||||
%patch12
|
%patch12
|
||||||
%patch13
|
%patch13
|
||||||
|
%patch14
|
||||||
%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
|
||||||
@ -246,6 +248,7 @@ cd ../build-dir3
|
|||||||
make %{?jobs:-j%jobs} all-bfd all-opcodes
|
make %{?jobs:-j%jobs} all-bfd all-opcodes
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
unset SUSE_IGNORED_RPATHS
|
||||||
cd build-dir
|
cd build-dir
|
||||||
%ifnarch %arm
|
%ifnarch %arm
|
||||||
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || %{make_check_handling}
|
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
|
%endif
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
unset SUSE_IGNORED_RPATHS
|
||||||
cd build-dir
|
cd build-dir
|
||||||
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
|
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
|
||||||
%endif
|
%endif
|
||||||
@ -398,6 +402,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jun 09 2009 matz@suse.de
|
||||||
|
- Use --as-needed by default in the build system.
|
||||||
* Wed May 27 2009 rguenther@suse.de
|
* Wed May 27 2009 rguenther@suse.de
|
||||||
- Update to head of trunk.
|
- Update to head of trunk.
|
||||||
- Add patch to fix gold build with glibc 2.10, gcc 4.4.
|
- Add patch to fix gold build with glibc 2.10, gcc 4.4.
|
||||||
|
@ -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
|
Wed May 27 17:12:55 CEST 2009 - rguenther@suse.de
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
Name: cross-i386-binutils
|
Name: cross-i386-binutils
|
||||||
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
|
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
|
||||||
Version: 2.19.51
|
Version: 2.19.51
|
||||||
Release: 7
|
Release: 8
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -76,6 +76,7 @@ Patch10: enable-targets.diff
|
|||||||
Patch11: use-hashtype-both-by-default.diff
|
Patch11: use-hashtype-both-by-default.diff
|
||||||
Patch12: s390-pic-dso.diff
|
Patch12: s390-pic-dso.diff
|
||||||
Patch13: gold-basename.diff
|
Patch13: gold-basename.diff
|
||||||
|
Patch14: binutils-build-as-needed.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -176,6 +177,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch11
|
%patch11
|
||||||
%patch12
|
%patch12
|
||||||
%patch13
|
%patch13
|
||||||
|
%patch14
|
||||||
%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
|
||||||
@ -246,6 +248,7 @@ cd ../build-dir3
|
|||||||
make %{?jobs:-j%jobs} all-bfd all-opcodes
|
make %{?jobs:-j%jobs} all-bfd all-opcodes
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
unset SUSE_IGNORED_RPATHS
|
||||||
cd build-dir
|
cd build-dir
|
||||||
%ifnarch %arm
|
%ifnarch %arm
|
||||||
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || %{make_check_handling}
|
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
|
%endif
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
unset SUSE_IGNORED_RPATHS
|
||||||
cd build-dir
|
cd build-dir
|
||||||
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
|
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
|
||||||
%endif
|
%endif
|
||||||
@ -398,6 +402,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jun 09 2009 matz@suse.de
|
||||||
|
- Use --as-needed by default in the build system.
|
||||||
* Wed May 27 2009 rguenther@suse.de
|
* Wed May 27 2009 rguenther@suse.de
|
||||||
- Update to head of trunk.
|
- Update to head of trunk.
|
||||||
- Add patch to fix gold build with glibc 2.10, gcc 4.4.
|
- Add patch to fix gold build with glibc 2.10, gcc 4.4.
|
||||||
|
@ -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
|
Wed May 27 17:12:55 CEST 2009 - rguenther@suse.de
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
Name: cross-ia64-binutils
|
Name: cross-ia64-binutils
|
||||||
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
|
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
|
||||||
Version: 2.19.51
|
Version: 2.19.51
|
||||||
Release: 7
|
Release: 8
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -76,6 +76,7 @@ Patch10: enable-targets.diff
|
|||||||
Patch11: use-hashtype-both-by-default.diff
|
Patch11: use-hashtype-both-by-default.diff
|
||||||
Patch12: s390-pic-dso.diff
|
Patch12: s390-pic-dso.diff
|
||||||
Patch13: gold-basename.diff
|
Patch13: gold-basename.diff
|
||||||
|
Patch14: binutils-build-as-needed.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -176,6 +177,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch11
|
%patch11
|
||||||
%patch12
|
%patch12
|
||||||
%patch13
|
%patch13
|
||||||
|
%patch14
|
||||||
%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
|
||||||
@ -246,6 +248,7 @@ cd ../build-dir3
|
|||||||
make %{?jobs:-j%jobs} all-bfd all-opcodes
|
make %{?jobs:-j%jobs} all-bfd all-opcodes
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
unset SUSE_IGNORED_RPATHS
|
||||||
cd build-dir
|
cd build-dir
|
||||||
%ifnarch %arm
|
%ifnarch %arm
|
||||||
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || %{make_check_handling}
|
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
|
%endif
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
unset SUSE_IGNORED_RPATHS
|
||||||
cd build-dir
|
cd build-dir
|
||||||
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
|
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
|
||||||
%endif
|
%endif
|
||||||
@ -398,6 +402,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jun 09 2009 matz@suse.de
|
||||||
|
- Use --as-needed by default in the build system.
|
||||||
* Wed May 27 2009 rguenther@suse.de
|
* Wed May 27 2009 rguenther@suse.de
|
||||||
- Update to head of trunk.
|
- Update to head of trunk.
|
||||||
- Add patch to fix gold build with glibc 2.10, gcc 4.4.
|
- Add patch to fix gold build with glibc 2.10, gcc 4.4.
|
||||||
|
@ -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
|
Wed May 27 17:12:55 CEST 2009 - rguenther@suse.de
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
Name: cross-mips-binutils
|
Name: cross-mips-binutils
|
||||||
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
|
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
|
||||||
Version: 2.19.51
|
Version: 2.19.51
|
||||||
Release: 7
|
Release: 8
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -76,6 +76,7 @@ Patch10: enable-targets.diff
|
|||||||
Patch11: use-hashtype-both-by-default.diff
|
Patch11: use-hashtype-both-by-default.diff
|
||||||
Patch12: s390-pic-dso.diff
|
Patch12: s390-pic-dso.diff
|
||||||
Patch13: gold-basename.diff
|
Patch13: gold-basename.diff
|
||||||
|
Patch14: binutils-build-as-needed.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -176,6 +177,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch11
|
%patch11
|
||||||
%patch12
|
%patch12
|
||||||
%patch13
|
%patch13
|
||||||
|
%patch14
|
||||||
%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
|
||||||
@ -246,6 +248,7 @@ cd ../build-dir3
|
|||||||
make %{?jobs:-j%jobs} all-bfd all-opcodes
|
make %{?jobs:-j%jobs} all-bfd all-opcodes
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
unset SUSE_IGNORED_RPATHS
|
||||||
cd build-dir
|
cd build-dir
|
||||||
%ifnarch %arm
|
%ifnarch %arm
|
||||||
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || %{make_check_handling}
|
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
|
%endif
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
unset SUSE_IGNORED_RPATHS
|
||||||
cd build-dir
|
cd build-dir
|
||||||
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
|
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
|
||||||
%endif
|
%endif
|
||||||
@ -398,6 +402,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jun 09 2009 matz@suse.de
|
||||||
|
- Use --as-needed by default in the build system.
|
||||||
* Wed May 27 2009 rguenther@suse.de
|
* Wed May 27 2009 rguenther@suse.de
|
||||||
- Update to head of trunk.
|
- Update to head of trunk.
|
||||||
- Add patch to fix gold build with glibc 2.10, gcc 4.4.
|
- Add patch to fix gold build with glibc 2.10, gcc 4.4.
|
||||||
|
@ -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
|
Wed May 27 17:12:55 CEST 2009 - rguenther@suse.de
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
Name: cross-ppc-binutils
|
Name: cross-ppc-binutils
|
||||||
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
|
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
|
||||||
Version: 2.19.51
|
Version: 2.19.51
|
||||||
Release: 7
|
Release: 8
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -76,6 +76,7 @@ Patch10: enable-targets.diff
|
|||||||
Patch11: use-hashtype-both-by-default.diff
|
Patch11: use-hashtype-both-by-default.diff
|
||||||
Patch12: s390-pic-dso.diff
|
Patch12: s390-pic-dso.diff
|
||||||
Patch13: gold-basename.diff
|
Patch13: gold-basename.diff
|
||||||
|
Patch14: binutils-build-as-needed.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -176,6 +177,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch11
|
%patch11
|
||||||
%patch12
|
%patch12
|
||||||
%patch13
|
%patch13
|
||||||
|
%patch14
|
||||||
%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
|
||||||
@ -246,6 +248,7 @@ cd ../build-dir3
|
|||||||
make %{?jobs:-j%jobs} all-bfd all-opcodes
|
make %{?jobs:-j%jobs} all-bfd all-opcodes
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
unset SUSE_IGNORED_RPATHS
|
||||||
cd build-dir
|
cd build-dir
|
||||||
%ifnarch %arm
|
%ifnarch %arm
|
||||||
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || %{make_check_handling}
|
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
|
%endif
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
unset SUSE_IGNORED_RPATHS
|
||||||
cd build-dir
|
cd build-dir
|
||||||
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
|
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
|
||||||
%endif
|
%endif
|
||||||
@ -398,6 +402,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jun 09 2009 matz@suse.de
|
||||||
|
- Use --as-needed by default in the build system.
|
||||||
* Wed May 27 2009 rguenther@suse.de
|
* Wed May 27 2009 rguenther@suse.de
|
||||||
- Update to head of trunk.
|
- Update to head of trunk.
|
||||||
- Add patch to fix gold build with glibc 2.10, gcc 4.4.
|
- Add patch to fix gold build with glibc 2.10, gcc 4.4.
|
||||||
|
@ -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
|
Wed May 27 17:12:55 CEST 2009 - rguenther@suse.de
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
Name: cross-ppc64-binutils
|
Name: cross-ppc64-binutils
|
||||||
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
|
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
|
||||||
Version: 2.19.51
|
Version: 2.19.51
|
||||||
Release: 7
|
Release: 8
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -76,6 +76,7 @@ Patch10: enable-targets.diff
|
|||||||
Patch11: use-hashtype-both-by-default.diff
|
Patch11: use-hashtype-both-by-default.diff
|
||||||
Patch12: s390-pic-dso.diff
|
Patch12: s390-pic-dso.diff
|
||||||
Patch13: gold-basename.diff
|
Patch13: gold-basename.diff
|
||||||
|
Patch14: binutils-build-as-needed.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -176,6 +177,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch11
|
%patch11
|
||||||
%patch12
|
%patch12
|
||||||
%patch13
|
%patch13
|
||||||
|
%patch14
|
||||||
%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
|
||||||
@ -246,6 +248,7 @@ cd ../build-dir3
|
|||||||
make %{?jobs:-j%jobs} all-bfd all-opcodes
|
make %{?jobs:-j%jobs} all-bfd all-opcodes
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
unset SUSE_IGNORED_RPATHS
|
||||||
cd build-dir
|
cd build-dir
|
||||||
%ifnarch %arm
|
%ifnarch %arm
|
||||||
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || %{make_check_handling}
|
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
|
%endif
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
unset SUSE_IGNORED_RPATHS
|
||||||
cd build-dir
|
cd build-dir
|
||||||
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
|
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
|
||||||
%endif
|
%endif
|
||||||
@ -398,6 +402,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jun 09 2009 matz@suse.de
|
||||||
|
- Use --as-needed by default in the build system.
|
||||||
* Wed May 27 2009 rguenther@suse.de
|
* Wed May 27 2009 rguenther@suse.de
|
||||||
- Update to head of trunk.
|
- Update to head of trunk.
|
||||||
- Add patch to fix gold build with glibc 2.10, gcc 4.4.
|
- Add patch to fix gold build with glibc 2.10, gcc 4.4.
|
||||||
|
@ -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
|
Wed May 27 17:12:55 CEST 2009 - rguenther@suse.de
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
Name: cross-s390-binutils
|
Name: cross-s390-binutils
|
||||||
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
|
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
|
||||||
Version: 2.19.51
|
Version: 2.19.51
|
||||||
Release: 7
|
Release: 8
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -76,6 +76,7 @@ Patch10: enable-targets.diff
|
|||||||
Patch11: use-hashtype-both-by-default.diff
|
Patch11: use-hashtype-both-by-default.diff
|
||||||
Patch12: s390-pic-dso.diff
|
Patch12: s390-pic-dso.diff
|
||||||
Patch13: gold-basename.diff
|
Patch13: gold-basename.diff
|
||||||
|
Patch14: binutils-build-as-needed.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -176,6 +177,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch11
|
%patch11
|
||||||
%patch12
|
%patch12
|
||||||
%patch13
|
%patch13
|
||||||
|
%patch14
|
||||||
%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
|
||||||
@ -246,6 +248,7 @@ cd ../build-dir3
|
|||||||
make %{?jobs:-j%jobs} all-bfd all-opcodes
|
make %{?jobs:-j%jobs} all-bfd all-opcodes
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
unset SUSE_IGNORED_RPATHS
|
||||||
cd build-dir
|
cd build-dir
|
||||||
%ifnarch %arm
|
%ifnarch %arm
|
||||||
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || %{make_check_handling}
|
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
|
%endif
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
unset SUSE_IGNORED_RPATHS
|
||||||
cd build-dir
|
cd build-dir
|
||||||
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
|
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
|
||||||
%endif
|
%endif
|
||||||
@ -398,6 +402,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jun 09 2009 matz@suse.de
|
||||||
|
- Use --as-needed by default in the build system.
|
||||||
* Wed May 27 2009 rguenther@suse.de
|
* Wed May 27 2009 rguenther@suse.de
|
||||||
- Update to head of trunk.
|
- Update to head of trunk.
|
||||||
- Add patch to fix gold build with glibc 2.10, gcc 4.4.
|
- Add patch to fix gold build with glibc 2.10, gcc 4.4.
|
||||||
|
@ -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
|
Wed May 27 17:12:55 CEST 2009 - rguenther@suse.de
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
Name: cross-s390x-binutils
|
Name: cross-s390x-binutils
|
||||||
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
|
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
|
||||||
Version: 2.19.51
|
Version: 2.19.51
|
||||||
Release: 7
|
Release: 8
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -76,6 +76,7 @@ Patch10: enable-targets.diff
|
|||||||
Patch11: use-hashtype-both-by-default.diff
|
Patch11: use-hashtype-both-by-default.diff
|
||||||
Patch12: s390-pic-dso.diff
|
Patch12: s390-pic-dso.diff
|
||||||
Patch13: gold-basename.diff
|
Patch13: gold-basename.diff
|
||||||
|
Patch14: binutils-build-as-needed.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -176,6 +177,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch11
|
%patch11
|
||||||
%patch12
|
%patch12
|
||||||
%patch13
|
%patch13
|
||||||
|
%patch14
|
||||||
%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
|
||||||
@ -246,6 +248,7 @@ cd ../build-dir3
|
|||||||
make %{?jobs:-j%jobs} all-bfd all-opcodes
|
make %{?jobs:-j%jobs} all-bfd all-opcodes
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
unset SUSE_IGNORED_RPATHS
|
||||||
cd build-dir
|
cd build-dir
|
||||||
%ifnarch %arm
|
%ifnarch %arm
|
||||||
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || %{make_check_handling}
|
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
|
%endif
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
unset SUSE_IGNORED_RPATHS
|
||||||
cd build-dir
|
cd build-dir
|
||||||
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
|
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
|
||||||
%endif
|
%endif
|
||||||
@ -398,6 +402,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jun 09 2009 matz@suse.de
|
||||||
|
- Use --as-needed by default in the build system.
|
||||||
* Wed May 27 2009 rguenther@suse.de
|
* Wed May 27 2009 rguenther@suse.de
|
||||||
- Update to head of trunk.
|
- Update to head of trunk.
|
||||||
- Add patch to fix gold build with glibc 2.10, gcc 4.4.
|
- Add patch to fix gold build with glibc 2.10, gcc 4.4.
|
||||||
|
@ -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
|
Wed May 27 17:12:55 CEST 2009 - rguenther@suse.de
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
Name: cross-sh4-binutils
|
Name: cross-sh4-binutils
|
||||||
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
|
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
|
||||||
Version: 2.19.51
|
Version: 2.19.51
|
||||||
Release: 7
|
Release: 8
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -76,6 +76,7 @@ Patch10: enable-targets.diff
|
|||||||
Patch11: use-hashtype-both-by-default.diff
|
Patch11: use-hashtype-both-by-default.diff
|
||||||
Patch12: s390-pic-dso.diff
|
Patch12: s390-pic-dso.diff
|
||||||
Patch13: gold-basename.diff
|
Patch13: gold-basename.diff
|
||||||
|
Patch14: binutils-build-as-needed.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -175,6 +176,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch11
|
%patch11
|
||||||
%patch12
|
%patch12
|
||||||
%patch13
|
%patch13
|
||||||
|
%patch14
|
||||||
%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
|
||||||
@ -245,6 +247,7 @@ cd ../build-dir3
|
|||||||
make %{?jobs:-j%jobs} all-bfd all-opcodes
|
make %{?jobs:-j%jobs} all-bfd all-opcodes
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
unset SUSE_IGNORED_RPATHS
|
||||||
cd build-dir
|
cd build-dir
|
||||||
%ifnarch %arm
|
%ifnarch %arm
|
||||||
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || %{make_check_handling}
|
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
|
%endif
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
unset SUSE_IGNORED_RPATHS
|
||||||
cd build-dir
|
cd build-dir
|
||||||
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
|
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
|
||||||
%endif
|
%endif
|
||||||
@ -397,6 +401,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jun 09 2009 matz@suse.de
|
||||||
|
- Use --as-needed by default in the build system.
|
||||||
* Wed May 27 2009 rguenther@suse.de
|
* Wed May 27 2009 rguenther@suse.de
|
||||||
- Update to head of trunk.
|
- Update to head of trunk.
|
||||||
- Add patch to fix gold build with glibc 2.10, gcc 4.4.
|
- Add patch to fix gold build with glibc 2.10, gcc 4.4.
|
||||||
|
@ -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
|
Wed May 27 17:12:55 CEST 2009 - rguenther@suse.de
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
Name: cross-sparc-binutils
|
Name: cross-sparc-binutils
|
||||||
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
|
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
|
||||||
Version: 2.19.51
|
Version: 2.19.51
|
||||||
Release: 7
|
Release: 8
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -76,6 +76,7 @@ Patch10: enable-targets.diff
|
|||||||
Patch11: use-hashtype-both-by-default.diff
|
Patch11: use-hashtype-both-by-default.diff
|
||||||
Patch12: s390-pic-dso.diff
|
Patch12: s390-pic-dso.diff
|
||||||
Patch13: gold-basename.diff
|
Patch13: gold-basename.diff
|
||||||
|
Patch14: binutils-build-as-needed.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -176,6 +177,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch11
|
%patch11
|
||||||
%patch12
|
%patch12
|
||||||
%patch13
|
%patch13
|
||||||
|
%patch14
|
||||||
%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
|
||||||
@ -246,6 +248,7 @@ cd ../build-dir3
|
|||||||
make %{?jobs:-j%jobs} all-bfd all-opcodes
|
make %{?jobs:-j%jobs} all-bfd all-opcodes
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
unset SUSE_IGNORED_RPATHS
|
||||||
cd build-dir
|
cd build-dir
|
||||||
%ifnarch %arm
|
%ifnarch %arm
|
||||||
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || %{make_check_handling}
|
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
|
%endif
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
unset SUSE_IGNORED_RPATHS
|
||||||
cd build-dir
|
cd build-dir
|
||||||
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
|
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
|
||||||
%endif
|
%endif
|
||||||
@ -398,6 +402,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jun 09 2009 matz@suse.de
|
||||||
|
- Use --as-needed by default in the build system.
|
||||||
* Wed May 27 2009 rguenther@suse.de
|
* Wed May 27 2009 rguenther@suse.de
|
||||||
- Update to head of trunk.
|
- Update to head of trunk.
|
||||||
- Add patch to fix gold build with glibc 2.10, gcc 4.4.
|
- Add patch to fix gold build with glibc 2.10, gcc 4.4.
|
||||||
|
@ -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
|
Wed May 27 17:12:55 CEST 2009 - rguenther@suse.de
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
Name: cross-spu-binutils
|
Name: cross-spu-binutils
|
||||||
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
|
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
|
||||||
Version: 2.19.51
|
Version: 2.19.51
|
||||||
Release: 7
|
Release: 8
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -76,6 +76,7 @@ Patch10: enable-targets.diff
|
|||||||
Patch11: use-hashtype-both-by-default.diff
|
Patch11: use-hashtype-both-by-default.diff
|
||||||
Patch12: s390-pic-dso.diff
|
Patch12: s390-pic-dso.diff
|
||||||
Patch13: gold-basename.diff
|
Patch13: gold-basename.diff
|
||||||
|
Patch14: binutils-build-as-needed.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -176,6 +177,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch11
|
%patch11
|
||||||
%patch12
|
%patch12
|
||||||
%patch13
|
%patch13
|
||||||
|
%patch14
|
||||||
%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
|
||||||
@ -246,6 +248,7 @@ cd ../build-dir3
|
|||||||
make %{?jobs:-j%jobs} all-bfd all-opcodes
|
make %{?jobs:-j%jobs} all-bfd all-opcodes
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
unset SUSE_IGNORED_RPATHS
|
||||||
cd build-dir
|
cd build-dir
|
||||||
%ifnarch %arm
|
%ifnarch %arm
|
||||||
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || %{make_check_handling}
|
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
|
%endif
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
unset SUSE_IGNORED_RPATHS
|
||||||
cd build-dir
|
cd build-dir
|
||||||
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
|
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
|
||||||
%endif
|
%endif
|
||||||
@ -398,6 +402,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jun 09 2009 matz@suse.de
|
||||||
|
- Use --as-needed by default in the build system.
|
||||||
* Wed May 27 2009 rguenther@suse.de
|
* Wed May 27 2009 rguenther@suse.de
|
||||||
- Update to head of trunk.
|
- Update to head of trunk.
|
||||||
- Add patch to fix gold build with glibc 2.10, gcc 4.4.
|
- Add patch to fix gold build with glibc 2.10, gcc 4.4.
|
||||||
|
@ -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
|
Wed May 27 17:12:55 CEST 2009 - rguenther@suse.de
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
Name: cross-x86_64-binutils
|
Name: cross-x86_64-binutils
|
||||||
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
|
BuildRequires: bison dejagnu flex gcc-c++ zlib-devel-static
|
||||||
Version: 2.19.51
|
Version: 2.19.51
|
||||||
Release: 7
|
Release: 8
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
%define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?)
|
||||||
@ -76,6 +76,7 @@ Patch10: enable-targets.diff
|
|||||||
Patch11: use-hashtype-both-by-default.diff
|
Patch11: use-hashtype-both-by-default.diff
|
||||||
Patch12: s390-pic-dso.diff
|
Patch12: s390-pic-dso.diff
|
||||||
Patch13: gold-basename.diff
|
Patch13: gold-basename.diff
|
||||||
|
Patch14: binutils-build-as-needed.diff
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -176,6 +177,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch11
|
%patch11
|
||||||
%patch12
|
%patch12
|
||||||
%patch13
|
%patch13
|
||||||
|
%patch14
|
||||||
%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
|
||||||
@ -246,6 +248,7 @@ cd ../build-dir3
|
|||||||
make %{?jobs:-j%jobs} all-bfd all-opcodes
|
make %{?jobs:-j%jobs} all-bfd all-opcodes
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
unset SUSE_IGNORED_RPATHS
|
||||||
cd build-dir
|
cd build-dir
|
||||||
%ifnarch %arm
|
%ifnarch %arm
|
||||||
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || %{make_check_handling}
|
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
|
%endif
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
unset SUSE_IGNORED_RPATHS
|
||||||
cd build-dir
|
cd build-dir
|
||||||
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
|
make -k check CFLAGS="$RPM_OPT_FLAGS -Wno-unused -Wno-unprototyped-calls" || :
|
||||||
%endif
|
%endif
|
||||||
@ -398,6 +402,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jun 09 2009 matz@suse.de
|
||||||
|
- Use --as-needed by default in the build system.
|
||||||
* Wed May 27 2009 rguenther@suse.de
|
* Wed May 27 2009 rguenther@suse.de
|
||||||
- Update to head of trunk.
|
- Update to head of trunk.
|
||||||
- Add patch to fix gold build with glibc 2.10, gcc 4.4.
|
- Add patch to fix gold build with glibc 2.10, gcc 4.4.
|
||||||
|
Loading…
Reference in New Issue
Block a user