diff --git a/bfd-follow-gnu-debuglink.diff b/bfd-follow-gnu-debuglink.diff new file mode 100644 index 0000000..190ac8f --- /dev/null +++ b/bfd-follow-gnu-debuglink.diff @@ -0,0 +1,97 @@ +2008-06-09 Andreas Schwab + + * opncls.c (find_separate_debug_file): Use the canonical absolute + directory of the bfd filename for finding the debug file in the + global debugfile directory. + +--- bfd/opncls.c.~1.52.~ 2008-03-28 10:38:17.000000000 +0100 ++++ bfd/opncls.c 2008-06-09 17:06:46.000000000 +0200 +@@ -1,6 +1,6 @@ + /* opncls.c -- open and close a BFD. + Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000, +- 2001, 2002, 2003, 2004, 2005, 2006, 2007 ++ 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 + Free Software Foundation, Inc. + + Written by Cygnus Support. +@@ -1224,9 +1224,10 @@ find_separate_debug_file (bfd *abfd, con + char *basename; + char *dir; + char *debugfile; ++ char *canon_dir; + unsigned long crc32; +- int i; + size_t dirlen; ++ size_t canon_dirlen; + + BFD_ASSERT (abfd); + if (debug_file_directory == NULL) +@@ -1263,8 +1264,12 @@ find_separate_debug_file (bfd *abfd, con + memcpy (dir, abfd->filename, dirlen); + dir[dirlen] = '\0'; + ++ canon_dir = lrealpath (dir[0] != '\0' ? dir : "."); ++ canon_dirlen = strlen (canon_dir); ++ + debugfile = bfd_malloc (strlen (debug_file_directory) + 1 +- + dirlen ++ + (canon_dirlen + 1 > dirlen ++ ? canon_dirlen + 1 : dirlen) + + strlen (".debug/") + + strlen (basename) + + 1); +@@ -1272,6 +1277,7 @@ find_separate_debug_file (bfd *abfd, con + { + free (basename); + free (dir); ++ free (canon_dir); + return NULL; + } + +@@ -1283,6 +1289,7 @@ find_separate_debug_file (bfd *abfd, con + { + free (basename); + free (dir); ++ free (canon_dir); + return debugfile; + } + +@@ -1295,29 +1302,33 @@ find_separate_debug_file (bfd *abfd, con + { + free (basename); + free (dir); ++ free (canon_dir); + return debugfile; + } + + /* Then try in the global debugfile directory. */ + strcpy (debugfile, debug_file_directory); +- i = strlen (debug_file_directory) - 1; +- if (i > 0 +- && debug_file_directory[i] != '/' +- && dir[0] != '/') ++ dirlen = strlen (debug_file_directory) - 1; ++ if (dirlen > 0 ++ && debug_file_directory[dirlen] != '/' ++ && canon_dir[0] != '/') + strcat (debugfile, "/"); +- strcat (debugfile, dir); ++ strcat (debugfile, canon_dir); ++ strcat (debugfile, "/"); + strcat (debugfile, basename); + + if (separate_debug_file_exists (debugfile, crc32)) + { + free (basename); + free (dir); ++ free (canon_dir); + return debugfile; + } + + free (debugfile); + free (basename); + free (dir); ++ free (canon_dir); + return NULL; + } + diff --git a/binutils-2.18.50.tar.bz2 b/binutils-2.18.50.tar.bz2 index e510ece..91be555 100644 --- a/binutils-2.18.50.tar.bz2 +++ b/binutils-2.18.50.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1efb4c181a7e8aa4c7f1c88646c1b236518da6a461a189abe15f4b5ba83291cb -size 15502176 +oid sha256:788483615032272742f7f299dc6da2b6e01f5dd689d24facd85797ae27a167f0 +size 15511978 diff --git a/binutils.changes b/binutils.changes index 4beba97..c9123d0 100644 --- a/binutils.changes +++ b/binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 11 12:02:45 CEST 2008 - schwab@suse.de + +- Update to head of trunk. + ------------------------------------------------------------------- Wed Jun 18 16:07:36 CEST 2008 - schwab@suse.de diff --git a/binutils.spec b/binutils.spec index 3fa455a..346a571 100644 --- a/binutils.spec +++ b/binutils.spec @@ -1,5 +1,5 @@ # -# spec file for package binutils (Version 2.18.50.20080618) +# spec file for package binutils (Version 2.18.50.20080711) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -11,7 +11,7 @@ Name: binutils -BuildRequires: bison dejagnu flex gcc-c++ +BuildRequires: bison dejagnu flex gcc-c++ zlib-devel # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -45,7 +45,7 @@ License: GNU Free Documentation License, Version 1.1 (GFDL 1.1); GNU Free Group: Development/Tools/Building PreReq: %{install_info_prereq} AutoReqProv: on -Version: 2.18.50.20080618 +Version: 2.18.50.20080711 Release: 1 %define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//') Summary: GNU Binutils @@ -63,6 +63,7 @@ Patch9: testsuite.diff Patch10: enable-targets.diff Patch11: use-hashtype-both-by-default.diff Patch12: s390-pic-dso.diff +Patch13: bfd-follow-gnu-debuglink.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -140,7 +141,7 @@ Authors: License: GPL v2 or later; LGPL v2.1 or later Summary: GNU binutils (BFD development files) AutoReqProv: on -Requires: binutils = %{version}-%{release} +Requires: binutils = %{version}-%{release}, zlib-devel Provides: binutils:/usr/include/bfd.h Group: Development/Libraries/C and C++ @@ -229,6 +230,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch10 %patch11 %patch12 +%patch13 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 @@ -442,6 +444,8 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/lib*.a %changelog +* Fri Jul 11 2008 schwab@suse.de +- Update to head of trunk. * Wed Jun 18 2008 schwab@suse.de - Update to head of trunk. * Thu Apr 10 2008 ro@suse.de diff --git a/cross-alpha-binutils.changes b/cross-alpha-binutils.changes index 4beba97..c9123d0 100644 --- a/cross-alpha-binutils.changes +++ b/cross-alpha-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 11 12:02:45 CEST 2008 - schwab@suse.de + +- Update to head of trunk. + ------------------------------------------------------------------- Wed Jun 18 16:07:36 CEST 2008 - schwab@suse.de diff --git a/cross-alpha-binutils.spec b/cross-alpha-binutils.spec index 7813a51..e6c1e4f 100644 --- a/cross-alpha-binutils.spec +++ b/cross-alpha-binutils.spec @@ -1,5 +1,5 @@ # -# spec file for package cross-alpha-binutils (Version 2.18.50.20080618) +# spec file for package cross-alpha-binutils (Version 2.18.50.20080711) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -11,7 +11,7 @@ Name: cross-alpha-binutils -BuildRequires: bison dejagnu flex gcc-c++ +BuildRequires: bison dejagnu flex gcc-c++ zlib-devel # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -45,7 +45,7 @@ License: GPL v2 or later; LGPL v2.1 or later; X11/MIT Group: Development/Tools/Building PreReq: %{install_info_prereq} AutoReqProv: on -Version: 2.18.50.20080618 +Version: 2.18.50.20080711 Release: 1 %define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//') Summary: GNU binutils for Cross-Development to ALPHA Processors @@ -63,6 +63,7 @@ Patch9: testsuite.diff Patch10: enable-targets.diff Patch11: use-hashtype-both-by-default.diff Patch12: s390-pic-dso.diff +Patch13: bfd-follow-gnu-debuglink.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -162,6 +163,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch10 %patch11 %patch12 +%patch13 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 @@ -370,6 +372,8 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 11 2008 schwab@suse.de +- Update to head of trunk. * Wed Jun 18 2008 schwab@suse.de - Update to head of trunk. * Thu Apr 10 2008 ro@suse.de diff --git a/cross-arm-binutils.changes b/cross-arm-binutils.changes index 4beba97..c9123d0 100644 --- a/cross-arm-binutils.changes +++ b/cross-arm-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 11 12:02:45 CEST 2008 - schwab@suse.de + +- Update to head of trunk. + ------------------------------------------------------------------- Wed Jun 18 16:07:36 CEST 2008 - schwab@suse.de diff --git a/cross-arm-binutils.spec b/cross-arm-binutils.spec index 8aa64f1..6da8cd0 100644 --- a/cross-arm-binutils.spec +++ b/cross-arm-binutils.spec @@ -1,5 +1,5 @@ # -# spec file for package cross-arm-binutils (Version 2.18.50.20080618) +# spec file for package cross-arm-binutils (Version 2.18.50.20080711) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -11,7 +11,7 @@ Name: cross-arm-binutils -BuildRequires: bison dejagnu flex gcc-c++ +BuildRequires: bison dejagnu flex gcc-c++ zlib-devel # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -45,7 +45,7 @@ License: GPL v2 or later; LGPL v2.1 or later; X11/MIT Group: Development/Tools/Building PreReq: %{install_info_prereq} AutoReqProv: on -Version: 2.18.50.20080618 +Version: 2.18.50.20080711 Release: 1 %define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//') Summary: GNU binutils for Cross-Development to ARM Processors @@ -63,6 +63,7 @@ Patch9: testsuite.diff Patch10: enable-targets.diff Patch11: use-hashtype-both-by-default.diff Patch12: s390-pic-dso.diff +Patch13: bfd-follow-gnu-debuglink.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -162,6 +163,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch10 %patch11 %patch12 +%patch13 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 @@ -370,6 +372,8 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 11 2008 schwab@suse.de +- Update to head of trunk. * Wed Jun 18 2008 schwab@suse.de - Update to head of trunk. * Thu Apr 10 2008 ro@suse.de diff --git a/cross-avr-binutils.changes b/cross-avr-binutils.changes index 4beba97..c9123d0 100644 --- a/cross-avr-binutils.changes +++ b/cross-avr-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 11 12:02:45 CEST 2008 - schwab@suse.de + +- Update to head of trunk. + ------------------------------------------------------------------- Wed Jun 18 16:07:36 CEST 2008 - schwab@suse.de diff --git a/cross-avr-binutils.spec b/cross-avr-binutils.spec index 126efcb..1fd0271 100644 --- a/cross-avr-binutils.spec +++ b/cross-avr-binutils.spec @@ -1,5 +1,5 @@ # -# spec file for package cross-avr-binutils (Version 2.18.50.20080618) +# spec file for package cross-avr-binutils (Version 2.18.50.20080711) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -11,7 +11,7 @@ Name: cross-avr-binutils -BuildRequires: bison dejagnu flex gcc-c++ +BuildRequires: bison dejagnu flex gcc-c++ zlib-devel # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -45,7 +45,7 @@ License: GPL v2 or later; LGPL v2.1 or later Group: Development/Tools/Building PreReq: %{install_info_prereq} AutoReqProv: on -Version: 2.18.50.20080618 +Version: 2.18.50.20080711 Release: 1 %define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//') Summary: GNU Binutils for Cross-Development to AVR Processors @@ -63,6 +63,7 @@ Patch9: testsuite.diff Patch10: enable-targets.diff Patch11: use-hashtype-both-by-default.diff Patch12: s390-pic-dso.diff +Patch13: bfd-follow-gnu-debuglink.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -162,6 +163,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch10 %patch11 %patch12 +%patch13 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 @@ -370,6 +372,8 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 11 2008 schwab@suse.de +- Update to head of trunk. * Wed Jun 18 2008 schwab@suse.de - Update to head of trunk. * Thu Apr 10 2008 ro@suse.de diff --git a/cross-hppa-binutils.changes b/cross-hppa-binutils.changes index 4beba97..c9123d0 100644 --- a/cross-hppa-binutils.changes +++ b/cross-hppa-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 11 12:02:45 CEST 2008 - schwab@suse.de + +- Update to head of trunk. + ------------------------------------------------------------------- Wed Jun 18 16:07:36 CEST 2008 - schwab@suse.de diff --git a/cross-hppa-binutils.spec b/cross-hppa-binutils.spec index 589878d..0f6dc9c 100644 --- a/cross-hppa-binutils.spec +++ b/cross-hppa-binutils.spec @@ -1,5 +1,5 @@ # -# spec file for package cross-hppa-binutils (Version 2.18.50.20080618) +# spec file for package cross-hppa-binutils (Version 2.18.50.20080711) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -11,7 +11,7 @@ Name: cross-hppa-binutils -BuildRequires: bison dejagnu flex gcc-c++ +BuildRequires: bison dejagnu flex gcc-c++ zlib-devel # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -45,7 +45,7 @@ License: GPL v2 or later; LGPL v2.1 or later; X11/MIT Group: Development/Tools/Building PreReq: %{install_info_prereq} AutoReqProv: on -Version: 2.18.50.20080618 +Version: 2.18.50.20080711 Release: 1 %define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//') Summary: GNU binutils for Cross-Development to HPPA Processors @@ -63,6 +63,7 @@ Patch9: testsuite.diff Patch10: enable-targets.diff Patch11: use-hashtype-both-by-default.diff Patch12: s390-pic-dso.diff +Patch13: bfd-follow-gnu-debuglink.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -162,6 +163,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch10 %patch11 %patch12 +%patch13 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 @@ -370,6 +372,8 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 11 2008 schwab@suse.de +- Update to head of trunk. * Wed Jun 18 2008 schwab@suse.de - Update to head of trunk. * Thu Apr 10 2008 ro@suse.de diff --git a/cross-hppa64-binutils.changes b/cross-hppa64-binutils.changes index 4beba97..c9123d0 100644 --- a/cross-hppa64-binutils.changes +++ b/cross-hppa64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 11 12:02:45 CEST 2008 - schwab@suse.de + +- Update to head of trunk. + ------------------------------------------------------------------- Wed Jun 18 16:07:36 CEST 2008 - schwab@suse.de diff --git a/cross-hppa64-binutils.spec b/cross-hppa64-binutils.spec index fa48f6d..5c67d87 100644 --- a/cross-hppa64-binutils.spec +++ b/cross-hppa64-binutils.spec @@ -1,5 +1,5 @@ # -# spec file for package cross-hppa64-binutils (Version 2.18.50.20080618) +# spec file for package cross-hppa64-binutils (Version 2.18.50.20080711) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -11,7 +11,7 @@ Name: cross-hppa64-binutils -BuildRequires: bison dejagnu flex gcc-c++ +BuildRequires: bison dejagnu flex gcc-c++ zlib-devel # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -45,7 +45,7 @@ License: GPL v2 or later; LGPL v2.1 or later; X11/MIT Group: Development/Tools/Building PreReq: %{install_info_prereq} AutoReqProv: on -Version: 2.18.50.20080618 +Version: 2.18.50.20080711 Release: 1 %define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//') Summary: GNU binutils for Cross-Development to HPPA64 Processors @@ -63,6 +63,7 @@ Patch9: testsuite.diff Patch10: enable-targets.diff Patch11: use-hashtype-both-by-default.diff Patch12: s390-pic-dso.diff +Patch13: bfd-follow-gnu-debuglink.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -162,6 +163,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch10 %patch11 %patch12 +%patch13 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 @@ -370,6 +372,8 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 11 2008 schwab@suse.de +- Update to head of trunk. * Wed Jun 18 2008 schwab@suse.de - Update to head of trunk. * Thu Apr 10 2008 ro@suse.de diff --git a/cross-i386-binutils.changes b/cross-i386-binutils.changes index 4beba97..c9123d0 100644 --- a/cross-i386-binutils.changes +++ b/cross-i386-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 11 12:02:45 CEST 2008 - schwab@suse.de + +- Update to head of trunk. + ------------------------------------------------------------------- Wed Jun 18 16:07:36 CEST 2008 - schwab@suse.de diff --git a/cross-i386-binutils.spec b/cross-i386-binutils.spec index d0e06be..e829dba 100644 --- a/cross-i386-binutils.spec +++ b/cross-i386-binutils.spec @@ -1,5 +1,5 @@ # -# spec file for package cross-i386-binutils (Version 2.18.50.20080618) +# spec file for package cross-i386-binutils (Version 2.18.50.20080711) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -11,7 +11,7 @@ Name: cross-i386-binutils -BuildRequires: bison dejagnu flex gcc-c++ +BuildRequires: bison dejagnu flex gcc-c++ zlib-devel # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -45,7 +45,7 @@ License: GPL v2 or later; LGPL v2.1 or later; X11/MIT Group: Development/Tools/Building PreReq: %{install_info_prereq} AutoReqProv: on -Version: 2.18.50.20080618 +Version: 2.18.50.20080711 Release: 1 %define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//') Summary: GNU binutils for Cross-Development to X86 Processors @@ -63,6 +63,7 @@ Patch9: testsuite.diff Patch10: enable-targets.diff Patch11: use-hashtype-both-by-default.diff Patch12: s390-pic-dso.diff +Patch13: bfd-follow-gnu-debuglink.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -162,6 +163,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch10 %patch11 %patch12 +%patch13 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 @@ -370,6 +372,8 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 11 2008 schwab@suse.de +- Update to head of trunk. * Wed Jun 18 2008 schwab@suse.de - Update to head of trunk. * Thu Apr 10 2008 ro@suse.de diff --git a/cross-ia64-binutils.changes b/cross-ia64-binutils.changes index 4beba97..c9123d0 100644 --- a/cross-ia64-binutils.changes +++ b/cross-ia64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 11 12:02:45 CEST 2008 - schwab@suse.de + +- Update to head of trunk. + ------------------------------------------------------------------- Wed Jun 18 16:07:36 CEST 2008 - schwab@suse.de diff --git a/cross-ia64-binutils.spec b/cross-ia64-binutils.spec index 384870e..f104068 100644 --- a/cross-ia64-binutils.spec +++ b/cross-ia64-binutils.spec @@ -1,5 +1,5 @@ # -# spec file for package cross-ia64-binutils (Version 2.18.50.20080618) +# spec file for package cross-ia64-binutils (Version 2.18.50.20080711) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -11,7 +11,7 @@ Name: cross-ia64-binutils -BuildRequires: bison dejagnu flex gcc-c++ +BuildRequires: bison dejagnu flex gcc-c++ zlib-devel # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -45,7 +45,7 @@ License: GPL v2 or later; LGPL v2.1 or later; X11/MIT Group: Development/Tools/Building PreReq: %{install_info_prereq} AutoReqProv: on -Version: 2.18.50.20080618 +Version: 2.18.50.20080711 Release: 1 %define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//') Summary: GNU binutils for Cross-Development to IA64 Processors @@ -63,6 +63,7 @@ Patch9: testsuite.diff Patch10: enable-targets.diff Patch11: use-hashtype-both-by-default.diff Patch12: s390-pic-dso.diff +Patch13: bfd-follow-gnu-debuglink.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -162,6 +163,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch10 %patch11 %patch12 +%patch13 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 @@ -370,6 +372,8 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 11 2008 schwab@suse.de +- Update to head of trunk. * Wed Jun 18 2008 schwab@suse.de - Update to head of trunk. * Thu Apr 10 2008 ro@suse.de diff --git a/cross-mips-binutils.changes b/cross-mips-binutils.changes index 4beba97..c9123d0 100644 --- a/cross-mips-binutils.changes +++ b/cross-mips-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 11 12:02:45 CEST 2008 - schwab@suse.de + +- Update to head of trunk. + ------------------------------------------------------------------- Wed Jun 18 16:07:36 CEST 2008 - schwab@suse.de diff --git a/cross-mips-binutils.spec b/cross-mips-binutils.spec index 48ebdea..9cfdb86 100644 --- a/cross-mips-binutils.spec +++ b/cross-mips-binutils.spec @@ -1,5 +1,5 @@ # -# spec file for package cross-mips-binutils (Version 2.18.50.20080618) +# spec file for package cross-mips-binutils (Version 2.18.50.20080711) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -11,7 +11,7 @@ Name: cross-mips-binutils -BuildRequires: bison dejagnu flex gcc-c++ +BuildRequires: bison dejagnu flex gcc-c++ zlib-devel # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -45,7 +45,7 @@ License: GPL v2 or later; LGPL v2.1 or later; X11/MIT Group: Development/Tools/Building PreReq: %{install_info_prereq} AutoReqProv: on -Version: 2.18.50.20080618 +Version: 2.18.50.20080711 Release: 1 %define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//') Summary: GNU binutils for Cross-Development to MIPS Processors @@ -63,6 +63,7 @@ Patch9: testsuite.diff Patch10: enable-targets.diff Patch11: use-hashtype-both-by-default.diff Patch12: s390-pic-dso.diff +Patch13: bfd-follow-gnu-debuglink.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -162,6 +163,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch10 %patch11 %patch12 +%patch13 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 @@ -370,6 +372,8 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 11 2008 schwab@suse.de +- Update to head of trunk. * Wed Jun 18 2008 schwab@suse.de - Update to head of trunk. * Thu Apr 10 2008 ro@suse.de diff --git a/cross-ppc-binutils.changes b/cross-ppc-binutils.changes index 4beba97..c9123d0 100644 --- a/cross-ppc-binutils.changes +++ b/cross-ppc-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 11 12:02:45 CEST 2008 - schwab@suse.de + +- Update to head of trunk. + ------------------------------------------------------------------- Wed Jun 18 16:07:36 CEST 2008 - schwab@suse.de diff --git a/cross-ppc-binutils.spec b/cross-ppc-binutils.spec index b6d6567..ee04c5b 100644 --- a/cross-ppc-binutils.spec +++ b/cross-ppc-binutils.spec @@ -1,5 +1,5 @@ # -# spec file for package cross-ppc-binutils (Version 2.18.50.20080618) +# spec file for package cross-ppc-binutils (Version 2.18.50.20080711) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -11,7 +11,7 @@ Name: cross-ppc-binutils -BuildRequires: bison dejagnu flex gcc-c++ +BuildRequires: bison dejagnu flex gcc-c++ zlib-devel # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -45,7 +45,7 @@ License: GPL v2 or later; LGPL v2.1 or later; X11/MIT Group: Development/Tools/Building PreReq: %{install_info_prereq} AutoReqProv: on -Version: 2.18.50.20080618 +Version: 2.18.50.20080711 Release: 1 %define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//') Summary: GNU binutils for Cross-Development to PowerPC Processors @@ -63,6 +63,7 @@ Patch9: testsuite.diff Patch10: enable-targets.diff Patch11: use-hashtype-both-by-default.diff Patch12: s390-pic-dso.diff +Patch13: bfd-follow-gnu-debuglink.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -162,6 +163,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch10 %patch11 %patch12 +%patch13 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 @@ -370,6 +372,8 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 11 2008 schwab@suse.de +- Update to head of trunk. * Wed Jun 18 2008 schwab@suse.de - Update to head of trunk. * Thu Apr 10 2008 ro@suse.de diff --git a/cross-ppc64-binutils.changes b/cross-ppc64-binutils.changes index 4beba97..c9123d0 100644 --- a/cross-ppc64-binutils.changes +++ b/cross-ppc64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 11 12:02:45 CEST 2008 - schwab@suse.de + +- Update to head of trunk. + ------------------------------------------------------------------- Wed Jun 18 16:07:36 CEST 2008 - schwab@suse.de diff --git a/cross-ppc64-binutils.spec b/cross-ppc64-binutils.spec index 608a132..7874bd7 100644 --- a/cross-ppc64-binutils.spec +++ b/cross-ppc64-binutils.spec @@ -1,5 +1,5 @@ # -# spec file for package cross-ppc64-binutils (Version 2.18.50.20080618) +# spec file for package cross-ppc64-binutils (Version 2.18.50.20080711) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -11,7 +11,7 @@ Name: cross-ppc64-binutils -BuildRequires: bison dejagnu flex gcc-c++ +BuildRequires: bison dejagnu flex gcc-c++ zlib-devel # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -45,7 +45,7 @@ License: GPL v2 or later; LGPL v2.1 or later Group: Development/Tools/Building PreReq: %{install_info_prereq} AutoReqProv: on -Version: 2.18.50.20080618 +Version: 2.18.50.20080711 Release: 1 %define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//') Summary: GNU binutils for cross-development to PowerPC 64bit processors @@ -63,6 +63,7 @@ Patch9: testsuite.diff Patch10: enable-targets.diff Patch11: use-hashtype-both-by-default.diff Patch12: s390-pic-dso.diff +Patch13: bfd-follow-gnu-debuglink.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -162,6 +163,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch10 %patch11 %patch12 +%patch13 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 @@ -370,6 +372,8 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 11 2008 schwab@suse.de +- Update to head of trunk. * Wed Jun 18 2008 schwab@suse.de - Update to head of trunk. * Thu Apr 10 2008 ro@suse.de diff --git a/cross-s390-binutils.changes b/cross-s390-binutils.changes index 4beba97..c9123d0 100644 --- a/cross-s390-binutils.changes +++ b/cross-s390-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 11 12:02:45 CEST 2008 - schwab@suse.de + +- Update to head of trunk. + ------------------------------------------------------------------- Wed Jun 18 16:07:36 CEST 2008 - schwab@suse.de diff --git a/cross-s390-binutils.spec b/cross-s390-binutils.spec index fbe8fab..8db1e65 100644 --- a/cross-s390-binutils.spec +++ b/cross-s390-binutils.spec @@ -1,5 +1,5 @@ # -# spec file for package cross-s390-binutils (Version 2.18.50.20080618) +# spec file for package cross-s390-binutils (Version 2.18.50.20080711) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -11,7 +11,7 @@ Name: cross-s390-binutils -BuildRequires: bison dejagnu flex gcc-c++ +BuildRequires: bison dejagnu flex gcc-c++ zlib-devel # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -45,7 +45,7 @@ License: GPL v2 or later; LGPL v2.1 or later; X11/MIT Group: Development/Tools/Building PreReq: %{install_info_prereq} AutoReqProv: on -Version: 2.18.50.20080618 +Version: 2.18.50.20080711 Release: 1 %define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//') Summary: GNU binutils for Cross-Development to S/390 Processors @@ -63,6 +63,7 @@ Patch9: testsuite.diff Patch10: enable-targets.diff Patch11: use-hashtype-both-by-default.diff Patch12: s390-pic-dso.diff +Patch13: bfd-follow-gnu-debuglink.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -162,6 +163,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch10 %patch11 %patch12 +%patch13 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 @@ -370,6 +372,8 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 11 2008 schwab@suse.de +- Update to head of trunk. * Wed Jun 18 2008 schwab@suse.de - Update to head of trunk. * Thu Apr 10 2008 ro@suse.de diff --git a/cross-s390x-binutils.changes b/cross-s390x-binutils.changes index 4beba97..c9123d0 100644 --- a/cross-s390x-binutils.changes +++ b/cross-s390x-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 11 12:02:45 CEST 2008 - schwab@suse.de + +- Update to head of trunk. + ------------------------------------------------------------------- Wed Jun 18 16:07:36 CEST 2008 - schwab@suse.de diff --git a/cross-s390x-binutils.spec b/cross-s390x-binutils.spec index 63bbc9d..32827e2 100644 --- a/cross-s390x-binutils.spec +++ b/cross-s390x-binutils.spec @@ -1,5 +1,5 @@ # -# spec file for package cross-s390x-binutils (Version 2.18.50.20080618) +# spec file for package cross-s390x-binutils (Version 2.18.50.20080711) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -11,7 +11,7 @@ Name: cross-s390x-binutils -BuildRequires: bison dejagnu flex gcc-c++ +BuildRequires: bison dejagnu flex gcc-c++ zlib-devel # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -45,7 +45,7 @@ License: GPL v2 or later; LGPL v2.1 or later; X11/MIT Group: Development/Tools/Building PreReq: %{install_info_prereq} AutoReqProv: on -Version: 2.18.50.20080618 +Version: 2.18.50.20080711 Release: 1 %define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//') Summary: GNU binutils for Cross-Development to 64-Bit S/390 Processors @@ -63,6 +63,7 @@ Patch9: testsuite.diff Patch10: enable-targets.diff Patch11: use-hashtype-both-by-default.diff Patch12: s390-pic-dso.diff +Patch13: bfd-follow-gnu-debuglink.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -162,6 +163,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch10 %patch11 %patch12 +%patch13 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 @@ -370,6 +372,8 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 11 2008 schwab@suse.de +- Update to head of trunk. * Wed Jun 18 2008 schwab@suse.de - Update to head of trunk. * Thu Apr 10 2008 ro@suse.de diff --git a/cross-sh4-binutils.changes b/cross-sh4-binutils.changes index 4beba97..c9123d0 100644 --- a/cross-sh4-binutils.changes +++ b/cross-sh4-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 11 12:02:45 CEST 2008 - schwab@suse.de + +- Update to head of trunk. + ------------------------------------------------------------------- Wed Jun 18 16:07:36 CEST 2008 - schwab@suse.de diff --git a/cross-sh4-binutils.spec b/cross-sh4-binutils.spec index ea85184..a73606d 100644 --- a/cross-sh4-binutils.spec +++ b/cross-sh4-binutils.spec @@ -1,5 +1,5 @@ # -# spec file for package cross-sh4-binutils (Version 2.18.50.20080618) +# spec file for package cross-sh4-binutils (Version 2.18.50.20080711) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -11,7 +11,7 @@ Name: cross-sh4-binutils -BuildRequires: bison dejagnu flex gcc-c++ +BuildRequires: bison dejagnu flex gcc-c++ zlib-devel # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -45,7 +45,7 @@ License: GPL v2 or later; LGPL v2.1 or later Group: Development/Tools/Building PreReq: %{install_info_prereq} AutoReqProv: on -Version: 2.18.50.20080618 +Version: 2.18.50.20080711 Release: 1 %define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//') Summary: GNU binutils for Cross-Development to SH4 Processors @@ -63,6 +63,7 @@ Patch9: testsuite.diff Patch10: enable-targets.diff Patch11: use-hashtype-both-by-default.diff Patch12: s390-pic-dso.diff +Patch13: bfd-follow-gnu-debuglink.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -161,6 +162,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch10 %patch11 %patch12 +%patch13 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 @@ -369,6 +371,8 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 11 2008 schwab@suse.de +- Update to head of trunk. * Wed Jun 18 2008 schwab@suse.de - Update to head of trunk. * Thu Apr 10 2008 ro@suse.de diff --git a/cross-sparc-binutils.changes b/cross-sparc-binutils.changes index 4beba97..c9123d0 100644 --- a/cross-sparc-binutils.changes +++ b/cross-sparc-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 11 12:02:45 CEST 2008 - schwab@suse.de + +- Update to head of trunk. + ------------------------------------------------------------------- Wed Jun 18 16:07:36 CEST 2008 - schwab@suse.de diff --git a/cross-sparc-binutils.spec b/cross-sparc-binutils.spec index bba3fa2..c0a4e11 100644 --- a/cross-sparc-binutils.spec +++ b/cross-sparc-binutils.spec @@ -1,5 +1,5 @@ # -# spec file for package cross-sparc-binutils (Version 2.18.50.20080618) +# spec file for package cross-sparc-binutils (Version 2.18.50.20080711) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -11,7 +11,7 @@ Name: cross-sparc-binutils -BuildRequires: bison dejagnu flex gcc-c++ +BuildRequires: bison dejagnu flex gcc-c++ zlib-devel # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -45,7 +45,7 @@ License: GPL v2 or later; LGPL v2.1 or later; X11/MIT Group: Development/Tools/Building PreReq: %{install_info_prereq} AutoReqProv: on -Version: 2.18.50.20080618 +Version: 2.18.50.20080711 Release: 1 %define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//') Summary: GNU binutils for Cross-Development to SPARC Processors @@ -63,6 +63,7 @@ Patch9: testsuite.diff Patch10: enable-targets.diff Patch11: use-hashtype-both-by-default.diff Patch12: s390-pic-dso.diff +Patch13: bfd-follow-gnu-debuglink.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -162,6 +163,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch10 %patch11 %patch12 +%patch13 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 @@ -370,6 +372,8 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 11 2008 schwab@suse.de +- Update to head of trunk. * Wed Jun 18 2008 schwab@suse.de - Update to head of trunk. * Thu Apr 10 2008 ro@suse.de diff --git a/cross-spu-binutils.changes b/cross-spu-binutils.changes index 4beba97..c9123d0 100644 --- a/cross-spu-binutils.changes +++ b/cross-spu-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 11 12:02:45 CEST 2008 - schwab@suse.de + +- Update to head of trunk. + ------------------------------------------------------------------- Wed Jun 18 16:07:36 CEST 2008 - schwab@suse.de diff --git a/cross-spu-binutils.spec b/cross-spu-binutils.spec index 76fff99..97a90d4 100644 --- a/cross-spu-binutils.spec +++ b/cross-spu-binutils.spec @@ -1,5 +1,5 @@ # -# spec file for package cross-spu-binutils (Version 2.18.50.20080618) +# spec file for package cross-spu-binutils (Version 2.18.50.20080711) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -11,7 +11,7 @@ Name: cross-spu-binutils -BuildRequires: bison dejagnu flex gcc-c++ +BuildRequires: bison dejagnu flex gcc-c++ zlib-devel # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -45,7 +45,7 @@ License: GPL v2 or later; LGPL v2.1 or later; X11/MIT Group: Development/Tools/Building PreReq: %{install_info_prereq} AutoReqProv: on -Version: 2.18.50.20080618 +Version: 2.18.50.20080711 Release: 1 %define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//') Summary: GNU binutils for Cross-Development to SPU Processors @@ -63,6 +63,7 @@ Patch9: testsuite.diff Patch10: enable-targets.diff Patch11: use-hashtype-both-by-default.diff Patch12: s390-pic-dso.diff +Patch13: bfd-follow-gnu-debuglink.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -162,6 +163,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch10 %patch11 %patch12 +%patch13 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 @@ -370,6 +372,8 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 11 2008 schwab@suse.de +- Update to head of trunk. * Wed Jun 18 2008 schwab@suse.de - Update to head of trunk. * Thu Apr 10 2008 ro@suse.de diff --git a/cross-x86_64-binutils.changes b/cross-x86_64-binutils.changes index 4beba97..c9123d0 100644 --- a/cross-x86_64-binutils.changes +++ b/cross-x86_64-binutils.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 11 12:02:45 CEST 2008 - schwab@suse.de + +- Update to head of trunk. + ------------------------------------------------------------------- Wed Jun 18 16:07:36 CEST 2008 - schwab@suse.de diff --git a/cross-x86_64-binutils.spec b/cross-x86_64-binutils.spec index 93c49f0..8a6f27a 100644 --- a/cross-x86_64-binutils.spec +++ b/cross-x86_64-binutils.spec @@ -1,5 +1,5 @@ # -# spec file for package cross-x86_64-binutils (Version 2.18.50.20080618) +# spec file for package cross-x86_64-binutils (Version 2.18.50.20080711) # # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -11,7 +11,7 @@ Name: cross-x86_64-binutils -BuildRequires: bison dejagnu flex gcc-c++ +BuildRequires: bison dejagnu flex gcc-c++ zlib-devel # # RUN_TESTS %define run_tests %(test ! -f %_sourcedir/RUN_TESTS ; echo $?) @@ -45,7 +45,7 @@ License: GPL v2 or later; LGPL v2.1 or later; X11/MIT Group: Development/Tools/Building PreReq: %{install_info_prereq} AutoReqProv: on -Version: 2.18.50.20080618 +Version: 2.18.50.20080711 Release: 1 %define binutils_version %(echo %version | sed 's/\\.[0-9]\\{8\\}$//') Summary: GNU binutils for Cross-Development to X86-64 Processors @@ -63,6 +63,7 @@ Patch9: testsuite.diff Patch10: enable-targets.diff Patch11: use-hashtype-both-by-default.diff Patch12: s390-pic-dso.diff +Patch13: bfd-follow-gnu-debuglink.diff Patch90: cross-avr-nesc-as.patch Patch92: cross-avr-omit_section_dynsym.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -162,6 +163,7 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa %patch10 %patch11 %patch12 +%patch13 %if "%{TARGET}" == "avr" cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h %patch90 @@ -370,6 +372,8 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Jul 11 2008 schwab@suse.de +- Update to head of trunk. * Wed Jun 18 2008 schwab@suse.de - Update to head of trunk. * Thu Apr 10 2008 ro@suse.de diff --git a/testsuite.diff b/testsuite.diff index 1edc718..48feea6 100644 --- a/testsuite.diff +++ b/testsuite.diff @@ -1,3 +1,22 @@ +--- binutils/testsuite/binutils-all/objdump.W 10 Jul 2008 03:32:23 +0200 1.1 ++++ binutils/testsuite/binutils-all/objdump.W 11 Jul 2008 10:39:50 +0200 +@@ -77,11 +77,11 @@ Raw dump of debug contents of section .d + Length: 25 + DWARF Version: 2 + Prologue Length: 19 +- Minimum Instruction Length: 1 +- Initial value of 'is_stmt': 1 +- Line Base: -5 +- Line Range: 14 +- Opcode Base: 13 ++ Minimum Instruction Length: [0-9]+ ++ Initial value of 'is_stmt': [0-9]+ ++ Line Base: [-0-9]+ ++ Line Range: [0-9]+ ++ Opcode Base: [0-9]+ + + Opcodes: + Opcode 1 has 0 args --- binutils/testsuite/binutils-all/windres/windres.exp +++ binutils/testsuite/binutils-all/windres/windres.exp @@ -46,6 +46,7 @@