forked from pool/binutils
Accepting request 281397 from devel:gcc
- Update to binutils 2.25 release. * Add --data option to strings to only print strings in loadable, initialized data sections. Change the default behaviour to be --all, but add a new configure time option of --disable-default-strings-all to restore the old default behaviour. * Add --include-all-whitespace to strings. * Add --dump-section option to objcopy. * Add support for the Andes NDS32. * PE binaries now once again contain real timestamps by default. To disable the inclusion of a timestamp in a PE binary, use the --no-insert-timestamp command line option. * Replace support for openrisc and or32 with support for or1k. * Add support for the --build-id command line option to COFF based targets. * x86/x86_64 pe-coff now supports the --build-id option. * Add support for the AVR Tiny microcontrollers. * Enhanced the ARM port to accept the assembler output from the CodeComposer Studio tool. Support is enabled via the new command line option -mccs. - Update to 2.25 branch head. * Pulls PIE fixes. - Minor fix on the usage of update-alternatives https://en.opensuse.org/openSUSE:Packaging_Multiple_Version_guidelines OBS-URL: https://build.opensuse.org/request/show/281397 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/binutils?expand=0&rev=101
This commit is contained in:
commit
fddee9731d
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:84fbe69b50edc8424655cdf8537d150e21e03744f27f9f0deb2b17334921f6d7
|
||||
size 24817475
|
3
binutils-2.25.0.tar.bz2
Normal file
3
binutils-2.25.0.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a74c4dc2762c971df8ae09cdc4bcceba2167eb1c522d15532ba36292bf91b867
|
||||
size 25662100
|
@ -1,3 +1,32 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 15 08:54:54 UTC 2015 - rguenther@suse.com
|
||||
|
||||
- Update to binutils 2.25 release.
|
||||
* Add --data option to strings to only print strings in loadable, initialized
|
||||
data sections. Change the default behaviour to be --all, but add a new
|
||||
configure time option of --disable-default-strings-all to restore the old
|
||||
default behaviour.
|
||||
* Add --include-all-whitespace to strings.
|
||||
* Add --dump-section option to objcopy.
|
||||
* Add support for the Andes NDS32.
|
||||
* PE binaries now once again contain real timestamps by default. To disable
|
||||
the inclusion of a timestamp in a PE binary, use the --no-insert-timestamp
|
||||
command line option.
|
||||
* Replace support for openrisc and or32 with support for or1k.
|
||||
* Add support for the --build-id command line option to COFF based targets.
|
||||
* x86/x86_64 pe-coff now supports the --build-id option.
|
||||
* Add support for the AVR Tiny microcontrollers.
|
||||
* Enhanced the ARM port to accept the assembler output from the CodeComposer
|
||||
Studio tool. Support is enabled via the new command line option -mccs.
|
||||
- Update to 2.25 branch head.
|
||||
* Pulls PIE fixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 12 20:26:26 UTC 2015 - dimstar@opensuse.org
|
||||
|
||||
- Minor fix on the usage of update-alternatives
|
||||
https://en.opensuse.org/openSUSE:Packaging_Multiple_Version_guidelines
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 1 16:33:29 UTC 2014 - matz@suse.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package binutils
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -35,7 +35,7 @@ BuildRequires: zlib-devel-static
|
||||
%else
|
||||
BuildRequires: zlib-devel
|
||||
%endif
|
||||
Version: 2.24.90
|
||||
Version: 2.25.0
|
||||
Release: 0
|
||||
#
|
||||
# RUN_TESTS
|
||||
@ -336,7 +336,10 @@ else
|
||||
rm -f "%buildroot/%_bindir/ld";
|
||||
fi
|
||||
mkdir -p "%buildroot/%_sysconfdir/alternatives";
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld";
|
||||
# Keep older versions of brp-symlink happy
|
||||
%if %{suse_version} < 1310
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld"
|
||||
%endif
|
||||
ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld";
|
||||
rm -rf $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
mkdir -p $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
|
@ -1,3 +1,32 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 15 08:54:54 UTC 2015 - rguenther@suse.com
|
||||
|
||||
- Update to binutils 2.25 release.
|
||||
* Add --data option to strings to only print strings in loadable, initialized
|
||||
data sections. Change the default behaviour to be --all, but add a new
|
||||
configure time option of --disable-default-strings-all to restore the old
|
||||
default behaviour.
|
||||
* Add --include-all-whitespace to strings.
|
||||
* Add --dump-section option to objcopy.
|
||||
* Add support for the Andes NDS32.
|
||||
* PE binaries now once again contain real timestamps by default. To disable
|
||||
the inclusion of a timestamp in a PE binary, use the --no-insert-timestamp
|
||||
command line option.
|
||||
* Replace support for openrisc and or32 with support for or1k.
|
||||
* Add support for the --build-id command line option to COFF based targets.
|
||||
* x86/x86_64 pe-coff now supports the --build-id option.
|
||||
* Add support for the AVR Tiny microcontrollers.
|
||||
* Enhanced the ARM port to accept the assembler output from the CodeComposer
|
||||
Studio tool. Support is enabled via the new command line option -mccs.
|
||||
- Update to 2.25 branch head.
|
||||
* Pulls PIE fixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 12 20:26:26 UTC 2015 - dimstar@opensuse.org
|
||||
|
||||
- Minor fix on the usage of update-alternatives
|
||||
https://en.opensuse.org/openSUSE:Packaging_Multiple_Version_guidelines
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 1 16:33:29 UTC 2014 - matz@suse.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package cross-aarch64-binutils
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
||||
%else
|
||||
BuildRequires: zlib-devel
|
||||
%endif
|
||||
Version: 2.24.90
|
||||
Version: 2.25.0
|
||||
Release: 0
|
||||
#
|
||||
# RUN_TESTS
|
||||
@ -339,7 +339,10 @@ else
|
||||
rm -f "%buildroot/%_bindir/ld";
|
||||
fi
|
||||
mkdir -p "%buildroot/%_sysconfdir/alternatives";
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld";
|
||||
# Keep older versions of brp-symlink happy
|
||||
%if %{suse_version} < 1310
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld"
|
||||
%endif
|
||||
ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld";
|
||||
rm -rf $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
mkdir -p $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
|
@ -1,3 +1,32 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 15 08:54:54 UTC 2015 - rguenther@suse.com
|
||||
|
||||
- Update to binutils 2.25 release.
|
||||
* Add --data option to strings to only print strings in loadable, initialized
|
||||
data sections. Change the default behaviour to be --all, but add a new
|
||||
configure time option of --disable-default-strings-all to restore the old
|
||||
default behaviour.
|
||||
* Add --include-all-whitespace to strings.
|
||||
* Add --dump-section option to objcopy.
|
||||
* Add support for the Andes NDS32.
|
||||
* PE binaries now once again contain real timestamps by default. To disable
|
||||
the inclusion of a timestamp in a PE binary, use the --no-insert-timestamp
|
||||
command line option.
|
||||
* Replace support for openrisc and or32 with support for or1k.
|
||||
* Add support for the --build-id command line option to COFF based targets.
|
||||
* x86/x86_64 pe-coff now supports the --build-id option.
|
||||
* Add support for the AVR Tiny microcontrollers.
|
||||
* Enhanced the ARM port to accept the assembler output from the CodeComposer
|
||||
Studio tool. Support is enabled via the new command line option -mccs.
|
||||
- Update to 2.25 branch head.
|
||||
* Pulls PIE fixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 12 20:26:26 UTC 2015 - dimstar@opensuse.org
|
||||
|
||||
- Minor fix on the usage of update-alternatives
|
||||
https://en.opensuse.org/openSUSE:Packaging_Multiple_Version_guidelines
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 1 16:33:29 UTC 2014 - matz@suse.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package cross-arm-binutils
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
||||
%else
|
||||
BuildRequires: zlib-devel
|
||||
%endif
|
||||
Version: 2.24.90
|
||||
Version: 2.25.0
|
||||
Release: 0
|
||||
#
|
||||
# RUN_TESTS
|
||||
@ -339,7 +339,10 @@ else
|
||||
rm -f "%buildroot/%_bindir/ld";
|
||||
fi
|
||||
mkdir -p "%buildroot/%_sysconfdir/alternatives";
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld";
|
||||
# Keep older versions of brp-symlink happy
|
||||
%if %{suse_version} < 1310
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld"
|
||||
%endif
|
||||
ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld";
|
||||
rm -rf $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
mkdir -p $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
|
@ -1,3 +1,32 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 15 08:54:54 UTC 2015 - rguenther@suse.com
|
||||
|
||||
- Update to binutils 2.25 release.
|
||||
* Add --data option to strings to only print strings in loadable, initialized
|
||||
data sections. Change the default behaviour to be --all, but add a new
|
||||
configure time option of --disable-default-strings-all to restore the old
|
||||
default behaviour.
|
||||
* Add --include-all-whitespace to strings.
|
||||
* Add --dump-section option to objcopy.
|
||||
* Add support for the Andes NDS32.
|
||||
* PE binaries now once again contain real timestamps by default. To disable
|
||||
the inclusion of a timestamp in a PE binary, use the --no-insert-timestamp
|
||||
command line option.
|
||||
* Replace support for openrisc and or32 with support for or1k.
|
||||
* Add support for the --build-id command line option to COFF based targets.
|
||||
* x86/x86_64 pe-coff now supports the --build-id option.
|
||||
* Add support for the AVR Tiny microcontrollers.
|
||||
* Enhanced the ARM port to accept the assembler output from the CodeComposer
|
||||
Studio tool. Support is enabled via the new command line option -mccs.
|
||||
- Update to 2.25 branch head.
|
||||
* Pulls PIE fixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 12 20:26:26 UTC 2015 - dimstar@opensuse.org
|
||||
|
||||
- Minor fix on the usage of update-alternatives
|
||||
https://en.opensuse.org/openSUSE:Packaging_Multiple_Version_guidelines
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 1 16:33:29 UTC 2014 - matz@suse.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package cross-avr-binutils
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
||||
%else
|
||||
BuildRequires: zlib-devel
|
||||
%endif
|
||||
Version: 2.24.90
|
||||
Version: 2.25.0
|
||||
Release: 0
|
||||
#
|
||||
# RUN_TESTS
|
||||
@ -339,7 +339,10 @@ else
|
||||
rm -f "%buildroot/%_bindir/ld";
|
||||
fi
|
||||
mkdir -p "%buildroot/%_sysconfdir/alternatives";
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld";
|
||||
# Keep older versions of brp-symlink happy
|
||||
%if %{suse_version} < 1310
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld"
|
||||
%endif
|
||||
ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld";
|
||||
rm -rf $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
mkdir -p $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
|
@ -1,3 +1,32 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 15 08:54:54 UTC 2015 - rguenther@suse.com
|
||||
|
||||
- Update to binutils 2.25 release.
|
||||
* Add --data option to strings to only print strings in loadable, initialized
|
||||
data sections. Change the default behaviour to be --all, but add a new
|
||||
configure time option of --disable-default-strings-all to restore the old
|
||||
default behaviour.
|
||||
* Add --include-all-whitespace to strings.
|
||||
* Add --dump-section option to objcopy.
|
||||
* Add support for the Andes NDS32.
|
||||
* PE binaries now once again contain real timestamps by default. To disable
|
||||
the inclusion of a timestamp in a PE binary, use the --no-insert-timestamp
|
||||
command line option.
|
||||
* Replace support for openrisc and or32 with support for or1k.
|
||||
* Add support for the --build-id command line option to COFF based targets.
|
||||
* x86/x86_64 pe-coff now supports the --build-id option.
|
||||
* Add support for the AVR Tiny microcontrollers.
|
||||
* Enhanced the ARM port to accept the assembler output from the CodeComposer
|
||||
Studio tool. Support is enabled via the new command line option -mccs.
|
||||
- Update to 2.25 branch head.
|
||||
* Pulls PIE fixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 12 20:26:26 UTC 2015 - dimstar@opensuse.org
|
||||
|
||||
- Minor fix on the usage of update-alternatives
|
||||
https://en.opensuse.org/openSUSE:Packaging_Multiple_Version_guidelines
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 1 16:33:29 UTC 2014 - matz@suse.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package cross-epiphany-binutils
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
||||
%else
|
||||
BuildRequires: zlib-devel
|
||||
%endif
|
||||
Version: 2.24.90
|
||||
Version: 2.25.0
|
||||
Release: 0
|
||||
#
|
||||
# RUN_TESTS
|
||||
@ -339,7 +339,10 @@ else
|
||||
rm -f "%buildroot/%_bindir/ld";
|
||||
fi
|
||||
mkdir -p "%buildroot/%_sysconfdir/alternatives";
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld";
|
||||
# Keep older versions of brp-symlink happy
|
||||
%if %{suse_version} < 1310
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld"
|
||||
%endif
|
||||
ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld";
|
||||
rm -rf $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
mkdir -p $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
|
@ -1,3 +1,32 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 15 08:54:54 UTC 2015 - rguenther@suse.com
|
||||
|
||||
- Update to binutils 2.25 release.
|
||||
* Add --data option to strings to only print strings in loadable, initialized
|
||||
data sections. Change the default behaviour to be --all, but add a new
|
||||
configure time option of --disable-default-strings-all to restore the old
|
||||
default behaviour.
|
||||
* Add --include-all-whitespace to strings.
|
||||
* Add --dump-section option to objcopy.
|
||||
* Add support for the Andes NDS32.
|
||||
* PE binaries now once again contain real timestamps by default. To disable
|
||||
the inclusion of a timestamp in a PE binary, use the --no-insert-timestamp
|
||||
command line option.
|
||||
* Replace support for openrisc and or32 with support for or1k.
|
||||
* Add support for the --build-id command line option to COFF based targets.
|
||||
* x86/x86_64 pe-coff now supports the --build-id option.
|
||||
* Add support for the AVR Tiny microcontrollers.
|
||||
* Enhanced the ARM port to accept the assembler output from the CodeComposer
|
||||
Studio tool. Support is enabled via the new command line option -mccs.
|
||||
- Update to 2.25 branch head.
|
||||
* Pulls PIE fixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 12 20:26:26 UTC 2015 - dimstar@opensuse.org
|
||||
|
||||
- Minor fix on the usage of update-alternatives
|
||||
https://en.opensuse.org/openSUSE:Packaging_Multiple_Version_guidelines
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 1 16:33:29 UTC 2014 - matz@suse.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package cross-hppa-binutils
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
||||
%else
|
||||
BuildRequires: zlib-devel
|
||||
%endif
|
||||
Version: 2.24.90
|
||||
Version: 2.25.0
|
||||
Release: 0
|
||||
#
|
||||
# RUN_TESTS
|
||||
@ -339,7 +339,10 @@ else
|
||||
rm -f "%buildroot/%_bindir/ld";
|
||||
fi
|
||||
mkdir -p "%buildroot/%_sysconfdir/alternatives";
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld";
|
||||
# Keep older versions of brp-symlink happy
|
||||
%if %{suse_version} < 1310
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld"
|
||||
%endif
|
||||
ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld";
|
||||
rm -rf $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
mkdir -p $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
|
@ -1,3 +1,32 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 15 08:54:54 UTC 2015 - rguenther@suse.com
|
||||
|
||||
- Update to binutils 2.25 release.
|
||||
* Add --data option to strings to only print strings in loadable, initialized
|
||||
data sections. Change the default behaviour to be --all, but add a new
|
||||
configure time option of --disable-default-strings-all to restore the old
|
||||
default behaviour.
|
||||
* Add --include-all-whitespace to strings.
|
||||
* Add --dump-section option to objcopy.
|
||||
* Add support for the Andes NDS32.
|
||||
* PE binaries now once again contain real timestamps by default. To disable
|
||||
the inclusion of a timestamp in a PE binary, use the --no-insert-timestamp
|
||||
command line option.
|
||||
* Replace support for openrisc and or32 with support for or1k.
|
||||
* Add support for the --build-id command line option to COFF based targets.
|
||||
* x86/x86_64 pe-coff now supports the --build-id option.
|
||||
* Add support for the AVR Tiny microcontrollers.
|
||||
* Enhanced the ARM port to accept the assembler output from the CodeComposer
|
||||
Studio tool. Support is enabled via the new command line option -mccs.
|
||||
- Update to 2.25 branch head.
|
||||
* Pulls PIE fixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 12 20:26:26 UTC 2015 - dimstar@opensuse.org
|
||||
|
||||
- Minor fix on the usage of update-alternatives
|
||||
https://en.opensuse.org/openSUSE:Packaging_Multiple_Version_guidelines
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 1 16:33:29 UTC 2014 - matz@suse.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package cross-hppa64-binutils
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
||||
%else
|
||||
BuildRequires: zlib-devel
|
||||
%endif
|
||||
Version: 2.24.90
|
||||
Version: 2.25.0
|
||||
Release: 0
|
||||
#
|
||||
# RUN_TESTS
|
||||
@ -339,7 +339,10 @@ else
|
||||
rm -f "%buildroot/%_bindir/ld";
|
||||
fi
|
||||
mkdir -p "%buildroot/%_sysconfdir/alternatives";
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld";
|
||||
# Keep older versions of brp-symlink happy
|
||||
%if %{suse_version} < 1310
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld"
|
||||
%endif
|
||||
ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld";
|
||||
rm -rf $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
mkdir -p $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
|
@ -1,3 +1,32 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 15 08:54:54 UTC 2015 - rguenther@suse.com
|
||||
|
||||
- Update to binutils 2.25 release.
|
||||
* Add --data option to strings to only print strings in loadable, initialized
|
||||
data sections. Change the default behaviour to be --all, but add a new
|
||||
configure time option of --disable-default-strings-all to restore the old
|
||||
default behaviour.
|
||||
* Add --include-all-whitespace to strings.
|
||||
* Add --dump-section option to objcopy.
|
||||
* Add support for the Andes NDS32.
|
||||
* PE binaries now once again contain real timestamps by default. To disable
|
||||
the inclusion of a timestamp in a PE binary, use the --no-insert-timestamp
|
||||
command line option.
|
||||
* Replace support for openrisc and or32 with support for or1k.
|
||||
* Add support for the --build-id command line option to COFF based targets.
|
||||
* x86/x86_64 pe-coff now supports the --build-id option.
|
||||
* Add support for the AVR Tiny microcontrollers.
|
||||
* Enhanced the ARM port to accept the assembler output from the CodeComposer
|
||||
Studio tool. Support is enabled via the new command line option -mccs.
|
||||
- Update to 2.25 branch head.
|
||||
* Pulls PIE fixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 12 20:26:26 UTC 2015 - dimstar@opensuse.org
|
||||
|
||||
- Minor fix on the usage of update-alternatives
|
||||
https://en.opensuse.org/openSUSE:Packaging_Multiple_Version_guidelines
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 1 16:33:29 UTC 2014 - matz@suse.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package cross-i386-binutils
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
||||
%else
|
||||
BuildRequires: zlib-devel
|
||||
%endif
|
||||
Version: 2.24.90
|
||||
Version: 2.25.0
|
||||
Release: 0
|
||||
#
|
||||
# RUN_TESTS
|
||||
@ -339,7 +339,10 @@ else
|
||||
rm -f "%buildroot/%_bindir/ld";
|
||||
fi
|
||||
mkdir -p "%buildroot/%_sysconfdir/alternatives";
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld";
|
||||
# Keep older versions of brp-symlink happy
|
||||
%if %{suse_version} < 1310
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld"
|
||||
%endif
|
||||
ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld";
|
||||
rm -rf $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
mkdir -p $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
|
@ -1,3 +1,32 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 15 08:54:54 UTC 2015 - rguenther@suse.com
|
||||
|
||||
- Update to binutils 2.25 release.
|
||||
* Add --data option to strings to only print strings in loadable, initialized
|
||||
data sections. Change the default behaviour to be --all, but add a new
|
||||
configure time option of --disable-default-strings-all to restore the old
|
||||
default behaviour.
|
||||
* Add --include-all-whitespace to strings.
|
||||
* Add --dump-section option to objcopy.
|
||||
* Add support for the Andes NDS32.
|
||||
* PE binaries now once again contain real timestamps by default. To disable
|
||||
the inclusion of a timestamp in a PE binary, use the --no-insert-timestamp
|
||||
command line option.
|
||||
* Replace support for openrisc and or32 with support for or1k.
|
||||
* Add support for the --build-id command line option to COFF based targets.
|
||||
* x86/x86_64 pe-coff now supports the --build-id option.
|
||||
* Add support for the AVR Tiny microcontrollers.
|
||||
* Enhanced the ARM port to accept the assembler output from the CodeComposer
|
||||
Studio tool. Support is enabled via the new command line option -mccs.
|
||||
- Update to 2.25 branch head.
|
||||
* Pulls PIE fixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 12 20:26:26 UTC 2015 - dimstar@opensuse.org
|
||||
|
||||
- Minor fix on the usage of update-alternatives
|
||||
https://en.opensuse.org/openSUSE:Packaging_Multiple_Version_guidelines
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 1 16:33:29 UTC 2014 - matz@suse.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package cross-ia64-binutils
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
||||
%else
|
||||
BuildRequires: zlib-devel
|
||||
%endif
|
||||
Version: 2.24.90
|
||||
Version: 2.25.0
|
||||
Release: 0
|
||||
#
|
||||
# RUN_TESTS
|
||||
@ -339,7 +339,10 @@ else
|
||||
rm -f "%buildroot/%_bindir/ld";
|
||||
fi
|
||||
mkdir -p "%buildroot/%_sysconfdir/alternatives";
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld";
|
||||
# Keep older versions of brp-symlink happy
|
||||
%if %{suse_version} < 1310
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld"
|
||||
%endif
|
||||
ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld";
|
||||
rm -rf $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
mkdir -p $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
|
@ -1,3 +1,32 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 15 08:54:54 UTC 2015 - rguenther@suse.com
|
||||
|
||||
- Update to binutils 2.25 release.
|
||||
* Add --data option to strings to only print strings in loadable, initialized
|
||||
data sections. Change the default behaviour to be --all, but add a new
|
||||
configure time option of --disable-default-strings-all to restore the old
|
||||
default behaviour.
|
||||
* Add --include-all-whitespace to strings.
|
||||
* Add --dump-section option to objcopy.
|
||||
* Add support for the Andes NDS32.
|
||||
* PE binaries now once again contain real timestamps by default. To disable
|
||||
the inclusion of a timestamp in a PE binary, use the --no-insert-timestamp
|
||||
command line option.
|
||||
* Replace support for openrisc and or32 with support for or1k.
|
||||
* Add support for the --build-id command line option to COFF based targets.
|
||||
* x86/x86_64 pe-coff now supports the --build-id option.
|
||||
* Add support for the AVR Tiny microcontrollers.
|
||||
* Enhanced the ARM port to accept the assembler output from the CodeComposer
|
||||
Studio tool. Support is enabled via the new command line option -mccs.
|
||||
- Update to 2.25 branch head.
|
||||
* Pulls PIE fixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 12 20:26:26 UTC 2015 - dimstar@opensuse.org
|
||||
|
||||
- Minor fix on the usage of update-alternatives
|
||||
https://en.opensuse.org/openSUSE:Packaging_Multiple_Version_guidelines
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 1 16:33:29 UTC 2014 - matz@suse.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package cross-m68k-binutils
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
||||
%else
|
||||
BuildRequires: zlib-devel
|
||||
%endif
|
||||
Version: 2.24.90
|
||||
Version: 2.25.0
|
||||
Release: 0
|
||||
#
|
||||
# RUN_TESTS
|
||||
@ -339,7 +339,10 @@ else
|
||||
rm -f "%buildroot/%_bindir/ld";
|
||||
fi
|
||||
mkdir -p "%buildroot/%_sysconfdir/alternatives";
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld";
|
||||
# Keep older versions of brp-symlink happy
|
||||
%if %{suse_version} < 1310
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld"
|
||||
%endif
|
||||
ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld";
|
||||
rm -rf $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
mkdir -p $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
|
@ -1,3 +1,32 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 15 08:54:54 UTC 2015 - rguenther@suse.com
|
||||
|
||||
- Update to binutils 2.25 release.
|
||||
* Add --data option to strings to only print strings in loadable, initialized
|
||||
data sections. Change the default behaviour to be --all, but add a new
|
||||
configure time option of --disable-default-strings-all to restore the old
|
||||
default behaviour.
|
||||
* Add --include-all-whitespace to strings.
|
||||
* Add --dump-section option to objcopy.
|
||||
* Add support for the Andes NDS32.
|
||||
* PE binaries now once again contain real timestamps by default. To disable
|
||||
the inclusion of a timestamp in a PE binary, use the --no-insert-timestamp
|
||||
command line option.
|
||||
* Replace support for openrisc and or32 with support for or1k.
|
||||
* Add support for the --build-id command line option to COFF based targets.
|
||||
* x86/x86_64 pe-coff now supports the --build-id option.
|
||||
* Add support for the AVR Tiny microcontrollers.
|
||||
* Enhanced the ARM port to accept the assembler output from the CodeComposer
|
||||
Studio tool. Support is enabled via the new command line option -mccs.
|
||||
- Update to 2.25 branch head.
|
||||
* Pulls PIE fixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 12 20:26:26 UTC 2015 - dimstar@opensuse.org
|
||||
|
||||
- Minor fix on the usage of update-alternatives
|
||||
https://en.opensuse.org/openSUSE:Packaging_Multiple_Version_guidelines
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 1 16:33:29 UTC 2014 - matz@suse.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package cross-mips-binutils
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
||||
%else
|
||||
BuildRequires: zlib-devel
|
||||
%endif
|
||||
Version: 2.24.90
|
||||
Version: 2.25.0
|
||||
Release: 0
|
||||
#
|
||||
# RUN_TESTS
|
||||
@ -339,7 +339,10 @@ else
|
||||
rm -f "%buildroot/%_bindir/ld";
|
||||
fi
|
||||
mkdir -p "%buildroot/%_sysconfdir/alternatives";
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld";
|
||||
# Keep older versions of brp-symlink happy
|
||||
%if %{suse_version} < 1310
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld"
|
||||
%endif
|
||||
ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld";
|
||||
rm -rf $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
mkdir -p $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
|
@ -1,3 +1,32 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 15 08:54:54 UTC 2015 - rguenther@suse.com
|
||||
|
||||
- Update to binutils 2.25 release.
|
||||
* Add --data option to strings to only print strings in loadable, initialized
|
||||
data sections. Change the default behaviour to be --all, but add a new
|
||||
configure time option of --disable-default-strings-all to restore the old
|
||||
default behaviour.
|
||||
* Add --include-all-whitespace to strings.
|
||||
* Add --dump-section option to objcopy.
|
||||
* Add support for the Andes NDS32.
|
||||
* PE binaries now once again contain real timestamps by default. To disable
|
||||
the inclusion of a timestamp in a PE binary, use the --no-insert-timestamp
|
||||
command line option.
|
||||
* Replace support for openrisc and or32 with support for or1k.
|
||||
* Add support for the --build-id command line option to COFF based targets.
|
||||
* x86/x86_64 pe-coff now supports the --build-id option.
|
||||
* Add support for the AVR Tiny microcontrollers.
|
||||
* Enhanced the ARM port to accept the assembler output from the CodeComposer
|
||||
Studio tool. Support is enabled via the new command line option -mccs.
|
||||
- Update to 2.25 branch head.
|
||||
* Pulls PIE fixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 12 20:26:26 UTC 2015 - dimstar@opensuse.org
|
||||
|
||||
- Minor fix on the usage of update-alternatives
|
||||
https://en.opensuse.org/openSUSE:Packaging_Multiple_Version_guidelines
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 1 16:33:29 UTC 2014 - matz@suse.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package cross-ppc-binutils
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
||||
%else
|
||||
BuildRequires: zlib-devel
|
||||
%endif
|
||||
Version: 2.24.90
|
||||
Version: 2.25.0
|
||||
Release: 0
|
||||
#
|
||||
# RUN_TESTS
|
||||
@ -339,7 +339,10 @@ else
|
||||
rm -f "%buildroot/%_bindir/ld";
|
||||
fi
|
||||
mkdir -p "%buildroot/%_sysconfdir/alternatives";
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld";
|
||||
# Keep older versions of brp-symlink happy
|
||||
%if %{suse_version} < 1310
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld"
|
||||
%endif
|
||||
ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld";
|
||||
rm -rf $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
mkdir -p $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
|
@ -1,3 +1,32 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 15 08:54:54 UTC 2015 - rguenther@suse.com
|
||||
|
||||
- Update to binutils 2.25 release.
|
||||
* Add --data option to strings to only print strings in loadable, initialized
|
||||
data sections. Change the default behaviour to be --all, but add a new
|
||||
configure time option of --disable-default-strings-all to restore the old
|
||||
default behaviour.
|
||||
* Add --include-all-whitespace to strings.
|
||||
* Add --dump-section option to objcopy.
|
||||
* Add support for the Andes NDS32.
|
||||
* PE binaries now once again contain real timestamps by default. To disable
|
||||
the inclusion of a timestamp in a PE binary, use the --no-insert-timestamp
|
||||
command line option.
|
||||
* Replace support for openrisc and or32 with support for or1k.
|
||||
* Add support for the --build-id command line option to COFF based targets.
|
||||
* x86/x86_64 pe-coff now supports the --build-id option.
|
||||
* Add support for the AVR Tiny microcontrollers.
|
||||
* Enhanced the ARM port to accept the assembler output from the CodeComposer
|
||||
Studio tool. Support is enabled via the new command line option -mccs.
|
||||
- Update to 2.25 branch head.
|
||||
* Pulls PIE fixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 12 20:26:26 UTC 2015 - dimstar@opensuse.org
|
||||
|
||||
- Minor fix on the usage of update-alternatives
|
||||
https://en.opensuse.org/openSUSE:Packaging_Multiple_Version_guidelines
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 1 16:33:29 UTC 2014 - matz@suse.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package cross-ppc64-binutils
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
||||
%else
|
||||
BuildRequires: zlib-devel
|
||||
%endif
|
||||
Version: 2.24.90
|
||||
Version: 2.25.0
|
||||
Release: 0
|
||||
#
|
||||
# RUN_TESTS
|
||||
@ -339,7 +339,10 @@ else
|
||||
rm -f "%buildroot/%_bindir/ld";
|
||||
fi
|
||||
mkdir -p "%buildroot/%_sysconfdir/alternatives";
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld";
|
||||
# Keep older versions of brp-symlink happy
|
||||
%if %{suse_version} < 1310
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld"
|
||||
%endif
|
||||
ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld";
|
||||
rm -rf $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
mkdir -p $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
|
@ -1,3 +1,32 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 15 08:54:54 UTC 2015 - rguenther@suse.com
|
||||
|
||||
- Update to binutils 2.25 release.
|
||||
* Add --data option to strings to only print strings in loadable, initialized
|
||||
data sections. Change the default behaviour to be --all, but add a new
|
||||
configure time option of --disable-default-strings-all to restore the old
|
||||
default behaviour.
|
||||
* Add --include-all-whitespace to strings.
|
||||
* Add --dump-section option to objcopy.
|
||||
* Add support for the Andes NDS32.
|
||||
* PE binaries now once again contain real timestamps by default. To disable
|
||||
the inclusion of a timestamp in a PE binary, use the --no-insert-timestamp
|
||||
command line option.
|
||||
* Replace support for openrisc and or32 with support for or1k.
|
||||
* Add support for the --build-id command line option to COFF based targets.
|
||||
* x86/x86_64 pe-coff now supports the --build-id option.
|
||||
* Add support for the AVR Tiny microcontrollers.
|
||||
* Enhanced the ARM port to accept the assembler output from the CodeComposer
|
||||
Studio tool. Support is enabled via the new command line option -mccs.
|
||||
- Update to 2.25 branch head.
|
||||
* Pulls PIE fixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 12 20:26:26 UTC 2015 - dimstar@opensuse.org
|
||||
|
||||
- Minor fix on the usage of update-alternatives
|
||||
https://en.opensuse.org/openSUSE:Packaging_Multiple_Version_guidelines
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 1 16:33:29 UTC 2014 - matz@suse.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package cross-ppc64le-binutils
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
||||
%else
|
||||
BuildRequires: zlib-devel
|
||||
%endif
|
||||
Version: 2.24.90
|
||||
Version: 2.25.0
|
||||
Release: 0
|
||||
#
|
||||
# RUN_TESTS
|
||||
@ -339,7 +339,10 @@ else
|
||||
rm -f "%buildroot/%_bindir/ld";
|
||||
fi
|
||||
mkdir -p "%buildroot/%_sysconfdir/alternatives";
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld";
|
||||
# Keep older versions of brp-symlink happy
|
||||
%if %{suse_version} < 1310
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld"
|
||||
%endif
|
||||
ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld";
|
||||
rm -rf $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
mkdir -p $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
|
@ -1,3 +1,32 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 15 08:54:54 UTC 2015 - rguenther@suse.com
|
||||
|
||||
- Update to binutils 2.25 release.
|
||||
* Add --data option to strings to only print strings in loadable, initialized
|
||||
data sections. Change the default behaviour to be --all, but add a new
|
||||
configure time option of --disable-default-strings-all to restore the old
|
||||
default behaviour.
|
||||
* Add --include-all-whitespace to strings.
|
||||
* Add --dump-section option to objcopy.
|
||||
* Add support for the Andes NDS32.
|
||||
* PE binaries now once again contain real timestamps by default. To disable
|
||||
the inclusion of a timestamp in a PE binary, use the --no-insert-timestamp
|
||||
command line option.
|
||||
* Replace support for openrisc and or32 with support for or1k.
|
||||
* Add support for the --build-id command line option to COFF based targets.
|
||||
* x86/x86_64 pe-coff now supports the --build-id option.
|
||||
* Add support for the AVR Tiny microcontrollers.
|
||||
* Enhanced the ARM port to accept the assembler output from the CodeComposer
|
||||
Studio tool. Support is enabled via the new command line option -mccs.
|
||||
- Update to 2.25 branch head.
|
||||
* Pulls PIE fixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 12 20:26:26 UTC 2015 - dimstar@opensuse.org
|
||||
|
||||
- Minor fix on the usage of update-alternatives
|
||||
https://en.opensuse.org/openSUSE:Packaging_Multiple_Version_guidelines
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 1 16:33:29 UTC 2014 - matz@suse.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package cross-s390-binutils
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
||||
%else
|
||||
BuildRequires: zlib-devel
|
||||
%endif
|
||||
Version: 2.24.90
|
||||
Version: 2.25.0
|
||||
Release: 0
|
||||
#
|
||||
# RUN_TESTS
|
||||
@ -339,7 +339,10 @@ else
|
||||
rm -f "%buildroot/%_bindir/ld";
|
||||
fi
|
||||
mkdir -p "%buildroot/%_sysconfdir/alternatives";
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld";
|
||||
# Keep older versions of brp-symlink happy
|
||||
%if %{suse_version} < 1310
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld"
|
||||
%endif
|
||||
ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld";
|
||||
rm -rf $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
mkdir -p $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
|
@ -1,3 +1,32 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 15 08:54:54 UTC 2015 - rguenther@suse.com
|
||||
|
||||
- Update to binutils 2.25 release.
|
||||
* Add --data option to strings to only print strings in loadable, initialized
|
||||
data sections. Change the default behaviour to be --all, but add a new
|
||||
configure time option of --disable-default-strings-all to restore the old
|
||||
default behaviour.
|
||||
* Add --include-all-whitespace to strings.
|
||||
* Add --dump-section option to objcopy.
|
||||
* Add support for the Andes NDS32.
|
||||
* PE binaries now once again contain real timestamps by default. To disable
|
||||
the inclusion of a timestamp in a PE binary, use the --no-insert-timestamp
|
||||
command line option.
|
||||
* Replace support for openrisc and or32 with support for or1k.
|
||||
* Add support for the --build-id command line option to COFF based targets.
|
||||
* x86/x86_64 pe-coff now supports the --build-id option.
|
||||
* Add support for the AVR Tiny microcontrollers.
|
||||
* Enhanced the ARM port to accept the assembler output from the CodeComposer
|
||||
Studio tool. Support is enabled via the new command line option -mccs.
|
||||
- Update to 2.25 branch head.
|
||||
* Pulls PIE fixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 12 20:26:26 UTC 2015 - dimstar@opensuse.org
|
||||
|
||||
- Minor fix on the usage of update-alternatives
|
||||
https://en.opensuse.org/openSUSE:Packaging_Multiple_Version_guidelines
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 1 16:33:29 UTC 2014 - matz@suse.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package cross-s390x-binutils
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
||||
%else
|
||||
BuildRequires: zlib-devel
|
||||
%endif
|
||||
Version: 2.24.90
|
||||
Version: 2.25.0
|
||||
Release: 0
|
||||
#
|
||||
# RUN_TESTS
|
||||
@ -339,7 +339,10 @@ else
|
||||
rm -f "%buildroot/%_bindir/ld";
|
||||
fi
|
||||
mkdir -p "%buildroot/%_sysconfdir/alternatives";
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld";
|
||||
# Keep older versions of brp-symlink happy
|
||||
%if %{suse_version} < 1310
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld"
|
||||
%endif
|
||||
ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld";
|
||||
rm -rf $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
mkdir -p $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
|
@ -1,3 +1,32 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 15 08:54:54 UTC 2015 - rguenther@suse.com
|
||||
|
||||
- Update to binutils 2.25 release.
|
||||
* Add --data option to strings to only print strings in loadable, initialized
|
||||
data sections. Change the default behaviour to be --all, but add a new
|
||||
configure time option of --disable-default-strings-all to restore the old
|
||||
default behaviour.
|
||||
* Add --include-all-whitespace to strings.
|
||||
* Add --dump-section option to objcopy.
|
||||
* Add support for the Andes NDS32.
|
||||
* PE binaries now once again contain real timestamps by default. To disable
|
||||
the inclusion of a timestamp in a PE binary, use the --no-insert-timestamp
|
||||
command line option.
|
||||
* Replace support for openrisc and or32 with support for or1k.
|
||||
* Add support for the --build-id command line option to COFF based targets.
|
||||
* x86/x86_64 pe-coff now supports the --build-id option.
|
||||
* Add support for the AVR Tiny microcontrollers.
|
||||
* Enhanced the ARM port to accept the assembler output from the CodeComposer
|
||||
Studio tool. Support is enabled via the new command line option -mccs.
|
||||
- Update to 2.25 branch head.
|
||||
* Pulls PIE fixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 12 20:26:26 UTC 2015 - dimstar@opensuse.org
|
||||
|
||||
- Minor fix on the usage of update-alternatives
|
||||
https://en.opensuse.org/openSUSE:Packaging_Multiple_Version_guidelines
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 1 16:33:29 UTC 2014 - matz@suse.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package cross-sparc-binutils
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
||||
%else
|
||||
BuildRequires: zlib-devel
|
||||
%endif
|
||||
Version: 2.24.90
|
||||
Version: 2.25.0
|
||||
Release: 0
|
||||
#
|
||||
# RUN_TESTS
|
||||
@ -339,7 +339,10 @@ else
|
||||
rm -f "%buildroot/%_bindir/ld";
|
||||
fi
|
||||
mkdir -p "%buildroot/%_sysconfdir/alternatives";
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld";
|
||||
# Keep older versions of brp-symlink happy
|
||||
%if %{suse_version} < 1310
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld"
|
||||
%endif
|
||||
ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld";
|
||||
rm -rf $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
mkdir -p $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
|
@ -1,3 +1,32 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 15 08:54:54 UTC 2015 - rguenther@suse.com
|
||||
|
||||
- Update to binutils 2.25 release.
|
||||
* Add --data option to strings to only print strings in loadable, initialized
|
||||
data sections. Change the default behaviour to be --all, but add a new
|
||||
configure time option of --disable-default-strings-all to restore the old
|
||||
default behaviour.
|
||||
* Add --include-all-whitespace to strings.
|
||||
* Add --dump-section option to objcopy.
|
||||
* Add support for the Andes NDS32.
|
||||
* PE binaries now once again contain real timestamps by default. To disable
|
||||
the inclusion of a timestamp in a PE binary, use the --no-insert-timestamp
|
||||
command line option.
|
||||
* Replace support for openrisc and or32 with support for or1k.
|
||||
* Add support for the --build-id command line option to COFF based targets.
|
||||
* x86/x86_64 pe-coff now supports the --build-id option.
|
||||
* Add support for the AVR Tiny microcontrollers.
|
||||
* Enhanced the ARM port to accept the assembler output from the CodeComposer
|
||||
Studio tool. Support is enabled via the new command line option -mccs.
|
||||
- Update to 2.25 branch head.
|
||||
* Pulls PIE fixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 12 20:26:26 UTC 2015 - dimstar@opensuse.org
|
||||
|
||||
- Minor fix on the usage of update-alternatives
|
||||
https://en.opensuse.org/openSUSE:Packaging_Multiple_Version_guidelines
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 1 16:33:29 UTC 2014 - matz@suse.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package cross-sparc64-binutils
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
||||
%else
|
||||
BuildRequires: zlib-devel
|
||||
%endif
|
||||
Version: 2.24.90
|
||||
Version: 2.25.0
|
||||
Release: 0
|
||||
#
|
||||
# RUN_TESTS
|
||||
@ -339,7 +339,10 @@ else
|
||||
rm -f "%buildroot/%_bindir/ld";
|
||||
fi
|
||||
mkdir -p "%buildroot/%_sysconfdir/alternatives";
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld";
|
||||
# Keep older versions of brp-symlink happy
|
||||
%if %{suse_version} < 1310
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld"
|
||||
%endif
|
||||
ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld";
|
||||
rm -rf $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
mkdir -p $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
|
@ -1,3 +1,32 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 15 08:54:54 UTC 2015 - rguenther@suse.com
|
||||
|
||||
- Update to binutils 2.25 release.
|
||||
* Add --data option to strings to only print strings in loadable, initialized
|
||||
data sections. Change the default behaviour to be --all, but add a new
|
||||
configure time option of --disable-default-strings-all to restore the old
|
||||
default behaviour.
|
||||
* Add --include-all-whitespace to strings.
|
||||
* Add --dump-section option to objcopy.
|
||||
* Add support for the Andes NDS32.
|
||||
* PE binaries now once again contain real timestamps by default. To disable
|
||||
the inclusion of a timestamp in a PE binary, use the --no-insert-timestamp
|
||||
command line option.
|
||||
* Replace support for openrisc and or32 with support for or1k.
|
||||
* Add support for the --build-id command line option to COFF based targets.
|
||||
* x86/x86_64 pe-coff now supports the --build-id option.
|
||||
* Add support for the AVR Tiny microcontrollers.
|
||||
* Enhanced the ARM port to accept the assembler output from the CodeComposer
|
||||
Studio tool. Support is enabled via the new command line option -mccs.
|
||||
- Update to 2.25 branch head.
|
||||
* Pulls PIE fixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 12 20:26:26 UTC 2015 - dimstar@opensuse.org
|
||||
|
||||
- Minor fix on the usage of update-alternatives
|
||||
https://en.opensuse.org/openSUSE:Packaging_Multiple_Version_guidelines
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 1 16:33:29 UTC 2014 - matz@suse.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package cross-spu-binutils
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
||||
%else
|
||||
BuildRequires: zlib-devel
|
||||
%endif
|
||||
Version: 2.24.90
|
||||
Version: 2.25.0
|
||||
Release: 0
|
||||
#
|
||||
# RUN_TESTS
|
||||
@ -339,7 +339,10 @@ else
|
||||
rm -f "%buildroot/%_bindir/ld";
|
||||
fi
|
||||
mkdir -p "%buildroot/%_sysconfdir/alternatives";
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld";
|
||||
# Keep older versions of brp-symlink happy
|
||||
%if %{suse_version} < 1310
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld"
|
||||
%endif
|
||||
ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld";
|
||||
rm -rf $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
mkdir -p $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
|
@ -1,3 +1,32 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 15 08:54:54 UTC 2015 - rguenther@suse.com
|
||||
|
||||
- Update to binutils 2.25 release.
|
||||
* Add --data option to strings to only print strings in loadable, initialized
|
||||
data sections. Change the default behaviour to be --all, but add a new
|
||||
configure time option of --disable-default-strings-all to restore the old
|
||||
default behaviour.
|
||||
* Add --include-all-whitespace to strings.
|
||||
* Add --dump-section option to objcopy.
|
||||
* Add support for the Andes NDS32.
|
||||
* PE binaries now once again contain real timestamps by default. To disable
|
||||
the inclusion of a timestamp in a PE binary, use the --no-insert-timestamp
|
||||
command line option.
|
||||
* Replace support for openrisc and or32 with support for or1k.
|
||||
* Add support for the --build-id command line option to COFF based targets.
|
||||
* x86/x86_64 pe-coff now supports the --build-id option.
|
||||
* Add support for the AVR Tiny microcontrollers.
|
||||
* Enhanced the ARM port to accept the assembler output from the CodeComposer
|
||||
Studio tool. Support is enabled via the new command line option -mccs.
|
||||
- Update to 2.25 branch head.
|
||||
* Pulls PIE fixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 12 20:26:26 UTC 2015 - dimstar@opensuse.org
|
||||
|
||||
- Minor fix on the usage of update-alternatives
|
||||
https://en.opensuse.org/openSUSE:Packaging_Multiple_Version_guidelines
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 1 16:33:29 UTC 2014 - matz@suse.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package cross-x86_64-binutils
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
||||
%else
|
||||
BuildRequires: zlib-devel
|
||||
%endif
|
||||
Version: 2.24.90
|
||||
Version: 2.25.0
|
||||
Release: 0
|
||||
#
|
||||
# RUN_TESTS
|
||||
@ -339,7 +339,10 @@ else
|
||||
rm -f "%buildroot/%_bindir/ld";
|
||||
fi
|
||||
mkdir -p "%buildroot/%_sysconfdir/alternatives";
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld";
|
||||
# Keep older versions of brp-symlink happy
|
||||
%if %{suse_version} < 1310
|
||||
ln -s "%_bindir/ld" "%buildroot/%_sysconfdir/alternatives/ld"
|
||||
%endif
|
||||
ln -s "%_sysconfdir/alternatives/ld" "%buildroot/%_bindir/ld";
|
||||
rm -rf $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
mkdir -p $RPM_BUILD_ROOT%{_prefix}/%{HOST}/bin
|
||||
|
Loading…
Reference in New Issue
Block a user