Blame SPECS/binutils.spec

eeb5bc
eeb5bc
%define __python /opt/rh/gcc-toolset-9/root/usr/bin/python3
eeb5bc
%{?scl:%{?scl_package:%scl_package binutils}}
eeb5bc
eeb5bc
Summary: A GNU collection of binary utilities
eeb5bc
Name: %{?scl_prefix}%{?cross}binutils%{?_with_debug:-debug}
eeb5bc
Version: 2.32
eeb5bc
Release: 17%{?dist}
eeb5bc
License: GPLv3+
eeb5bc
URL: https://sourceware.org/binutils
eeb5bc
0e5f8d
# Binutils SPEC file.  Can be invoked with the following parameters:
0e5f8d
0e5f8d
# --define "binutils_target arm-linux-gnu" to create arm-linux-gnu-binutils.
0e5f8d
# --with=bootstrap: Build with minimal dependencies.
0e5f8d
# --with=debug: Build without optimizations and without splitting the debuginfo.
0e5f8d
# --without=docs: Skip building documentation.
0e5f8d
# --without=testsuite: Do not run the testsuite.  Default is to run it.
0e5f8d
# --with=testsuite: Run the testsuite.  Default when --with=debug is not to run it.
0e5f8d
0e5f8d
#---Start of Configure Options-----------------------------------------------
0e5f8d
0e5f8d
# Do not create deterministic archives by default  (cf: BZ 1195883)
0e5f8d
%define enable_deterministic_archives 0
0e5f8d
0e5f8d
# Enable support for GCC LTO compilation.
0e5f8d
%define enable_lto 1
0e5f8d
0e5f8d
# Disable the default generation of compressed debug sections.
0e5f8d
%define default_compress_debug 0
0e5f8d
0e5f8d
# Default to read-only-relocations (relro) in shared binaries.
0e5f8d
%define default_relro 1
0e5f8d
0e5f8d
# Disable the default generation of GNU Build notes by the assembler.
0e5f8d
# This has turned out to be problematic for the i686 architecture.
0e5f8d
# although the exact reason has not been determined.  (See BZ 1572485)
0e5f8d
# It also breaks building EFI binaries on AArch64, as these cannot have
0e5f8d
# relocations against absolute symbols.
0e5f8d
%define default_generate_notes 0
0e5f8d
0e5f8d
# Enable thread support in the GOLD linker.  This is particularly
0e5f8d
# important if plugins to the linker intend to use threads themselves.
0e5f8d
# See BZ 1636479 for more details.  This option is made configurable
0e5f8d
# in case there is ever a need to disable thread support.
0e5f8d
%define enable_threading 1
0e5f8d
0e5f8d
#----End of Configure Options------------------------------------------------
0e5f8d
0e5f8d
# Default: Not bootstrapping.
0e5f8d
%bcond_with bootstrap
0e5f8d
# Default: Not debug
0e5f8d
%bcond_with debug
0e5f8d
# Default: Always build documentation.
0e5f8d
%bcond_without docs
0e5f8d
# Default: Always run the testsuite.
0e5f8d
%bcond_without testsuite
0e5f8d
0e5f8d
%if %{with bootstrap}
0e5f8d
%undefine with_docs
0e5f8d
%undefine with_testsuite
0e5f8d
%endif
0e5f8d
0e5f8d
%if %{with debug}
0e5f8d
%undefine with_testsuite
0e5f8d
%endif
0e5f8d
0e5f8d
%if 0%{!?binutils_target:1}
0e5f8d
%define binutils_target %{_target_platform}
0e5f8d
%define isnative 1
0e5f8d
%define enable_shared 1
0e5f8d
%else
0e5f8d
%define cross %{binutils_target}-
0e5f8d
%define isnative 0
0e5f8d
%define enable_shared 0
0e5f8d
%endif
0e5f8d
0e5f8d
#----------------------------------------------------------------------------
0e5f8d
0e5f8d
# Note - the Linux Kernel binutils releases are too unstable and contain
0e5f8d
# too many controversial patches so we stick with the official FSF version
0e5f8d
# instead.
0e5f8d
0e5f8d
Source: https://ftp.gnu.org/gnu/binutils/binutils-%{version}.tar.xz
0e5f8d
0e5f8d
Source2: binutils-2.19.50.0.1-output-format.sed
0e5f8d
0e5f8d
%if %{with docs}
0e5f8d
# Strictly speaking this next file is not part of the binutils distribution.
0e5f8d
# But the emacs info system expects it to be present on any system where
0e5f8d
# emacs is installed, and old binutils distributions used to include it by
0e5f8d
# mistake.  Since there is no suitable documentation files component to
0e5f8d
# current RHEL releases, it is included here instead.  In order to save time
0e5f8d
# and complexity it is stored as a pre-built, compressed, info file.
0e5f8d
# The upstream version of the original source file can be found here:
0e5f8d
#   http://git.savannah.gnu.org/gitweb/?p=gnulib.git;a=blob_plain;f=doc/standards.texi;hb=HEAD
0e5f8d
# For more information see: https://bugzilla.redhat.com/show_bug.cgi?id=1467390
0e5f8d
Source3: standards.info.gz
0e5f8d
%endif
0e5f8d
0e5f8d
#----------------------------------------------------------------------------
0e5f8d
0e5f8d
# Purpose:  Use /lib64 and /usr/lib64 instead of /lib and /usr/lib in the
0e5f8d
#           default library search path of 64-bit targets.
0e5f8d
# Lifetime: Permanent, but it should not be.  This is a bug in the libtool
0e5f8d
#           sources used in both binutils and gcc, (specifically the
0e5f8d
#           libtool.m4 file).  These are based on a version released in 2009
0e5f8d
#           (2.2.6?) rather than the latest version.  (Definitely fixed in
0e5f8d
#           libtool version 2.4.6).
0e5f8d
Patch01: binutils-2.20.51.0.2-libtool-lib64.patch
0e5f8d
0e5f8d
# Purpose:  Appends a RHEL or Fedora release string to the generic binutils
0e5f8d
#           version string.
0e5f8d
# Lifetime: Permanent.  This is a RHEL/Fedora specific patch.
0e5f8d
Patch02: binutils-2.25-version.patch
0e5f8d
0e5f8d
# Purpose:  Exports the demangle.h header file (associated with the libiberty
0e5f8d
#           sources) with the binutils-devel rpm.
0e5f8d
# Lifetime: Permanent.  This is a RHEL/Fedora specific patch.
0e5f8d
Patch03: binutils-export-demangle.h.patch
0e5f8d
0e5f8d
# Purpose:  Disables the check in the BFD library's bfd.h header file that
0e5f8d
#           config.h has been included before the bfd.h header.  See BZ
0e5f8d
#           #845084 for more details.
0e5f8d
# Lifetime: Permanent - but it should not be.  The bfd.h header defines
0e5f8d
#           various types that are dependent upon configuration options, so
0e5f8d
#           the order of inclusion is important.
0e5f8d
# FIXME:    It would be better if the packages using the bfd.h header were
0e5f8d
#           fixed so that they do include the header files in the correct
0e5f8d
#           order.
0e5f8d
Patch04: binutils-2.22.52.0.4-no-config-h-check.patch
0e5f8d
0e5f8d
# Purpose:  Include the filename concerned in readelf error messages.  This
0e5f8d
#           makes readelf's output more helpful when it is run on multiple
0e5f8d
#           input files.
0e5f8d
# Lifetime: Permanent.  This patch changes the format of readelf's output,
0e5f8d
#           making it better (IMHO) but also potentially breaking tools that
0e5f8d
#           depend upon readelf's current format.  Hence it remains a local
0e5f8d
#           patch.
0e5f8d
Patch05: binutils-2.29-filename-in-error-messages.patch
0e5f8d
0e5f8d
# Purpose:  Disable an x86/x86_64 optimization that moves functions from the
0e5f8d
#           PLT into the GOTPLT for faster access.  This optimization is
0e5f8d
#           problematic for tools that want to intercept PLT entries, such
0e5f8d
#           as ltrace and LD_AUDIT.  See BZs 1452111 and 1333481.
0e5f8d
# Lifetime: Permanent.  But it should not be.
0e5f8d
# FIXME:    Replace with a configure time option.
0e5f8d
Patch06: binutils-2.29-revert-PLT-elision.patch
0e5f8d
0e5f8d
# Purpose:  Use the "unsigned long long" type for pointers on hosts where
0e5f8d
#           long is a 32-bit type but pointers are a 64-bit type.  Necessary
0e5f8d
#           because the rpmdiff tester insists that if both the i686 and
0e5f8d
#           x86_64 versions of binutils-devel are installed on the same
0e5f8d
#           machine, then they will have identical versions of the bfd.h
0e5f8d
#           header file.
0e5f8d
# Lifetime: Permanent.
0e5f8d
Patch07: binutils-2.25-set-long-long.patch
0e5f8d
0e5f8d
# Purpose:  Changes readelf so that when it displays extra information about
0e5f8d
#           a symbol, this information is placed at the end of the line.
0e5f8d
# Lifetime: Permanent.
0e5f8d
# FIXME:    The proper fix would be to update the scripts that are expecting
0e5f8d
#           a fixed output from readelf.  But it seems that some of them are
0e5f8d
#           no longer being maintained.
0e5f8d
Patch08: binutils-readelf-other-sym-info.patch
0e5f8d
0e5f8d
# Purpose:  Do not create PLT entries for AARCH64 IFUNC symbols referenced in
0e5f8d
#           debug sections.
0e5f8d
# Lifetime: Permanent.
0e5f8d
# FIXME:    Find related bug.  Decide on permanency.
0e5f8d
Patch09: binutils-2.27-aarch64-ifunc.patch
0e5f8d
0e5f8d
# Purpose:  Ignore duplicate indirect symbols generated by GOLD.
0e5f8d
# Lifetime: Permanent.
0e5f8d
# FIXME:    This problem needs to be resolved in the FSF sources, but the
0e5f8d
#           GOLD maintainers seem to be reluctant to address the issue.
0e5f8d
Patch10: binutils-2.28-ignore-gold-duplicates.patch
0e5f8d
0e5f8d
# Purpose:  Stop the binutils from statically linking with libstdc++.
0e5f8d
# Lifetime: Permanent.
0e5f8d
Patch11: binutils-do-not-link-with-static-libstdc++.patch
0e5f8d
0e5f8d
# Purpose:  Add a .attach_to_group pseudo-op to the assembler for
0e5f8d
#           use by the annobin gcc plugin.
0e5f8d
# Lifetime: Permanent.
0e5f8d
Patch12: binutils-attach-to-group.patch
0e5f8d
0e5f8d
# Purpose:  Stop gold from complaining about relocs in the .gnu.build.attribute
0e5f8d
#           section that reference symbols in discarded sections.
0e5f8d
# Lifetime: Fixed in 2.33 (maybe)
0e5f8d
Patch13: binutils-gold-ignore-discarded-note-relocs.patch
0e5f8d
0e5f8d
# Purpose:  Allow OS specific sections in section groups.
0e5f8d
# Lifetime: Might be fixed in 2.33
0e5f8d
Patch14: binutils-special-sections-in-groups.patch
0e5f8d
0e5f8d
# Purpose:  Fix linker testsuite failures.
0e5f8d
# Lifetime: Fixed in 2.33 (possibly)
0e5f8d
Patch15: binutils-fix-testsuite-failures.patch
0e5f8d
0e5f8d
# Purpose:  Improve objdump's handling of corrupt input files.
0e5f8d
# Lifetime: Fixed in 2.33
0e5f8d
Patch16: binutils-CVE-2019-9073.patch
0e5f8d
0e5f8d
# Purpose:  Stop illegal memory access parsing corrupt PE files.
0e5f8d
# Lifetime: Fixed in 2.33
0e5f8d
Patch17: binutils-CVE-2019-9074.patch
0e5f8d
0e5f8d
# Purpose:  Stop illegal memory access parsing corrupt archives.
0e5f8d
# Lifetime: Fixed in 2.33
0e5f8d
Patch18: binutils-CVE-2019-9075.patch
0e5f8d
0e5f8d
# Purpose:  Stop illegal memory access parsing a corrupt MIPS binary.
0e5f8d
# Lifetime: Fixed in 2.33
0e5f8d
Patch19: binutils-CVE-2019-9077.patch
0e5f8d
0e5f8d
# Purpose:  Stop a seg-fault when disassembling an EFI binary.
0e5f8d
# Lifetime: Fixed in 2.33
0e5f8d
Patch20: binutils-disassembling-efi-files.patch
0e5f8d
0e5f8d
# Purpose:  Fix a stack exhaustion problem in libiberty's name demangling code.
0e5f8d
# Lifetime: Fixed in 2.33
0e5f8d
Patch21: binutils-CVE-2019-9071.patch
0e5f8d
0e5f8d
# Purpose:  Have the GOLD linker for AArch64 generate PLT entries for MOVW_ABS
0e5f8d
#           relocations if necessary.
0e5f8d
# Lifetime: Fixed in 2.33
0e5f8d
Patch22: binutils-aarch64-gold-PLT-for-MOVW_ABS.patch
0e5f8d
0e5f8d
# Purpose:  Fix unexpected failures in the linker testsuite
0e5f8d
# Lifetime: Temporary
0e5f8d
Patch23: binutils-ld-testsuite-fixes.patch
0e5f8d
0e5f8d
# Purpose:  Have the GOLD linker generate PT_NOTE segments with 8-byte alignment.
0e5f8d
# Lifetime: Maybe fixed in 2.33.
0e5f8d
Patch24: binutils-gold-8-byte-note-segments.patch
0e5f8d
eeb5bc
# Purpose:  Add descriptions to the new s390x arch13 instructions
eeb5bc
# Lifetime: 2.33
eeb5bc
Patch25: binutils-s390x-arch13-descriptions.patch
eeb5bc
eeb5bc
# Purpose:  Stop gold from aborting when input sections with the same name
eeb5bc
#            have different flags.
eeb5bc
# Lifetime: 2.33 (probably)
eeb5bc
Patch26: binutils-gold-mismatched-section-flags.patch
eeb5bc
eeb5bc
# Purpose:  Remove the builder id comment from bfd-stdint.h.  It causes
eeb5bc
#            conflicts when both the i686 and x86_64 binutils devel rpms
eeb5bc
#            are installed, as the comments makes the file compare as
eeb5bc
#            being different.
eeb5bc
# Lifetime: Permanent.
eeb5bc
Patch27: binutils-no-builder-comment-in-bfd-stdint.patch
eeb5bc
eeb5bc
# Purpose:  Correct licence strings rejected by PELC review.
eeb5bc
# Lifetime: Permanent.
eeb5bc
Patch28: binutils-PELC-licence-corrections.patch
eeb5bc
eeb5bc
# Purpose:  Ignore duplicate FDE entries found in some AArch64 libraries.
eeb5bc
# Lifetime: Permanent.
eeb5bc
Patch29: binutils-ignore-duplicate-FDE-entries.patch
eeb5bc
eeb5bc
# Purpose:  Corrcect a memory corruption when generating relocs for build
eeb5bc
#            notes in the assembler.
eeb5bc
# Lifetime: Fixed in 2.33
eeb5bc
Patch30: binutils-gas-build-note-relocs.patch
eeb5bc
eeb5bc
# Purpose:  Support the generation of variant ABI functions in AArch64 binaries.
eeb5bc
# Lifetime: Fixed in 2.33
eeb5bc
Patch31: binutils-aarch64-STO_AARCH64_VARIANT_PCS.patch
eeb5bc
eeb5bc
# Purpose:  Remove a debugging print statement left in the objcopy code.
eeb5bc
# Lifetime: Fixed in 2.33
eeb5bc
Patch32: binutils-remove-DUP-FUNXC-debug-fprintf.patch
eeb5bc
eeb5bc
# Purpose:  Stop strip from complaining about build notes that do not start
eeb5bc
#            with a version note.
eeb5bc
# Lifetime: Fixed in 2.33
eeb5bc
Patch33: binutils-objcopy-version-note.patch
eeb5bc
eeb5bc
# Purpose: Add check to libiberty library in order to prevent an integer overflow in the gold linker.
eeb5bc
# Lifetime: Fixed in 2.33
eeb5bc
Patch34: binutils-CVE-2019-14250.patch
eeb5bc
eeb5bc
# Purpose: Add check to readelf in order to prevent an integer overflow.
eeb5bc
# Lifetime: Fixed in 2.33
eeb5bc
Patch35: binutils-CVE-2019-14444.patch
eeb5bc
eeb5bc
# Purpose:  Fix a potential seg-fault in the BFD library when parsing
eeb5bc
#            pathalogical debug_info sections.
eeb5bc
# Lifetime: Fixed in 2.34 
eeb5bc
Patch36: binutils-CVE-2019-17451.patch
eeb5bc
eeb5bc
# Purpose:  Fix a memory exhaustion bug in the BFD library when parsing
eeb5bc
#            corrupt DWARF debug information.
eeb5bc
# Lifetime: Fixed in 2.34 
eeb5bc
Patch37: binutils-CVE-2019-17450.patch
eeb5bc
eeb5bc
# Purpose: Add a feature to the x86/64 assembler to create
eeb5bc
#           workarounds for the Intel Jcc Erratum.
eeb5bc
# Lifetime: Fixed in 2.34
eeb5bc
Patch38: binutils-x86-JCC-Errata.patch
eeb5bc
0e5f8d
#----------------------------------------------------------------------------
0e5f8d
0e5f8d
Provides: bundled(libiberty)
0e5f8d
0e5f8d
%define gold_arches %{ix86} x86_64 %{arm} aarch64 %{power64} s390x
0e5f8d
0e5f8d
%if %{with bootstrap}
0e5f8d
%define build_gold      no
0e5f8d
%else
0e5f8d
%ifarch %gold_arches
0e5f8d
%define build_gold      both
0e5f8d
%else
0e5f8d
%define build_gold      no
0e5f8d
%endif
0e5f8d
%endif
0e5f8d
0e5f8d
%define alternatives_cmd %{!?scl:%{_sbindir}}%{?scl:%{_root_sbindir}}/alternatives
0e5f8d
%define alternatives_cmdline %{alternatives_cmd}%{?scl: --altdir %{_sysconfdir}/alternatives --admindir %{_scl_root}/var/lib/alternatives}
0e5f8d
0e5f8d
%if %{with debug}
0e5f8d
# Define this if you want to skip the strip step and preserve debug info.
0e5f8d
# Useful for testing.
0e5f8d
%define __debug_install_post : > %{_builddir}/%{?buildsubdir}/debugfiles.list
0e5f8d
%define debug_package %{nil}
0e5f8d
%endif
0e5f8d
0e5f8d
Buildroot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
0e5f8d
0e5f8d
# Perl, sed and touch are all used in the %%prep section of this spec file.
0e5f8d
BuildRequires: gcc, perl, sed, coreutils
0e5f8d
0e5f8d
# Gold needs bison in order to build gold/yyscript.c.
0e5f8d
# Bison needs m4.
0e5f8d
%if "%{build_gold}" == "both"
0e5f8d
BuildRequires: bison, m4, gcc-c++
0e5f8d
%endif
0e5f8d
0e5f8d
%if %{without bootstrap}
0e5f8d
BuildRequires: gettext, flex, zlib-devel
0e5f8d
%endif
0e5f8d
0e5f8d
%if %{with docs}
0e5f8d
BuildRequires: texinfo >= 4.0
0e5f8d
# BZ 920545: We need pod2man in order to build the manual pages.
0e5f8d
BuildRequires: /usr/bin/pod2man
0e5f8d
Requires(post): /sbin/install-info
0e5f8d
Requires(preun): /sbin/install-info
0e5f8d
%else
0e5f8d
BuildRequires: findutils
0e5f8d
%endif
0e5f8d
0e5f8d
# Required for: ld-bootstrap/bootstrap.exp bootstrap with --static
0e5f8d
# It should not be required for: ld-elf/elf.exp static {preinit,init,fini} array
0e5f8d
%if %{with testsuite}
0e5f8d
# relro_test.sh uses dc which is part of the bc rpm, hence its inclusion here.
0e5f8d
BuildRequires: dejagnu, zlib-static, glibc-static, sharutils, bc
eeb5bc
%if "%{build_gold}" == "both"
0e5f8d
# The GOLD testsuite needs a static libc++
0e5f8d
BuildRequires: libstdc++-static
0e5f8d
%endif
eeb5bc
%endif
0e5f8d
0e5f8d
Conflicts: gcc-c++ < 4.0.0
0e5f8d
0e5f8d
%{?scl:Requires:%scl_runtime}
0e5f8d
0e5f8d
# The higher of these two numbers determines the default ld.
0e5f8d
%{!?ld_bfd_priority: %global ld_bfd_priority    50}
0e5f8d
%{!?ld_gold_priority:%global ld_gold_priority   30}
0e5f8d
0e5f8d
%if "%{build_gold}" == "both"
0e5f8d
Requires(post): coreutils
0e5f8d
Requires(post): %{alternatives_cmd}
0e5f8d
Requires(preun): %{alternatives_cmd}
0e5f8d
%endif
0e5f8d
0e5f8d
# On ARM EABI systems, we do want -gnueabi to be part of the
0e5f8d
# target triple.
0e5f8d
%ifnarch %{arm}
0e5f8d
%define _gnu %{nil}
0e5f8d
%endif
0e5f8d
0e5f8d
#----------------------------------------------------------------------------
0e5f8d
0e5f8d
%description
0e5f8d
Binutils is a collection of binary utilities, including ar (for
0e5f8d
creating, modifying and extracting from archives), as (a family of GNU
0e5f8d
assemblers), gprof (for displaying call graph profile data), ld (the
0e5f8d
GNU linker), nm (for listing symbols from object files), objcopy (for
0e5f8d
copying and translating object files), objdump (for displaying
0e5f8d
information from object files), ranlib (for generating an index for
0e5f8d
the contents of an archive), readelf (for displaying detailed
0e5f8d
information about binary files), size (for listing the section sizes
0e5f8d
of an object or archive file), strings (for listing printable strings
0e5f8d
from files), strip (for discarding symbols), and addr2line (for
0e5f8d
converting addresses to file and line).
0e5f8d
0e5f8d
#----------------------------------------------------------------------------
0e5f8d
0e5f8d
%package devel
0e5f8d
Summary: BFD and opcodes static and dynamic libraries and header files
0e5f8d
Provides: binutils-static = %{version}-%{release}
0e5f8d
Requires: zlib-devel
0e5f8d
Requires: %{?scl_prefix}binutils = %{version}-%{release}
0e5f8d
# BZ 1215242: We need touch...
0e5f8d
Requires: coreutils
0e5f8d
0e5f8d
%description devel
0e5f8d
This package contains BFD and opcodes static and dynamic libraries.
0e5f8d
0e5f8d
The dynamic libraries are in this package, rather than a separate
0e5f8d
base package because they are actually linker scripts that force
0e5f8d
the use of the static libraries.  This is because the API of the
0e5f8d
BFD library is too unstable to be used dynamically.
0e5f8d
0e5f8d
The static libraries are here because they are now needed by the
0e5f8d
dynamic libraries.
0e5f8d
0e5f8d
Developers starting new projects are strongly encouraged to consider
0e5f8d
using libelf instead of BFD.
0e5f8d
0e5f8d
#----------------------------------------------------------------------------
0e5f8d
0e5f8d
%prep
0e5f8d
%setup -q -n binutils-%{version}
0e5f8d
%patch01 -p1
0e5f8d
%patch02 -p1
0e5f8d
%patch03 -p1
0e5f8d
%patch04 -p1
0e5f8d
%patch05 -p1
0e5f8d
%patch06 -p1
0e5f8d
%patch07 -p1
0e5f8d
%patch08 -p1
0e5f8d
%patch09 -p1
0e5f8d
%patch10 -p1
0e5f8d
%patch11 -p1
0e5f8d
%patch12 -p1
0e5f8d
%patch13 -p1
0e5f8d
%patch14 -p1
0e5f8d
%patch15 -p1
0e5f8d
%patch16 -p1
0e5f8d
%patch17 -p1
0e5f8d
%patch18 -p1
0e5f8d
%patch19 -p1
0e5f8d
%patch20 -p1
0e5f8d
%patch21 -p1
0e5f8d
%patch22 -p1
0e5f8d
%patch23 -p1
0e5f8d
%patch24 -p1
eeb5bc
%patch25 -p1
eeb5bc
%patch26 -p1
eeb5bc
%patch27 -p1
eeb5bc
%patch28 -p1
eeb5bc
%patch29 -p1
eeb5bc
%patch30 -p1
eeb5bc
%patch31 -p1
eeb5bc
%patch32 -p1
eeb5bc
%patch33 -p1
eeb5bc
%patch34 -p1
eeb5bc
%patch35 -p1
eeb5bc
%patch36 -p1
eeb5bc
%patch37 -p1
eeb5bc
%patch38 -p1
0e5f8d
0e5f8d
# We cannot run autotools as there is an exact requirement of autoconf-2.59.
0e5f8d
# FIXME - this is no longer true.  Maybe try reinstating autotool use ?
0e5f8d
0e5f8d
# On ppc64 and aarch64, we might use 64KiB pages
0e5f8d
sed -i -e '/#define.*ELF_COMMONPAGESIZE/s/0x1000$/0x10000/' bfd/elf*ppc.c
0e5f8d
sed -i -e '/#define.*ELF_COMMONPAGESIZE/s/0x1000$/0x10000/' bfd/elf*aarch64.c
0e5f8d
sed -i -e '/common_pagesize/s/4 /64 /' gold/powerpc.cc
0e5f8d
sed -i -e '/pagesize/s/0x1000,/0x10000,/' gold/aarch64.cc
0e5f8d
# LTP sucks
0e5f8d
perl -pi -e 's/i\[3-7\]86/i[34567]86/g' */conf*
0e5f8d
sed -i -e 's/%''{release}/%{release}/g' bfd/Makefile{.am,.in}
0e5f8d
sed -i -e '/^libopcodes_la_\(DEPENDENCIES\|LIBADD\)/s,$, ../bfd/libbfd.la,' opcodes/Makefile.{am,in}
0e5f8d
# Build libbfd.so and libopcodes.so with -Bsymbolic-functions if possible.
0e5f8d
if gcc %{optflags} -v --help 2>&1 | grep -q -- -Bsymbolic-functions; then
0e5f8d
sed -i -e 's/^libbfd_la_LDFLAGS = /&-Wl,-Bsymbolic-functions /' bfd/Makefile.{am,in}
0e5f8d
sed -i -e 's/^libopcodes_la_LDFLAGS = /&-Wl,-Bsymbolic-functions /' opcodes/Makefile.{am,in}
0e5f8d
fi
0e5f8d
# $PACKAGE is used for the gettext catalog name.
0e5f8d
sed -i -e 's/^ PACKAGE=/ PACKAGE=%{?cross}/' */configure
0e5f8d
# Undo the name change to run the testsuite.
0e5f8d
for tool in binutils gas ld
0e5f8d
do
0e5f8d
  sed -i -e "2aDEJATOOL = $tool" $tool/Makefile.am
0e5f8d
  sed -i -e "s/^DEJATOOL = .*/DEJATOOL = $tool/" $tool/Makefile.in
0e5f8d
done
0e5f8d
touch */configure
0e5f8d
# Touch the .info files so that they are newer then the .texi files and
0e5f8d
# hence do not need to be rebuilt.  This eliminates the need for makeinfo.
0e5f8d
# The -print is there just to confirm that the command is working.
0e5f8d
%if %{without docs}
0e5f8d
  find . -name *.info -print -exec touch {} \;
0e5f8d
%endif
0e5f8d
0e5f8d
# Not sure how this should be done.  The file is created by
0e5f8d
# patch44.
0e5f8d
chmod +x gold/testsuite/gnu_property_test.sh
0e5f8d
0e5f8d
%ifarch %{power64}
0e5f8d
%define _target_platform %{_arch}-%{_vendor}-%{_host_os}
0e5f8d
%endif
0e5f8d
0e5f8d
#----------------------------------------------------------------------------
0e5f8d
0e5f8d
%build
0e5f8d
echo target is %{binutils_target}
0e5f8d
0e5f8d
%ifarch %{power64}
0e5f8d
export CFLAGS="$RPM_OPT_FLAGS -Wno-error"
0e5f8d
%else
0e5f8d
export CFLAGS="$RPM_OPT_FLAGS"
0e5f8d
%endif
0e5f8d
0e5f8d
CARGS=
0e5f8d
0e5f8d
case %{binutils_target} in i?86*|sparc*|ppc*|s390*|sh*|arm*|aarch64*)
0e5f8d
  CARGS="$CARGS --enable-64-bit-bfd"
0e5f8d
  ;;
0e5f8d
esac
0e5f8d
0e5f8d
case %{binutils_target} in ia64*)
0e5f8d
  CARGS="$CARGS --enable-targets=i386-linux"
0e5f8d
  ;;
0e5f8d
esac
0e5f8d
0e5f8d
case %{binutils_target} in ppc*|ppc64*)
0e5f8d
  CARGS="$CARGS --enable-targets=spu"
0e5f8d
  ;;
0e5f8d
esac
0e5f8d
0e5f8d
case %{binutils_target} in ppc64-*)
0e5f8d
  CARGS="$CARGS --enable-targets=powerpc64le-linux"
0e5f8d
  ;;
0e5f8d
esac
0e5f8d
0e5f8d
case %{binutils_target} in ppc64le*)
0e5f8d
    CARGS="$CARGS --enable-targets=powerpc-linux"
0e5f8d
    ;;
0e5f8d
esac
0e5f8d
0e5f8d
case %{binutils_target} in x86_64*|i?86*|arm*|aarch64*)
0e5f8d
  CARGS="$CARGS --enable-targets=x86_64-pep"
0e5f8d
  ;;
0e5f8d
esac
0e5f8d
0e5f8d
%if %{default_relro}
0e5f8d
  CARGS="$CARGS --enable-relro=yes"
0e5f8d
%else
0e5f8d
  CARGS="$CARGS --enable-relro=no"
0e5f8d
%endif
0e5f8d
0e5f8d
%if 0%{?_with_debug:1}
0e5f8d
export CFLAGS="$CFLAGS -O0 -ggdb2 -Wno-error -D_FORTIFY_SOURCE=0"
0e5f8d
%define enable_shared 0
0e5f8d
%endif
0e5f8d
0e5f8d
# BZ 1541027 - include the linker flags from redhat-rpm-config as well.
0e5f8d
export LDFLAGS=$RPM_LD_FLAGS
0e5f8d
0e5f8d
# We could optimize the cross builds size by --enable-shared but the produced
0e5f8d
# binaries may be less convenient in the embedded environment.
0e5f8d
%configure \
0e5f8d
  --quiet \
0e5f8d
  --build=%{_target_platform} --host=%{_target_platform} \
0e5f8d
  --target=%{binutils_target} \
0e5f8d
%ifarch %gold_arches
0e5f8d
%if "%{build_gold}" == "both"
0e5f8d
  --enable-gold=default \
0e5f8d
%else
0e5f8d
  --enable-gold \
0e5f8d
%endif
0e5f8d
%endif
0e5f8d
  --enable-ld \
0e5f8d
%if %{isnative}
0e5f8d
  --with-sysroot=/ \
0e5f8d
%else
0e5f8d
  --enable-targets=%{_host} \
0e5f8d
  --with-sysroot=%{_prefix}/%{binutils_target}/sys-root \
0e5f8d
  --program-prefix=%{cross} \
0e5f8d
%endif
0e5f8d
%if %{enable_shared}
0e5f8d
  --enable-shared \
0e5f8d
%else
0e5f8d
  --disable-shared \
0e5f8d
%endif
0e5f8d
%if %{enable_deterministic_archives}
0e5f8d
  --enable-deterministic-archives \
0e5f8d
%else
0e5f8d
  --enable-deterministic-archives=no \
0e5f8d
%endif
0e5f8d
%if %{enable_lto}
0e5f8d
  --enable-lto \
0e5f8d
%endif
0e5f8d
%if %{default_compress_debug}
0e5f8d
  --enable-compressed-debug-sections=all \
0e5f8d
%else
0e5f8d
  --enable-compressed-debug-sections=none \
0e5f8d
%endif
0e5f8d
%if %{default_generate_notes}
0e5f8d
  --enable-generate-build-notes=yes \
0e5f8d
%else
0e5f8d
  --enable-generate-build-notes=no \
0e5f8d
%endif
0e5f8d
%if %{enable_threading}
0e5f8d
  --enable-threads=yes \
0e5f8d
%else
0e5f8d
  --enable-threads=no \
0e5f8d
%endif
0e5f8d
  $CARGS \
0e5f8d
  --enable-plugins \
0e5f8d
  --with-bugurl=http://bugzilla.redhat.com/bugzilla/
0e5f8d
0e5f8d
%if %{with docs}
0e5f8d
%make_build %{_smp_mflags} tooldir=%{_prefix} all
0e5f8d
%make_build %{_smp_mflags} tooldir=%{_prefix} info
0e5f8d
%else
0e5f8d
%make_build %{_smp_mflags} tooldir=%{_prefix} MAKEINFO=true all
0e5f8d
%endif
0e5f8d
0e5f8d
# Do not use %%check as it is run after %%install where libbfd.so is rebuilt
0e5f8d
# with -fvisibility=hidden no longer being usable in its shared form.
0e5f8d
%if %{without testsuite}
0e5f8d
echo ====================TESTSUITE DISABLED=========================
0e5f8d
%else
0e5f8d
make -k check < /dev/null || :
0e5f8d
echo ====================TESTING=========================
0e5f8d
cat {gas/testsuite/gas,ld/ld,binutils/binutils}.sum
0e5f8d
%if "%{build_gold}" == "both"
0e5f8d
if [ -f gold/test-suite.log ]; then
0e5f8d
    cat gold/test-suite.log
0e5f8d
fi
0e5f8d
if [ -f gold/testsuite/test-suite.log ]; then
0e5f8d
    cat gold/testsuite/*.log
0e5f8d
fi
0e5f8d
%endif
0e5f8d
echo ====================TESTING END=====================
0e5f8d
for file in {gas/testsuite/gas,ld/ld,binutils/binutils}.{sum,log}
0e5f8d
do
0e5f8d
  ln $file binutils-%{_target_platform}-$(basename $file) || :
0e5f8d
done
0e5f8d
tar cjf binutils-%{_target_platform}.tar.xz  binutils-%{_target_platform}-*.{sum,log}
0e5f8d
uuencode binutils-%{_target_platform}.tar.xz binutils-%{_target_platform}.tar.xz
0e5f8d
rm -f binutils-%{_target_platform}.tar.xz    binutils-%{_target_platform}-*.{sum,log}
0e5f8d
%if "%{build_gold}" == "both"
0e5f8d
if [ -f gold/testsuite/test-suite.log ]; then
0e5f8d
  tar cjf  binutils-%{_target_platform}-gold.log.tar.xz gold/testsuite/*.log
0e5f8d
  uuencode binutils-%{_target_platform}-gold.log.tar.xz binutils-%{_target_platform}-gold.log.tar.xz
0e5f8d
  rm -f    binutils-%{_target_platform}-gold.log.tar.xz
0e5f8d
fi
0e5f8d
%endif
0e5f8d
%endif # with testsuite
0e5f8d
0e5f8d
#----------------------------------------------------------------------------
0e5f8d
0e5f8d
%install
0e5f8d
%if %{with docs}
0e5f8d
%make_install DESTDIR=%{buildroot}
0e5f8d
%else
0e5f8d
%make_install DESTDIR=%{buildroot} MAKEINFO=true
0e5f8d
%endif
0e5f8d
0e5f8d
%if %{isnative}
0e5f8d
%if %{with docs}
0e5f8d
make prefix=%{buildroot}%{_prefix} infodir=%{buildroot}%{_infodir} install-info
0e5f8d
cp %{SOURCE3} %{buildroot}%{_infodir}
0e5f8d
%endif
0e5f8d
0e5f8d
# Rebuild libiberty.a with -fPIC.
0e5f8d
# Future: Remove it together with its header file, projects should bundle it.
0e5f8d
%make_build -C libiberty clean
0e5f8d
%make_build CFLAGS="-g -fPIC $RPM_OPT_FLAGS" -C libiberty
0e5f8d
0e5f8d
# Rebuild libbfd.a with -fPIC.
0e5f8d
# Without the hidden visibility the 3rd party shared libraries would export
0e5f8d
# the bfd non-stable ABI.
0e5f8d
%make_build -C bfd clean
0e5f8d
%make_build CFLAGS="-g -fPIC $RPM_OPT_FLAGS -fvisibility=hidden" -C bfd
0e5f8d
0e5f8d
# Rebuild libopcodes.a with -fPIC.
0e5f8d
%make_build -C opcodes clean
0e5f8d
%make_build CFLAGS="-g -fPIC $RPM_OPT_FLAGS" -C opcodes
0e5f8d
0e5f8d
install -m 644 bfd/libbfd.a %{buildroot}%{_libdir}
0e5f8d
install -m 644 libiberty/libiberty.a %{buildroot}%{_libdir}
0e5f8d
install -m 644 include/libiberty.h %{buildroot}%{_prefix}/include
0e5f8d
install -m 644 opcodes/libopcodes.a %{buildroot}%{_libdir}
0e5f8d
# Remove Windows/Novell only man pages
0e5f8d
rm -f %{buildroot}%{_mandir}/man1/{dlltool,nlmconv,windres,windmc}*
0e5f8d
%if %{without docs}
0e5f8d
rm -f %{buildroot}%{_mandir}/man1/{addr2line,ar,as,c++filt,elfedit,gprof,ld,nm,objcopy,objdump,ranlib,readelf,size,strings,strip}*
0e5f8d
rm -f %{buildroot}%{_infodir}/{as,bfd,binutils,gprof,ld}*
0e5f8d
%endif
0e5f8d
0e5f8d
%if %{enable_shared}
0e5f8d
chmod +x %{buildroot}%{_libdir}/lib*.so*
0e5f8d
%endif
0e5f8d
0e5f8d
# Prevent programs from linking against libbfd and libopcodes
0e5f8d
# dynamically, as they are changed far too often.
0e5f8d
rm -f %{buildroot}%{_libdir}/lib{bfd,opcodes}.so
0e5f8d
0e5f8d
# Remove libtool files, which reference the .so libs
0e5f8d
rm -f %{buildroot}%{_libdir}/lib{bfd,opcodes}.la
0e5f8d
0e5f8d
# Sanity check --enable-64-bit-bfd really works.
0e5f8d
grep '^#define BFD_ARCH_SIZE 64$' %{buildroot}%{_prefix}/include/bfd.h
0e5f8d
# Fix multilib conflicts of generated values by __WORDSIZE-based expressions.
0e5f8d
%ifarch %{ix86} x86_64 ppc %{power64} s390 s390x sh3 sh4 sparc sparc64 arm
0e5f8d
sed -i -e '/^#include "ansidecl.h"/{p;s~^.*$~#include <bits/wordsize.h>~;}' \
0e5f8d
    -e 's/^#define BFD_DEFAULT_TARGET_SIZE \(32\|64\) *$/#define BFD_DEFAULT_TARGET_SIZE __WORDSIZE/' \
0e5f8d
    -e 's/^#define BFD_HOST_64BIT_LONG [01] *$/#define BFD_HOST_64BIT_LONG (__WORDSIZE == 64)/' \
0e5f8d
    -e 's/^#define BFD_HOST_64_BIT \(long \)\?long *$/#if __WORDSIZE == 32\
0e5f8d
#define BFD_HOST_64_BIT long long\
0e5f8d
#else\
0e5f8d
#define BFD_HOST_64_BIT long\
0e5f8d
#endif/' \
0e5f8d
    -e 's/^#define BFD_HOST_U_64_BIT unsigned \(long \)\?long *$/#define BFD_HOST_U_64_BIT unsigned BFD_HOST_64_BIT/' \
0e5f8d
    %{buildroot}%{_prefix}/include/bfd.h
0e5f8d
%endif
0e5f8d
touch -r bfd/bfd-in2.h %{buildroot}%{_prefix}/include/bfd.h
0e5f8d
0e5f8d
# Generate .so linker scripts for dependencies; imported from glibc/Makerules:
0e5f8d
0e5f8d
# This fragment of linker script gives the OUTPUT_FORMAT statement
0e5f8d
# for the configuration we are building.
0e5f8d
OUTPUT_FORMAT="\
0e5f8d
/* Ensure this .so library will not be used by a link for a different format
0e5f8d
   on a multi-architecture system.  */
0e5f8d
$(gcc $CFLAGS $LDFLAGS -shared -x c /dev/null -o /dev/null -Wl,--verbose -v 2>&1 | sed -n -f "%{SOURCE2}")"
0e5f8d
0e5f8d
tee %{buildroot}%{_libdir}/libbfd.so <
0e5f8d
/* GNU ld script */
0e5f8d
0e5f8d
$OUTPUT_FORMAT
0e5f8d
0e5f8d
/* The libz dependency is unexpected by legacy build scripts.  */
0e5f8d
/* The libdl dependency is for plugin support.  (BZ 889134)  */
0e5f8d
INPUT ( %{_libdir}/libbfd.a -liberty -lz -ldl )
0e5f8d
EOH
0e5f8d
0e5f8d
tee %{buildroot}%{_libdir}/libopcodes.so <
0e5f8d
/* GNU ld script */
0e5f8d
0e5f8d
$OUTPUT_FORMAT
0e5f8d
0e5f8d
INPUT ( %{_libdir}/libopcodes.a -lbfd )
0e5f8d
EOH
0e5f8d
0e5f8d
%else # !isnative
0e5f8d
# For cross-binutils we drop the documentation.
0e5f8d
rm -rf %{buildroot}%{_infodir}
0e5f8d
# We keep these as one can have native + cross binutils of different versions.
0e5f8d
#rm -rf {buildroot}{_prefix}/share/locale
0e5f8d
#rm -rf {buildroot}{_mandir}
0e5f8d
rm -rf %{buildroot}%{_libdir}/libiberty.a
0e5f8d
%endif # !isnative
0e5f8d
0e5f8d
# This one comes from gcc
0e5f8d
rm -f %{buildroot}%{_infodir}/dir
0e5f8d
rm -rf %{buildroot}%{_prefix}/%{binutils_target}
0e5f8d
0e5f8d
%find_lang %{?cross}binutils
0e5f8d
%find_lang %{?cross}opcodes
0e5f8d
%find_lang %{?cross}bfd
0e5f8d
%find_lang %{?cross}gas
0e5f8d
%find_lang %{?cross}gprof
0e5f8d
cat %{?cross}opcodes.lang >> %{?cross}binutils.lang
0e5f8d
cat %{?cross}bfd.lang >> %{?cross}binutils.lang
0e5f8d
cat %{?cross}gas.lang >> %{?cross}binutils.lang
0e5f8d
cat %{?cross}gprof.lang >> %{?cross}binutils.lang
0e5f8d
0e5f8d
if [ -x ld/ld-new ]; then
0e5f8d
  %find_lang %{?cross}ld
0e5f8d
  cat %{?cross}ld.lang >> %{?cross}binutils.lang
0e5f8d
fi
0e5f8d
if [ -x gold/ld-new ]; then
0e5f8d
  %find_lang %{?cross}gold
0e5f8d
  cat %{?cross}gold.lang >> %{?cross}binutils.lang
0e5f8d
fi
0e5f8d
0e5f8d
#----------------------------------------------------------------------------
0e5f8d
0e5f8d
%post
0e5f8d
%if "%{build_gold}" == "both"
0e5f8d
%__rm -f %{_bindir}/%{?cross}ld
0e5f8d
%{alternatives_cmdline} --install %{_bindir}/%{?cross}ld %{?cross}ld \
0e5f8d
  %{_bindir}/%{?cross}ld.bfd %{ld_bfd_priority}
0e5f8d
%{alternatives_cmdline} --install %{_bindir}/%{?cross}ld %{?cross}ld \
0e5f8d
  %{_bindir}/%{?cross}ld.gold %{ld_gold_priority}
0e5f8d
%endif # both ld.gold and ld.bfd
0e5f8d
0e5f8d
%if %{isnative}
0e5f8d
%ldconfig_post
0e5f8d
%if %{with docs}
0e5f8d
  /sbin/install-info --info-dir=%{_infodir} %{_infodir}/as.info.gz
0e5f8d
  /sbin/install-info --info-dir=%{_infodir} %{_infodir}/binutils.info.gz
0e5f8d
  /sbin/install-info --info-dir=%{_infodir} %{_infodir}/gprof.info.gz
0e5f8d
  /sbin/install-info --info-dir=%{_infodir} %{_infodir}/ld.info.gz
0e5f8d
  /sbin/install-info --info-dir=%{_infodir} %{_infodir}/standards.info.gz
0e5f8d
%endif # with docs
eeb5bc
%endif # isnative
0e5f8d
0e5f8d
exit 0
0e5f8d
0e5f8d
#----------------------------------------------------------------------------
0e5f8d
0e5f8d
%preun
0e5f8d
%if "%{build_gold}" == "both"
0e5f8d
if [ $1 = 0 ]; then
0e5f8d
  %{alternatives_cmdline} --remove %{?cross}ld %{_bindir}/%{?cross}ld.bfd
0e5f8d
  %{alternatives_cmdline} --remove %{?cross}ld %{_bindir}/%{?cross}ld.gold
0e5f8d
fi
0e5f8d
%endif # both ld.gold and ld.bfd
0e5f8d
0e5f8d
%if %{isnative}
0e5f8d
if [ $1 = 0 ]; then
0e5f8d
  if [ -e %{_infodir}/binutils.info.gz ]
0e5f8d
  then
0e5f8d
    /sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/as.info.gz
0e5f8d
    /sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/binutils.info.gz
0e5f8d
    /sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/gprof.info.gz
0e5f8d
    /sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/ld.info.gz
0e5f8d
    /sbin/install-info --quiet --delete --info-dir=%{_infodir} %{_infodir}/standards.info.gz
0e5f8d
  fi
0e5f8d
fi
0e5f8d
%endif # isnative
0e5f8d
0e5f8d
exit 0
0e5f8d
0e5f8d
#----------------------------------------------------------------------------
0e5f8d
0e5f8d
%if %{isnative}
0e5f8d
%postun
0e5f8d
%ldconfig_postun
0e5f8d
  if [ -e %{_infodir}/binutils.info.gz ]
0e5f8d
  then
0e5f8d
    /sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/as.info.gz
0e5f8d
    /sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/binutils.info.gz
0e5f8d
    /sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/gprof.info.gz
0e5f8d
    /sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/ld.info.gz
0e5f8d
    /sbin/install-info --quiet --delete --info-dir=%{_infodir} %{_infodir}/standards.info.gz
0e5f8d
  fi
eeb5bc
%endif # isnative
0e5f8d
0e5f8d
#----------------------------------------------------------------------------
0e5f8d
0e5f8d
%files -f %{?cross}binutils.lang
0e5f8d
%license COPYING COPYING3 COPYING3.LIB COPYING.LIB
0e5f8d
%doc README
0e5f8d
%{_bindir}/%{?cross}[!l]*
0e5f8d
0e5f8d
%if "%{build_gold}" == "both"
0e5f8d
%{_bindir}/%{?cross}ld.*
0e5f8d
%ghost %{_bindir}/%{?cross}ld
0e5f8d
%else
0e5f8d
%{_bindir}/%{?cross}ld*
0e5f8d
%endif # both ld.gold and ld.bfd
0e5f8d
0e5f8d
%if %{with docs}
0e5f8d
%{_mandir}/man1/*
0e5f8d
%{_infodir}/as.info.*
0e5f8d
%{_infodir}/binutils.info.*
0e5f8d
%{_infodir}/gprof.info.*
0e5f8d
%{_infodir}/ld.info.*
0e5f8d
%{_infodir}/bfd.info.*
0e5f8d
%{_infodir}/standards.info.*
eeb5bc
%endif # with docs
0e5f8d
0e5f8d
%if %{enable_shared}
0e5f8d
%{_libdir}/lib*.so
0e5f8d
%exclude %{_libdir}/libbfd.so
0e5f8d
%exclude %{_libdir}/libopcodes.so
eeb5bc
%endif # enable_shared
0e5f8d
0e5f8d
%if %{isnative}
0e5f8d
0e5f8d
%if %{with docs}
0e5f8d
%{_infodir}/[^b]*info*
0e5f8d
%{_infodir}/binutils*info*
0e5f8d
%endif # with docs
0e5f8d
0e5f8d
%files devel
0e5f8d
%{_prefix}/include/*
0e5f8d
%{_libdir}/lib*.a
0e5f8d
%{_libdir}/libbfd.so
0e5f8d
%{_libdir}/libopcodes.so
0e5f8d
0e5f8d
%if %{with docs}
0e5f8d
%{_infodir}/bfd*info*
0e5f8d
%endif # with docs
0e5f8d
0e5f8d
%endif # isnative
0e5f8d
0e5f8d
#----------------------------------------------------------------------------
0e5f8d
%changelog
eeb5bc
* Sun Dec 08 2019 Nick Clifton  <nickc@redhat.com> - 2.32-17
eeb5bc
- Fix a potential seg-fault in the BFD library when parsing pathalogical debug_info sections.  (#1779255)
eeb5bc
- Fix a potential memory exhaustion in the BFD library when parsing corrupt DWARF debug information.
eeb5bc
- Backport H.J.Lu's patch to add a workaround for the JCC Errata to the assembler. (#1779417)
eeb5bc
- Fix potential integer overflow in readelf.  (#1740470)
eeb5bc
- Fix potential integer overflow in GOLD.  (#1739491)
eeb5bc
eeb5bc
* Tue Aug 06 2019 Nick Clifton  <nickc@redhat.com> - 2.32-15
eeb5bc
- Stop strip from complaining if the first build note is not a version note.  (#1736114)
eeb5bc
eeb5bc
* Mon Aug 05 2019 Nick Clifton  <nickc@redhat.com> - 2.32-14
eeb5bc
- Remove debugging print statement in objcopy sources.  (#1733868)
eeb5bc
eeb5bc
* Fri Jul 05 2019 Nick Clifton  <nickc@redhat.com> - 2.32-13
eeb5bc
- Define scl before Name.
eeb5bc
eeb5bc
* Tue Jul 02 2019 Nick Clifton  <nickc@redhat.com> - 2.32-12
eeb5bc
- Add support for AArch64 function calls that use a variant PCS.
eeb5bc
eeb5bc
* Mon Jul 01 2019 Nick Clifton  <nickc@redhat.com> - 2.32-11
eeb5bc
- Stop gas from triggering a seg-fault when creating relocs for build notes.  (PR 24748)
eeb5bc
eeb5bc
* Tue Jun 25 2019 Nick Clifton  <nickc@redhat.com> - 2.32-10
eeb5bc
- Ignore duplicate FDE entries in AArch64 libraries.  (#1709827)
eeb5bc
eeb5bc
* Tue Jun 25 2019 Nick Clifton  <nickc@redhat.com> - 2.32-9
eeb5bc
- Correct licences rejected by PELC review.
eeb5bc
eeb5bc
* Mon Jun 24 2019 Nick Clifton  <nickc@redhat.com> - 2.32-8
eeb5bc
- Remove the builder command from bfd-stdint.h.
eeb5bc
eeb5bc
* Mon Jun 24 2019 Nick Clifton  <nickc@redhat.com> - 2.32-7
eeb5bc
- Stop gold from aborting when it encounters input sections with the same name and different flags.  (#1722715)
eeb5bc
eeb5bc
* Tue Jun 18 2019 Nick Clifton  <nickc@redhat.com> - 2.32-6
eeb5bc
- Add descriptions to the new s390x arch13 instructions.  (#1690457)
eeb5bc
0e5f8d
* Wed Jun 12 2019 Nick Clifton  <nickc@redhat.com> - 2.32-5
0e5f8d
- Import patch to fix alignment of note segments created by GOLD.  (#1614908)
0e5f8d
0e5f8d
* Tue Jun 11 2019 Nick Clifton  <nickc@redhat.com> - 2.32-4
0e5f8d
- Release bump to allow a rebuild.
0e5f8d
0e5f8d
* Fri Jun 07 2019 Nick Clifton  <nickc@redhat.com> - 2.32-3
0e5f8d
- Add scl macros to spec file.
0e5f8d
- Add gating.yaml file.
0e5f8d
0e5f8d
* Wed Jun 05 2019 Nick Clifton  <nickc@redhat.com> - 2.32-2
0e5f8d
- Fix linker testsuite failures.
0e5f8d
0e5f8d
* Wed Jun 05 2019 Nick Clifton  <nickc@redhat.com> - 2.32-1
0e5f8d
- IMPORT FROM FEDORA RAWHIDE.
0e5f8d
- Improve s390x Hardware support in toolchain.  (#1690983)
0e5f8d
0e5f8d
* Tue May 21 2019 Nick Clifton  <nickc@redhat.com> - 2.32-14
0e5f8d
- Import fix for PR 23870 in order to help building Go binaries.
0e5f8d
0e5f8d
* Mon Apr 29 2019 Nick Clifton  <nickc@redhat.com> - 2.32-13
0e5f8d
- Do not include ld.gold in the base binutils package.  (#1703714)
0e5f8d
0e5f8d
* Wed Apr 24 2019 Björn Esser <besser82@fedoraproject.org> - 2.32-12
0e5f8d
- Remove hardcoded gzip suffix from GNU info pages
0e5f8d
0e5f8d
* Wed Apr 10 2019 Nick Clifton  <nickc@redhat.com> - 2.32-11
0e5f8d
- Fix a stack exhaustion problem in libiberty's name demangling code.  (#1680658)
0e5f8d
0e5f8d
* Mon Mar 18 2019 David Abdurachmanov  <david.abdurachmanov@gmail.com> - 2.32-10
0e5f8d
- Disable ld.gold on RISC-V and fix file installation issues.
0e5f8d
0e5f8d
* Wed Mar 06 2019 Nick Clifton  <nickc@redhat.com> - 2.32-9
0e5f8d
- Stop potential illegal memory access when disassembling an EFI binary.  (#1685727)
0e5f8d
0e5f8d
* Wed Feb 27 2019 Nick Clifton  <nickc@redhat.com> - 2.32-8
0e5f8d
- Fix requirements and use of the alternatives mechanism.  (#1683408, #1683466)
0e5f8d
0e5f8d
* Tue Feb 26 2019 Nick Clifton  <nickc@redhat.com> - 2.32-7
0e5f8d
- Move GOLD into a sub-package of BINUTILS.
0e5f8d
0e5f8d
* Tue Feb 26 2019 Nick Clifton  <nickc@redhat.com> - 2.32-6
0e5f8d
- Stop potential illegal memory access when parsing a corrupt MIPS binary.  (#1680676)
0e5f8d
0e5f8d
* Tue Feb 26 2019 Nick Clifton  <nickc@redhat.com> - 2.32-5
0e5f8d
- Stop potential illegal memory access when parsing corrupt archives.  (#1680670)
0e5f8d
0e5f8d
* Mon Feb 25 2019 Nick Clifton  <nickc@redhat.com> - 2.32-4
0e5f8d
- Stop potential illegal memory access when parsing corrupt PE files.  (#1680682)
0e5f8d
0e5f8d
* Mon Feb 25 2019 Nick Clifton  <nickc@redhat.com> - 2.32-3
0e5f8d
- Improve objdump's handling of corrupt input files.  (#1680663)
0e5f8d
0e5f8d
* Wed Feb 20 2019 Nick Clifton  <nickc@redhat.com> - 2.32-2
0e5f8d
- Fix some bfd linker testsuite failures.
0e5f8d
0e5f8d
* Wed Feb 20 2019 Nick Clifton  <nickc@redhat.com> - 2.32-1
0e5f8d
- Rebase to GNU Binutils 2.32
0e5f8d
- Retire: binutils-s390-partial-relro.patch
0e5f8d
- Retire: binutils-note-merge-improvements.patch
0e5f8d
- Retire: Retire: binutils-merge-attribute-sections.patch
0e5f8d
- Retire: binutils-gold-discard-version-info.patch
0e5f8d
- Retire: binutils-gas-input-matches-output.patch
0e5f8d
- Retire: binutils-fix-testsuite-failures.patch
0e5f8d
- Retire: binutils-do-not-provide-shared-section-symbols.patch
0e5f8d
- Retire: binutils-disable-readelf-gap-reports.patch
0e5f8d
- Retire: binutils-detect-corrupt-sym-version-info.patch
0e5f8d
- Retire: binutils-delay-ld-script-constant-eval.patch
0e5f8d
- Retire: binutils-clear-version-info.patch
0e5f8d
- Retire: binutils-CVE-2018-20002.patch
0e5f8d
- Retire: binutils-CVE-2018-17358.patch
0e5f8d
- Retire: binutils-2.31-export-demangle.h.patch
0e5f8d
- Retire: binutils-2.28-ignore-gold-duplicates.patch
0e5f8d
- Retire: binutils-2.26-lto.patch
0e5f8d
0e5f8d
* Mon Feb 18 2019 Nick Clifton  <nickc@redhat.com> - 2.31.1-23
0e5f8d
- Ensure that decompressed sections have the correct alignment.  (#1678204)
0e5f8d
0e5f8d
* Thu Feb 14 2019 Nick Clifton  <nickc@redhat.com> - 2.31.1-22
0e5f8d
- Rework the post uninstall stage to avoid mysterious error from ldconfig.  (#1673912)
0e5f8d
0e5f8d
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.31.1-21
0e5f8d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
0e5f8d
0e5f8d
* Wed Jan 30 2019 Nick Clifton  <nickc@redhat.com> - 2.31.1-20
0e5f8d
- Fix the assembler's check that the output file is not also one of the input files.  (#1660279)
0e5f8d
0e5f8d
* Thu Jan 03 2019 Nick Clifton  <nickc@redhat.com> - 2.31.1-19
0e5f8d
- Fix a memory leak reading minisymbols.  (#1661535)
0e5f8d
0e5f8d
* Wed Jan 02 2019 Nick Clifton  <nickc@redhat.com> - 2.31.1-18
0e5f8d
- Ensure that GOLD is linked with pthread library.  (#1636479)
0e5f8d
0e5f8d
* Wed Nov 28 2018 Nick Clifton  <nickc@redhat.com> - 2.31.1-17
0e5f8d
- Stop gold from warning about discard version information unless explicitly requested.  (#1654153)
0e5f8d
0e5f8d
* Thu Nov 15 2018 Nick Clifton  <nickc@redhat.com> - 2.31.1-16
0e5f8d
- Remove debugging fprintf statement accidentally left in patch.  (#1645828)
0e5f8d
0e5f8d
* Fri Oct 12 2018 Nick Clifton  <nickc@redhat.com> - 2.31.1-15
0e5f8d
- Allow OS specific sections in section groups.  (#1639485)
0e5f8d
0e5f8d
* Fri Sep 28 2018 Nick Clifton  <nickc@redhat.com> - 2.31.1-14
0e5f8d
- Fix a potential buffer overrun when parsing a corrupt ELF file.  (#1632912)
0e5f8d
- Add a .attach_to_group pseuo-op to assembler (for use by annobin).  (#1630574)
0e5f8d
- Stop the binutils from statically linking with libstdc++.  (#1630550)
0e5f8d
- Include gold testsuite results in test logs.
0e5f8d
- Disable readelf's reporting of gaps in build notes.  (#1623556)
0e5f8d
0e5f8d
* Tue Sep 04 2018 Nick Clifton  <nickc@redhat.com> - 2.31.1-13
0e5f8d
- Delay the evaluation of linker script constants until after the configuration options have been set.  (#1624751)
0e5f8d
0e5f8d
* Tue Aug 28 2018 Nick Clifton  <nickc@redhat.com> - 2.31.1-12
0e5f8d
- Detect and report corrupt symbol version information.  (#1599521)
0e5f8d
0e5f8d
* Tue Aug 14 2018 Nick Clifton  <nickc@redhat.com> - 2.31.1-11
0e5f8d
- Remove the version information from a dynamic symbol that is being overridden.  (#1614920)
0e5f8d
0e5f8d
* Mon Aug 06 2018 Nick Clifton  <nickc@redhat.com> - 2.31.1-10
0e5f8d
- Improve objcopy's --merge-notes option.  (#1608390)
0e5f8d
0e5f8d
* Tue Jul 31 2018 Florian Weimer <fweimer@redhat.com> - 2.31.1-9
0e5f8d
- Rebuild with fixed binutils
0e5f8d
0e5f8d
* Mon Jul 30 2018 Nick Clifton  <nickc@redhat.com> - 2.31.1-8
0e5f8d
- Move the .gnu.build.attributes section to after the .comment section.
0e5f8d
0e5f8d
* Fri Jul 27 2018 Nick Clifton  <nickc@redhat.com> - 2.31.1-7
0e5f8d
- Fix a thinko in the merge patch.
0e5f8d
0e5f8d
* Fri Jul 27 2018 Nick Clifton  <nickc@redhat.com> - 2.31.1-6
0e5f8d
- Fix a typo in the merge patch.
0e5f8d
0e5f8d
* Thu Jul 26 2018 Nick Clifton  <nickc@redhat.com> - 2.31.1-5
0e5f8d
- Merge .gnu.build.attribute sections together.  (#1608390)
0e5f8d
0e5f8d
* Tue Jul 24 2018 Nick Clifton  <nickc@redhat.com> - 2.31.1-3
0e5f8d
- Extend gold linker patch to cover subsections of .gnu.build.attributes.  (#1607054)
0e5f8d
0e5f8d
* Thu Jul 19 2018 Nick Clifton  <nickc@redhat.com> - 2.31.1-2
0e5f8d
- Improve partial relro support for the s/390.
0e5f8d
0e5f8d
* Thu Jul 19 2018 Nick Clifton  <nickc@redhat.com> - 2.31.1-1
0e5f8d
- Rebase to official 2.31.1 GNU Binutils release.
0e5f8d
- Retire: binutils-2.22.52.0.1-export-demangle.h.patch
0e5f8d
- Retire: binutils-2.30-allow_R_AARCH64-symbols.patch
0e5f8d
- Retire: binutils-CVE-2018-10372.patch
0e5f8d
- Retire: binutils-CVE-2018-10373.patch
0e5f8d
- Retire: binutils-CVE-2018-10534.patch
0e5f8d
- Retire: binutils-CVE-2018-10535.patch
0e5f8d
- Retire: binutils-CVE-2018-6323.patch
0e5f8d
- Retire: binutils-CVE-2018-6759.patch
0e5f8d
- Retire: binutils-CVE-2018-7208.patch
0e5f8d
- Retire: binutils-CVE-2018-7568.patch
0e5f8d
- Retire: binutils-CVE-2018-7569.patch
0e5f8d
- Retire: binutils-CVE-2018-7570.patch
0e5f8d
- Retire: binutils-CVE-2018-7642.patch
0e5f8d
- Retire: binutils-CVE-2018-7643.patch
0e5f8d
- Retire: binutils-CVE-2018-8945.patch
0e5f8d
- Retire: binutils-PowerPC-IEEE-long-double-warnings.patch
0e5f8d
- Retire: binutils-debug-section-marking.patch
0e5f8d
- Retire: binutils-gas-build-notes.patch
0e5f8d
- Retire: binutils-gold-llvm-plugin.patch
0e5f8d
- Retire: binutils-ifunc-relocs-in-notes.patch
0e5f8d
- Retire: binutils-linkonce-notes.patch
0e5f8d
- Retire: binutils-missing-notes.patch
0e5f8d
- Retire: binutils-page-to-segment-assignment.patch
0e5f8d
- Retire: binutils-revert-PowerPC-speculation-barriers.patch
0e5f8d
- Retire: binutils-skip-dwo-search-if-not-needed.patch
0e5f8d
- Retire: binutils-speed-up-objdump.patch
0e5f8d
- Retire: binutils-strip-unknown-relocs.patch
0e5f8d
- Retire: binutils-x86-local-relocs.patch
0e5f8d
- Retire: binutils-x86-local-version.patch
0e5f8d
0e5f8d
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.30.90-4
0e5f8d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
0e5f8d
0e5f8d
* Thu Jul 12 2018 Nick Clifton  <nickc@redhat.com> 2.30.90-3
0e5f8d
- Stop gold from complaining about annobin note relocs against symbols in sections which have been discarded.  (#1600431)
0e5f8d
0e5f8d
* Tue Jul 10 2018 Nick Clifton  <nickc@redhat.com> 2.30.90-2
0e5f8d
- Revert fix for PR 23161 which was placing unversioned section symbols (_edata, _end, __bss_start) into shared libraries.  (#1599521)
0e5f8d
0e5f8d
* Mon Jul  9 2018 Nick Clifton  <nickc@redhat.com> 2.30.90-1
0e5f8d
- Rebase to a snapshot of the soon-to-be-created 2.31 FSF release.
0e5f8d
0e5f8d
* Fri Jul  6 2018 Peter Robinson <pbrobinson@fedoraproject.org> 2.30-26
0e5f8d
- Fix the generation of relocations for assembler created notes.  (#1598551)
0e5f8d
0e5f8d
* Wed Jul  4 2018 Peter Robinson <pbrobinson@fedoraproject.org> 2.30-25
0e5f8d
- Minor spec cleanups and fixes.
0e5f8d
0e5f8d
* Mon Jun 18 2018 Nick Clifton  <nickc@redhat.com> 2.30-24
0e5f8d
- When installing both ld.bfd and ld.gold, do not reset the current alternative if upgrading.  (#1592069)
0e5f8d
0e5f8d
* Tue Jun 12 2018 Nick Clifton  <nickc@redhat.com> 2.30-23
0e5f8d
- Correct warning messages about incompatible PowerPC IEEE long double settings.
0e5f8d
0e5f8d
* Fri Jun 01 2018 Nick Clifton  <nickc@redhat.com> 2.30-22
0e5f8d
- Fix handling of local versioned symbols by the x86 linker.  (PR 23194)
0e5f8d
- Fix linker testsuite failures.
0e5f8d
0e5f8d
* Thu May 17 2018 Nick Clifton  <nickc@redhat.com> 2.30-21
0e5f8d
- Fix a seg-fault parsing PE format binaries.  (#1560829)
0e5f8d
0e5f8d
* Mon May 14 2018 Nick Clifton  <nickc@redhat.com> 2.30-20
0e5f8d
- Have the x86 linker resolve relocations against the _end, _edata and __bss_start symbols locally.  (#1576735)
0e5f8d
- Do not generate GNU build notes for linkonce sections.  (#1576362)
0e5f8d
0e5f8d
* Thu May 10 2018 Nick Clifton  <nickc@redhat.com> 2.30-19
0e5f8d
- Fix a seg-fault running objcopy on a corrupt PE format file.  (#1574702)
0e5f8d
- Fix a seg-fault running objcopy on a corrupt ELF format file.  (#1574705)
0e5f8d
0e5f8d
* Tue May 01 2018 Nick Clifton  <nickc@redhat.com> 2.30-18
0e5f8d
- Fix a seg-fault parsing corrupt DWARF information.  (#1573360)
0e5f8d
- Fix another seg-fault parsing corrupt DWARF information.  (#1573367)
0e5f8d
- Fix a seg-fault copying a corrupt ELF file.  (#1551788)
0e5f8d
- Fix a seg-fault parsing a large ELF files on a 32-bit host.  (#1539891)
0e5f8d
- Fix a seg-fault running nm on a corrupt ELF file.  (#15343247)
0e5f8d
- Fix a seg-fault running nm on a file containing corrupt DWARF information.  (#1551781)
0e5f8d
- Fix another seg-fault running nm on a file containing corrupt DWARF information.  (#1551763)
0e5f8d
0e5f8d
* Fri Apr 27 2018 Nick Clifton  <nickc@redhat.com> 2.30-17
0e5f8d
- Disable the automatic generation of annobin notes.  (#1572485)
0e5f8d
0e5f8d
* Fri Apr 27 2018 Nick Clifton  <nickc@redhat.com> 2.30-16
0e5f8d
- Fix for PR 22887 - crashing objdump by passing it a corrupt AOUT binary.  (#1553115)
0e5f8d
- Fix for PR 22905 - crashing objdump by passing it a corrupt DWARF file.  (#1553122)
0e5f8d
- Fix for PR 22741 - crashing objdump by passing it a corrupt COFF file.  (#1571918)
0e5f8d
0e5f8d
* Thu Apr 26 2018 Nick Clifton  <nickc@redhat.com> 2.30-15
0e5f8d
- Enhance the assembler to automatically generate annobin notes if none are present in the input.
0e5f8d
0e5f8d
* Thu Mar 22 2018 Nick Clifton  <nickc@redhat.com> 2.30-14
0e5f8d
- Fix the GOLD linker's processing of protected symbols created by the LLVM plugin.  (#1559234 and PR 22868)
0e5f8d
0e5f8d
* Wed Mar 14 2018 Nick Clifton  <nickc@redhat.com> 2.30-13
0e5f8d
- Do not discard debugobj files created by GCC v8 LTO wrapper.  (#1543912 and RHBZ 84847 and PR 20882)
0e5f8d
0e5f8d
* Fri Mar 09 2018 Nick Clifton  <nickc@redhat.com> 2.30-12
0e5f8d
- Treat relocs against s390x IFUNC symbols in note sections as relocs against the FUNC symbol instead.
0e5f8d
- Combined previous patches into one which covers all ifunc supporting architectures.    (#1553705)
0e5f8d
- Retire binutils-s390-ifunc-relocs-in-notes.patch
0e5f8d
- Retire binutils-x86_64-ifunc-relocs-in-notes.patch
0e5f8d
0e5f8d
* Fri Mar 09 2018 Nick Clifton  <nickc@redhat.com> 2.30-11
0e5f8d
- Treat relocs against s390x IFUNC symbols in note sections as relocs against the FUNC symbol instead.  (#1553705)
0e5f8d
0e5f8d
* Wed Mar 07 2018 Nick Clifton  <nickc@redhat.com> 2.30-10
0e5f8d
- Ignore duplicate symbols generated by GOLD.  (#1458003)
0e5f8d
0e5f8d
* Wed Mar 07 2018 Nick Clifton  <nickc@redhat.com> 2.30-9
0e5f8d
- Stop strip from replacing unknown relocs with null relocs.  (#1545386)
0e5f8d
0e5f8d
* Wed Mar 07 2018 Nick Clifton  <nickc@redhat.com> 2.30-8
0e5f8d
- Ignore duplicate symbols generated by GOLD.  (#1458003)
0e5f8d
0e5f8d
* Mon Mar 05 2018 Nick Clifton  <nickc@redhat.com> 2.30-7
0e5f8d
- Speed up objdump.  (#1551540)
0e5f8d
0e5f8d
* Thu Feb 22 2018 Patrick Uiterwijk <patrick@puiterwijk.org> - 2.30-6
0e5f8d
- Fix R_AARCH64 symbols (PR 22764) (#1547781)
0e5f8d
0e5f8d
* Wed Feb 21 2018 Nick Clifton  <nickc@redhat.com> 2.30-5
0e5f8d
- Fix assignment of pages to segments. (PR 22758)
0e5f8d
- Inject RPM_LD_FLAGS into the build.  (#1541027)
0e5f8d
- Fix slowdown in readelf when examining files with lots of debug information.  (PR 22802)
0e5f8d
- Remove support for PowerPC speculation barrier insertion.
0e5f8d
- Rebase on 2.30
0e5f8d
- Retire binutils-2.22.52.0.1-relro-on-by-default.patch
0e5f8d
- Retire binutils-2.28-dynamic-section-warning.patch
0e5f8d
- Retire binutils-2.29-skip-rp14918-test-for-arm.patch
0e5f8d
- Retire binutils-2.29.1-gold-start-stop.patch
0e5f8d
- Retire binutils-2.29.1-readelf-use-dynamic.patch
0e5f8d
- Retire binutils-aarch64-pie.patch
0e5f8d
- Retire binutils-coverity.patch
0e5f8d
- Retire binutils-ppc64-stub-creation.patch
0e5f8d
- Retire binutils-strip-delete-relocs.patch
0e5f8d
- Retire binutils-support-v3-build-notes.patch
0e5f8d
- Retire binutils-z-undefs.patch
0e5f8d
0e5f8d
* Mon Feb 12 2018 Nick Clifton  <nickc@redhat.com> 2.29.1-19
0e5f8d
- Remove comment that explained how to disable annobin.  (#1541027)
0e5f8d
0e5f8d
* Thu Feb 08 2018 Nick Clifton  <nickc@redhat.com> 2.29.1-18
0e5f8d
- Inject RPM_LD_FLAGS into the build.  (#1541027)
0e5f8d
0e5f8d
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.29.1-17
0e5f8d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
0e5f8d
0e5f8d
* Thu Feb 01 2018 Nick Clifton  <nickc@redhat.com> 2.29.1-16
0e5f8d
- Use make_build and make_install macros.  (#1541027)
0e5f8d
0e5f8d
* Thu Jan 25 2018 Nick Clifton  <nickc@redhat.com> 2.29.1-15
0e5f8d
- Reenable binary annotations.
0e5f8d
0e5f8d
* Thu Jan 25 2018 Nick Clifton  <nickc@redhat.com> 2.29.1-14
0e5f8d
- Fix creation of PowerPC64 function call stubs.  (#1523457)
0e5f8d
- Disable -z defs during build.
0e5f8d
- Disable binary annotations.  (temporary ?)
0e5f8d
0e5f8d
* Mon Jan 22 2018 Nick Clifton  <nickc@redhat.com> 2.29.1-13
0e5f8d
- Fix bugs in AArch64 static PIE support.  (#1536645)
0e5f8d
0e5f8d
* Tue Jan 16 2018 Nick Clifton  <nickc@redhat.com> 2.29.1-12
0e5f8d
- Add "-z undefs" option to the linker.
0e5f8d
0e5f8d
* Thu Jan 11 2018 Nick Clifton  <nickc@redhat.com> 2.29.1-11
0e5f8d
- *Do* enable relro by default for the PowerPC64 architecture.  (#1523946)
0e5f8d
0e5f8d
* Wed Jan 03 2018 Nick Clifton  <nickc@redhat.com> 2.29.1-10
0e5f8d
- Update readelf and objcopy to support v3 build notes.
0e5f8d
0e5f8d
* Tue Dec 12 2017 Nick Clifton  <nickc@redhat.com> 2.29.1-9
0e5f8d
- Have readelf display extra symbol information at the end of the line.  (#1479302)
0e5f8d
0e5f8d
* Mon Dec 11 2017 Nick Clifton  <nickc@redhat.com> 2.29.1-8
0e5f8d
- Do not enable relro by default for the PowerPC64 architecture.  (#1523946)
0e5f8d
0e5f8d
* Thu Dec 07 2017 Nick Clifton  <nickc@redhat.com> 2.29.1-7
0e5f8d
- Stop strip from crashing when deleteing relocs in a file with annobin notes.  (#1520805)
0e5f8d
0e5f8d
* Wed Dec 06 2017 Nick Clifton  <nickc@redhat.com> 2.29.1-6
0e5f8d
- Have readelf return an exit failure status when attempting to process an empty file. (#1522732)
0e5f8d
0e5f8d
* Tue Nov 28 2017 Nick Clifton  <nickc@redhat.com> 2.29.1-5
0e5f8d
- Disable PLT elision for x86/x86_64.  (#1452111 and #1333481)
0e5f8d
0e5f8d
* Wed Nov 01 2017 Nick Clifton  <nickc@redhat.com> 2.29.1-4
0e5f8d
- Have readelf suggest the use of --use-dynamic when there are dynamic relocs that could have been displayed.  (#1507694)
0e5f8d
0e5f8d
* Wed Oct 18 2017 Nick Clifton  <nickc@redhat.com> 2.29.1-3
0e5f8d
- Fix the GOLD linker's generation of relocations for start and stop symbols.  (#1500898)
0e5f8d
0e5f8d
* Thu Sep 28 2017 Nick Clifton  <nickc@redhat.com> 2.29.1-2
0e5f8d
- Enable GOLD for PPC64 and s390x. (#1173780)
0e5f8d
- Retire: binutils-2.20.51.0.10-sec-merge-emit.patch.
0e5f8d
  (It has been redundant for a long time now...)
0e5f8d
0e5f8d
* Tue Sep 26 2017 Nick Clifton  <nickc@redhat.com> 2.29.1-1
0e5f8d
- Rebase on FSF binutils 2.29.1 release.
0e5f8d
- Retire: binutils-2.29-ppc64-plt-localentry0-disable.patch
0e5f8d
- Retire: binutils-2.29-non-elf-orphan-skip.patch
0e5f8d
0e5f8d
* Thu Sep 14 2017 Nick Clifton  <nickc@redhat.com> 2.29-10
0e5f8d
- Extend fix for PR 21884.
0e5f8d
  (#1491023)
0e5f8d
0e5f8d
* Thu Sep 14 2017 Nick Clifton  <nickc@redhat.com> 2.29-8
0e5f8d
- Import fix for PR 21884 which stops a seg-fault in the linker when changing output format to binary during a final link.
0e5f8d
  (#1491023)
0e5f8d
0e5f8d
* Sun Sep 10 2017 Nick Clifton  <nickc@redhat.com> - 2.29-7
0e5f8d
- Annotate patches with reason and lifetime expectances.
0e5f8d
- Retire: binutils-2.24-ldforcele.patch
0e5f8d
- Retire: binutils-2.25-set-long-long.patch
0e5f8d
- Retire: binutils-2.25.1-cleansweep.patch
0e5f8d
- Retire: binutils-2.26-fix-compile-warnings.patch
0e5f8d
- Retire: binutils-2.28-ignore-gold-duplicates.patch
0e5f8d
0e5f8d
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.29-6
0e5f8d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
0e5f8d
0e5f8d
* Mon Jul 31 2017 Nick Clifton  <nickc@redhat.com> 2.29-5
0e5f8d
- Update ppc64 localentry0 patch with changes made by Alan Modra to the FSF binutils sources.
0e5f8d
  (#1475636)
0e5f8d
0e5f8d
* Sun Jul 30 2017 Florian Weimer <fweimer@redhat.com> - 2.29-4
0e5f8d
- Rebuild with binutils fix for ppc64le, bootstrapping (#1475636)
0e5f8d
0e5f8d
* Fri Jul 28 2017 Nick Clifton  <nickc@redhat.com> 2.29-3
0e5f8d
- Do not enable the PPC64 plt-localentry0 linker optimization by default.
0e5f8d
  (#1475636)
0e5f8d
0e5f8d
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.29-2
0e5f8d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
0e5f8d
0e5f8d
* Mon Jul 24 2017 Nick Clifton  <nickc@redhat.com> 2.29-1
0e5f8d
- Rebase on FSF binutils 2.29.
0e5f8d
- Retire: binutils-2.20.51.0.10-ppc64-pie.patch
0e5f8d
- Retire: binutils-2.27-ld-buffer-overflow.patch
0e5f8d
- Retire: binutils-2.28-libiberty-bugfixes.patch
0e5f8d
- Retire: binutils-gnu-build-notes.patch
0e5f8d
- Retire: binutils-2.28-gas-comp_dir.patch
0e5f8d
- Retire: binutils-2.28-ppc-dynamic-relocs.patch
0e5f8d
- Retire: binutils-2.28-dynamic-section-warning.patch
0e5f8d
- Retire: binutils-2.28-aarch64-copy-relocs.patch
0e5f8d
- Retire: binutils-2.28-DW_AT_export_symbols.patch
0e5f8d
0e5f8d
* Thu Jul 20 2017 Nick Clifton  <nickc@redhat.com> 2.28-14
0e5f8d
- Remove -flto compile time option accidentally added to CFLAGS.
0e5f8d
0e5f8d
* Thu Jul 20 2017 Nick Clifton  <nickc@redhat.com> 2.28-13
0e5f8d
- Add support for displaying new DWARF5 tags.
0e5f8d
  (#1472966)
0e5f8d
0e5f8d
* Wed Jul 19 2017 Nick Clifton  <nickc@redhat.com> 2.28-12
0e5f8d
- Correct snafu in previous delta that broke building s390 binaries.
0e5f8d
  (#1472486)
0e5f8d
0e5f8d
* Mon Jul 17 2017 Nick Clifton  <nickc@redhat.com> 2.28-11
0e5f8d
- Fix s390 assembler so that it remove fake local symbols from its output.
0e5f8d
  (#1460254)
0e5f8d
0e5f8d
* Wed Jun 28 2017 Nick Clifton  <nickc@redhat.com> 2.28-10
0e5f8d
- Update support for GNU Build Attribute notes to include version 2 notes.
0e5f8d
0e5f8d
* Thu Jun 15 2017 Nick Clifton  <nickc@redhat.com> 2.28-9
0e5f8d
- Update patch to fix AArch64 copy reloc generation.
0e5f8d
  (#1452170)
0e5f8d
0e5f8d
* Fri Jun 09 2017 Nick Clifton  <nickc@redhat.com> 2.28-8
0e5f8d
- Ignore duplicate indirect symbols generated by the GOLD linker.
0e5f8d
  (#1458003)
0e5f8d
0e5f8d
* Thu Jun 08 2017 Nick Clifton  <nickc@redhat.com> 2.28-7
0e5f8d
- Eliminate the generation of incorrect dynamic copy relocations on AArch64.
0e5f8d
  (#1452170)
0e5f8d
0e5f8d
* Mon May 15 2017 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.28-6
0e5f8d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild
0e5f8d
0e5f8d
* Mon Mar 20 2017 Nick Clifton  <nickc@redhat.com> 2.28-5
0e5f8d
- Update GNU BUILD NOTES patch.
0e5f8d
- Import FSF binutils patch to fix running readelf on debug info binaries.
0e5f8d
  (#1434050)
0e5f8d
0e5f8d
* Wed Mar 08 2017 Nick Clifton  <nickc@redhat.com> 2.28-4
0e5f8d
- Update GNU BUILD NOTES patch.
0e5f8d
- Import FSF binutils patch to fix an abort with PowerPC dynamic relocs.
0e5f8d
0e5f8d
* Mon Mar 06 2017 Mark Wielaard  <mjw@redhat.com> 2.28-3
0e5f8d
- Backport patch to add support for putting name, comp_dir and
0e5f8d
  producer strings into the .debug_str section. 
0e5f8d
  (#1429389)
0e5f8d
0e5f8d
* Fri Mar 03 2017 Nick Clifton  <nickc@redhat.com> 2.28-2
0e5f8d
- Add support for GNU BUILD NOTEs.
0e5f8d
0e5f8d
* Thu Mar 02 2017 Nick Clifton  <nickc@redhat.com> 2.28-1
0e5f8d
- Rebase on FSF binutils v2.28.
0e5f8d
- Retire: binutils-2.23.52.0.1-addr2line-dynsymtab.patch
0e5f8d
- Retire: binutils-2.27-local-dynsym-count.patch
0e5f8d
- Retire: binutils-2.27-monotonic-section-offsets.patch
0e5f8d
- Retire: binutils-2.27-arm-aarch64-default-relro.patch
0e5f8d
- Retire: binutils-2.28-gold.patch
0e5f8d
- Retire: binutils-2.27-objdump-improvements.patch
0e5f8d
- Retire: binutils-2.27-dwarf-parse-speedup.patch
0e5f8d
- Retire: binutils-2.27-objdump-improvements.2.patch
0e5f8d
- Retire: binutils-2.27-arm-binary-objects.patch
0e5f8d
- Retire: binutils-2.27-ppc-fp-attributes.patch
0e5f8d
- Add patch to sync libiberty with FSF GCC mainline.
0e5f8d
  (#1428310)
0e5f8d
0e5f8d
* Fri Feb 17 2017 Nick Clifton  <nickc@redhat.com> 2.27-19
0e5f8d
- Add support for PowerPC FP attributes.
0e5f8d
  (#1422461)
0e5f8d
0e5f8d
* Wed Feb 15 2017 Nick Clifton  <nickc@redhat.com> 2.27-18
0e5f8d
- Fix running the ARM port of the linker on BINARY objects.
0e5f8d
  (#1422577)
0e5f8d
0e5f8d
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.27-17
0e5f8d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
0e5f8d
0e5f8d
* Thu Feb 02 2017 Stephen Gallagher  <sgallagh@redhat.com> 2.27-16
0e5f8d
- Install COPYING[*] files using the % license macro.
0e5f8d
  (#1418430)
0e5f8d
0e5f8d
* Tue Jan 31 2017 Nick Clifton  <nickc@redhat.com> 2.27-15
0e5f8d
- Fix buffer overflows when printing translated messages.
0e5f8d
  (#1417411)
0e5f8d
0e5f8d
* Mon Jan 16 2017 Nick Clifton  <nickc@redhat.com> 2.27-14
0e5f8d
- Include the filename concerned in readelf error messages.
0e5f8d
  (#1412348)
0e5f8d
0e5f8d
* Mon Jan 09 2017 Nick Clifton  <nickc@redhat.com> 2.27-13
0e5f8d
- Another speed up for objdump when displaying source code alognside disassembly.
0e5f8d
  (#1397113)
0e5f8d
0e5f8d
* Tue Nov 22 2016 Nick Clifton  <nickc@redhat.com> 2.27-12
0e5f8d
- Speed up objdump when displaying source code alognside disassembly.
0e5f8d
  (#1397113)
0e5f8d
0e5f8d
* Tue Nov 08 2016 Nick Clifton  <nickc@redhat.com> 2.27-11
0e5f8d
- Fix objdumps disassembly of dynamic executables.
0e5f8d
  (#1370275)
0e5f8d
0e5f8d
* Fri Nov 04 2016 Nick Clifton  <nickc@redhat.com> 2.27-10
0e5f8d
- Fix GOLD for ARM and AARCH64
0e5f8d
  (#1386126)
0e5f8d
0e5f8d
* Mon Sep 26 2016 Mark Pryor  <pryorm09@gmail.com> 2.27-9
0e5f8d
- Fix invocation of /sbin/ldconfig when reinstalling binutils
0e5f8d
  in order to prevent warnings from rpm.
0e5f8d
  (#1379030)
0e5f8d
  (#1379117)
0e5f8d
0e5f8d
* Thu Sep 22 2016 Mark Pryor  <pryorm09@gmail.com> 2.27-8
0e5f8d
- Add i386pep emulation for all EFI capable CPU types.
0e5f8d
  (#1376870)
0e5f8d
0e5f8d
* Wed Sep 21 2016 Nick Clifton  <nickc@redhat.com> 2.27-7
0e5f8d
- Use --with-sysroot=/ for native targets.  This prevents the default
0e5f8d
  sysroot of /usr/local/<target>/sys-root from being used, which breaks 
0e5f8d
  locating needed shared libaries, but still allows the --sysroot
0e5f8d
  linker command line option to be effective.
0e5f8d
  (#1374889)
0e5f8d
  (#1377803)
0e5f8d
  (#1377949)
0e5f8d
0e5f8d
* Tue Sep 20 2016 Nick Clifton  <nickc@redhat.com> 2.27-6
0e5f8d
- Omit building GOLD when bootstrapping.
0e5f8d
- Add a generic build requirement on gcc.
0e5f8d
- Move bison and m4 build requirements to be conditional upon building GOLD.
0e5f8d
- Add --with-sysroot configure option when building native targets.
0e5f8d
- Skip PR14918 linker test for ARM native targets.
0e5f8d
  (#1374889)
0e5f8d
0e5f8d
* Fri Sep 16 2016 Nick Clifton  <nickc@redhat.com> 2.27-5
0e5f8d
- Add support for building the rpm with "--with bootstrap" enabled.
0e5f8d
- Retire: binutils-2.20.51.0.2-ia64-lib64.patch
0e5f8d
0e5f8d
* Thu Sep 01 2016 Nick Clifton  <nickc@redhat.com> 2.27-4
0e5f8d
- Properly disable the default generation of compressed debug sections.
0e5f8d
  (#1366182)
0e5f8d
0e5f8d
* Fri Aug 19 2016 Nick Clifton  <nickc@redhat.com> 2.27-3
0e5f8d
- Put sections in a monotonically increasing order of file offset.
0e5f8d
- Allow ARM and AArch64 targets to have relro on by default.
0e5f8d
0e5f8d
* Mon Aug 15 2016 Nick Clifton  <nickc@redhat.com> 2.27-2
0e5f8d
- Fix computation of sh_info field in the header of .dynsym sections.
0e5f8d
0e5f8d
* Wed Aug 03 2016 Nick Clifton  <nickc@redhat.com> 2.27-1
0e5f8d
- Rebase on FSF binutils 2.27 release.
0e5f8d
- Retire: binutils-2.26-formatting.patch
0e5f8d
- Retire: binutils-2.26-Bsymbolic_PIE.patch
0e5f8d
- Retire: binutils-rh1312151.patch
0e5f8d
- Retire: binutils-2.26-fix-GOT-offset-calculation.patch
0e5f8d
- Retire: binutils-2.26-common-definitions.patch
0e5f8d
- Retire: binutils-2.26-x86-PIE-relocations.patch
0e5f8d
0e5f8d
* Mon Jun 13 2016 Nick Clifton  <nickc@redhat.com> 2.26-23
0e5f8d
- Enable support for GCC's LTO.
0e5f8d
  (#1342618)
0e5f8d
0e5f8d
* Thu Jun 02 2016 Nick Clifton  <nickc@redhat.com> 2.26-22
0e5f8d
- Retire the copy-osabi patch.
0e5f8d
  (#1252066)
0e5f8d
0e5f8d
* Mon May 09 2016 Nick Clifton  <nickc@redhat.com> 2.26-21
0e5f8d
- Fix another compile time warning, this time in tc-arm.c.
0e5f8d
  (#1333695)
0e5f8d
0e5f8d
* Fri Apr 22 2016 Nick Clifton  <nickc@redhat.com> 2.26-20
0e5f8d
- Housekeeping: Delete retired patches.  Renumber patches.
0e5f8d
- Increase version number past F24 because F24 update is blocked by a version number comparison.
0e5f8d
0e5f8d
* Fri Mar 18 2016 Nick Clifton  <nickc@redhat.com> 2.26-16
0e5f8d
- Import patch to fix generation of x86 relocs in PIE mode.  (PR 19827)
0e5f8d
0e5f8d
* Mon Mar 14 2016 Nick Clifton  <nickc@redhat.com> 2.26-15
0e5f8d
- Import patch to have common symbols in an executable override definitions in shared objects (PR 19579)
0e5f8d
  (#1312507)
0e5f8d
0e5f8d
* Mon Feb 29 2016 Nick Clifton  <nickc@redhat.com> 2.26-14
0e5f8d
- Import patch to fix x86 GOT offset calculation in 2.26 sources (PR 19601)
0e5f8d
  (#1312489)
0e5f8d
0e5f8d
* Fri Feb 26 2016 Nick Clifton  <nickc@redhat.com> 2.26-13
0e5f8d
- Import patch to fix symbol versioning bug in 2.26 sources (PR 19698)
0e5f8d
  (#1312151)
0e5f8d
0e5f8d
* Fri Feb 19 2016 Nick Clifton  <nickc@redhat.com> 2.26-12
0e5f8d
- Import H.J.Lu's kernel LTO patch.
0e5f8d
  (#1302071)
0e5f8d
0e5f8d
* Tue Feb 16 2016 poma <poma@gmail.com> 2.26-11
0e5f8d
- Enable -Bsymbolic and -Bsymbolic-functions to PIE.  Needed by Syslinux
0e5f8d
  (#1308296)
0e5f8d
0e5f8d
* Wed Feb 10 2016 Nick Clifton <nickc@redhat.com> 2.26-10
0e5f8d
- Retire: binutils-2.23.2-aarch64-em.patch
0e5f8d
  (#1305179)
0e5f8d
0e5f8d
* Tue Feb 09 2016 Nick Clifton <nickc@redhat.com> 2.26-9
0e5f8d
- Fix indentation in bfd/elf64-s390.c, gas/config/tc-ia64.c
0e5f8d
  and bfd/pe-mips.c to avoid compile time warnings.
0e5f8d
0e5f8d
* Thu Feb 04 2016 Nick Clifton <nickc@redhat.com> 2.26-8
0e5f8d
- Fix indentation in bfd/coff-[i386|x86_64].c to avoid compile time warning.
0e5f8d
- Suppress GOLD's dir_caches destructor.
0e5f8d
- Suppress GOLD's Reloc_stub::Key::name function.
0e5f8d
- Suppress unused ARM architecture variations in GAS.
0e5f8d
0e5f8d
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.26-5
0e5f8d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
0e5f8d
0e5f8d
* Wed Jan 27 2016 Nick Clifton <nickc@redhat.com> 2.26-4
0e5f8d
- Drop the kernel patch entirely...
0e5f8d
- Retire: binutils-2.25-kernel-ld-r.patch
0e5f8d
- Retire: binutils-2.25.1-plugin-format-checking.patch
0e5f8d
0e5f8d
* Tue Jan 26 2016 Nick Clifton <nickc@redhat.com> 2.26-3
0e5f8d
- Fix kernel patch for AVR targets.
0e5f8d
0e5f8d
* Mon Jan 25 2016 Nick Clifton <nickc@redhat.com> 2.26-2
0e5f8d
- Fix kernel patch for PPC32 targets.
0e5f8d
0e5f8d
* Mon Jan 25 2016 Nick Clifton <nickc@redhat.com> 2.26-1
0e5f8d
- Rebase on FSF binutils 2.26 release.
0e5f8d
- Retire: binutils-2.25.1-ihex-parsing.patch
0e5f8d
- Retire: binutils-2.25.1-dynamic_list.patch
0e5f8d
- Retire: binutils-2.25.1-aarch64-pr18668.patch
0e5f8d
- Retire: binutils-rh1247126.patch
0e5f8d
  (#1271387)
0e5f8d
0e5f8d
* Thu Nov 05 2015 Nick Clifton <nickc@redhat.com> 2.25.1-9
0e5f8d
- Prevent an infinite recursion when a plugin tries to claim a file in an unrecognised format.
0e5f8d
  (#1174065)
0e5f8d
0e5f8d
* Wed Oct 28 2015 Nick Clifton <nickc@redhat.com> 2.25.1-8
0e5f8d
- Enable little endian support when configuring for 64-bit PowerPC.
0e5f8d
  (#1275709)
0e5f8d
0e5f8d
* Thu Sep 24 2015 Nick Clifton <nickc@redhat.com> 2.25.1-7
0e5f8d
- Fix incorrectly generated binaries and DSOs on PPC platforms.
0e5f8d
  (#1247126)
0e5f8d
0e5f8d
* Fri Sep 11 2015 Nick Clifton <nickc@redhat.com> 2.25.1-6
0e5f8d
- Fix handling of AArch64 local GOT relocs.  (#1262091)
0e5f8d
0e5f8d
* Thu Sep 10 2015 Nick Clifton <nickc@redhat.com> 2.25.1-5
0e5f8d
- Do not enable deterministic archives by default (#1195883)
0e5f8d
0e5f8d
* Thu Aug 06 2015 Rex Dieter <rdieter@fedoraproject.org> 2.25.1-4
0e5f8d
- Qt linked with gold crash on startup (#1193044)
0e5f8d
0e5f8d
* Tue Aug 04 2015 Nick Clifton <nickc@redhat.com> - 2.25.1-3
0e5f8d
- Fix the parsing of corrupt iHex files.
0e5f8d
- Resovles: 1250141
0e5f8d
0e5f8d
* Tue Aug 04 2015 Nick Clifton <nickc@redhat.com> - 2.25.1-2
0e5f8d
- Retire: binutils-2.25-aarch64-fPIC-error.patch
0e5f8d
- Resovles: 1249969
0e5f8d
0e5f8d
* Thu Jul 23 2015 Nick Clifton <nickc@redhat.com> - 2.25.1-1
0e5f8d
- Rebase on FSF binutils 2.25.1 release.
0e5f8d
- Retire: binutils-2.25-x86_64-pie-relocs.patch
0e5f8d
0e5f8d
* Thu Jul 02 2015 Nick Clifton <nickc@redhat.com> - 2.25-12
0e5f8d
- For AArch64 issue an error message when attempting to resolve a
0e5f8d
  PC-relative dynamic reloc in a non-PIC object file.
0e5f8d
- Related: 1232499
0e5f8d
0e5f8d
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.25-11
0e5f8d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
0e5f8d
0e5f8d
* Wed Jun 10 2015 Nick Clifton <nickc@redhat.com> - 2.25-10
0e5f8d
- Make the AArch64 GOLD port use 64K pages.
0e5f8d
- Resolves: BZ #1225156 and BZ #1215546
0e5f8d
0e5f8d
* Mon Apr 27 2015 Nick Clifton <nickc@redhat.com> - 2.25-8
0e5f8d
- Require the coreutils so that touch is available.
0e5f8d
- Resolves: BZ #1215242
0e5f8d
0e5f8d
* Tue Apr 21 2015 Nick Clifton <nickc@redhat.com> - 2.25-7
0e5f8d
- Enable building GOLD for the AArch64.
0e5f8d
- Resolves: BZ #1203057
0e5f8d
0e5f8d
* Thu Mar 19 2015 Nick Clifton <nickc@redhat.com> - 2.25-6
0e5f8d
- Remove the windmc manual page, so that it is not installed.
0e5f8d
- Resolves: BZ #1203606
0e5f8d
0e5f8d
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 2.25-6
0e5f8d
- Rebuilt for Fedora 23 Change
0e5f8d
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
0e5f8d
0e5f8d
* Mon Feb 02 2015 Nick Clifton <nickc@redhat.com> - 2.25-5
0e5f8d
- Fix scanning for object symbols in binutils-2.25-kernel-ld-r.patch
0e5f8d
- Resolves: BZ #1149660
0e5f8d
0e5f8d
* Tue Jan 20 2015 Nick Clifton <nickc@redhat.com> - 2.25-4
0e5f8d
- Import the fix for PR ld/17827 from FSF mainline.
0e5f8d
- Resolves: BZ #1182511
0e5f8d
0e5f8d
* Mon Jan 12 2015 Nick Clifton <nickc@redhat.com> - 2.25-3
0e5f8d
- Suppress building of GOLD for PPC, for now...
0e5f8d
- Resolves: BZ #1173780
0e5f8d
0e5f8d
* Sat Dec 27 2014 Ralf Corsépius <corsepiu@fedoraproject.org> -  2.25-2
0e5f8d
- Reflect configure.info/standards.info having been dropped (RHBZ#1177359).
0e5f8d
0e5f8d
* Wed Dec 24 2014 Nick Clifton <nickc@redhat.com> - 2.25-1
0e5f8d
- Rebase on FSF binutils 2.25 release.
0e5f8d
- Retire: binutils-2.24-s390-mkopc.patch
0e5f8d
- Retire: binutils-2.24-elfnn-aarch64.patch
0e5f8d
- Retire: binutils-2.24-DW_FORM_ref_addr.patch
0e5f8d
- Retire: binutils-2.24-set-section-macros.patch
0e5f8d
- Retire: binutils-2.24-fake-zlib-sections.patch
0e5f8d
- Retire: binutils-2.24-arm-static-tls.patch
0e5f8d
- Retire: binutils-2.24-fat-lto-objects.patch
0e5f8d
- Retire: binutils-2.24-symbol-warning.patch
0e5f8d
- Retire: binutils-2.24-aarch64-ld-shared-non-PIC-xfail.patch
0e5f8d
- Retire: binutils-2.24-weak-sym-merge.patch
0e5f8d
- Retire: binutils-2.24-indirect-chain.patch
0e5f8d
- Retire: binutils-2.24-aarch64-fix-final_link_relocate.patch
0e5f8d
- Retire: binutils-2.24-aarch64-fix-gotplt-offset-ifunc.patch
0e5f8d
- Retire: binutils-2.24-aarch64-fix-static-ifunc.patch
0e5f8d
- Retire: binutils-2.24-aarch64-fix-ie-relax.patch
0e5f8d
- Retire: binutils-HEAD-change-ld-notice-interface.patch
0e5f8d
- Retire: binutils-2.24-corrupt-binaries.patch
0e5f8d
- Retire: binutils-2.24-strings-default-all.patch
0e5f8d
- Retire: binutils-2.24-corrupt-ar.patch
0e5f8d
0e5f8d
* Thu Nov 13 2014 Nick Clifton <nickc@redhat.com> - 2.24-29
0e5f8d
- Fix problems with the ar program reported in FSF PR 17533.  (1162666, 1162655)
0e5f8d
0e5f8d
* Fri Oct 31 2014 Nick Clifton <nickc@redhat.com> - 2.24-28
0e5f8d
- Fix buffer overrun in ihex parser.
0e5f8d
- Fix memory corruption in previous patch.
0e5f8d
- Consoldiate corrupt handling patches into just one patch.
0e5f8d
- Default strings command to using -a.
0e5f8d
0e5f8d
* Wed Oct 29 2014 Nick Clifton <nickc@redhat.com> - 2.24-27
0e5f8d
- Fix memory corruption bug introduced by the previous patch.
0e5f8d
0e5f8d
* Tue Oct 28 2014 Nick Clifton <nickc@redhat.com> - 2.24-26
0e5f8d
- Import patches for PR/17510 and PR/17512 to fix reading corrupt ELF binaries. (1157276, 1157277)
0e5f8d
0e5f8d
* Mon Oct 27 2014 Nick Clifton <nickc@redhat.com> - 2.24-25
0e5f8d
- Import patch from mainline to fix seg-fault when reading corrupt group headers. (1157276)
0e5f8d
0e5f8d
* Fri Oct 24 2014 Nick Clifton <nickc@redhat.com> - 2.24-24
0e5f8d
- Import patch from mainline to fix seg-fault when reading corrupt srec fields. (1156272)
0e5f8d
0e5f8d
* Mon Aug 25 2014 Kyle McMartin <kmcmarti@redhat.com> - 2.24-23
0e5f8d
- aarch64: increase common page size to 64KB
0e5f8d
- binutils-HEAD-change-ld-notice-interface.patch: backport fix from HEAD
0e5f8d
  that fixes LTO + ifunc when using ld.bfd instead of gold.
0e5f8d
- binutils-2.24-aarch64-fix-gotplt-offset-ifunc.patch
0e5f8d
  binutils-2.24-aarch64-fix-static-ifunc.patch, split elfnn-aarch64 patches
0e5f8d
  into upstream git commits, to make it easier to figure out what's
0e5f8d
  backported already
0e5f8d
- binutils-2.24-aarch64-fix-ie-relax.patch: add fix for gd to ie relaxation
0e5f8d
  when target register is >16 (pretty unlikely, but...)
0e5f8d
0e5f8d
* Thu Aug 21 2014 Kyle McMartin <kmcmarti@redhat.com> - 2.24-22
0e5f8d
- bfd/elfnn-aarch64.c: use correct offsets in final_link_relocate
0e5f8d
  Resolves: BZ #1126199
0e5f8d
0e5f8d
* Thu Aug 21 2014 Nick Clifton <nickc@redhat.com> - 2.24-21
0e5f8d
- Import patch from mainline to fix indirect symbol resolution.
0e5f8d
  Resolves: BZ #1123714
0e5f8d
0e5f8d
* Tue Aug 19 2014 Nick Clifton <nickc@redhat.com> - 2.24-20
0e5f8d
- Enable deterministic archives by default.
0e5f8d
  Resolves: BZ #1124342
0e5f8d
0e5f8d
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.24-19
0e5f8d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
0e5f8d
0e5f8d
* Fri Aug 15 2014 Nick Clifton <nickc@redhat.com> - 2.24-18
0e5f8d
- Correct elf_merge_st_other arguments for weak symbols.
0e5f8d
  Resolves: #1126436
0e5f8d
0e5f8d
* Tue Aug 12 2014 Jeff Law <law@redhat.com> - 2.24-17
0e5f8d
- Enable gold for PPC.
0e5f8d
0e5f8d
* Tue Jun 24 2014 Kyle McMartin <kyle@redhat.com> - 2.24-16
0e5f8d
- Backport a couple LTO testsuite fixes from HEAD.
0e5f8d
  Default to -ffat-lto-objects for some ld tests, which was the default in
0e5f8d
  gcc 4.8, but changed in 4.9, and resulted in some failures.
0e5f8d
- Add STATIC_TLS flag on ARM when IE relocs are emitted in a shared
0e5f8d
  library. Also fix up offsets in the testsuite resulting from the
0e5f8d
  addition of the flags.
0e5f8d
- XFail some ld tests on AArch64 to cut some of the spurious testsuite
0e5f8d
  failures down.
0e5f8d
0e5f8d
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.24-15
0e5f8d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
0e5f8d
0e5f8d
* Fri May 09 2014 Nick Clifton <nickc@redhat.com> - 2.24-14
0e5f8d
- Fix detection of little endian PPC64 binaries.  (#1095885)
0e5f8d
0e5f8d
* Mon Apr 28 2014 Nick Clifton <nickc@redhat.com> - 2.24-13
0e5f8d
- Fix detection of uncompressed .debug_str sections.  (#1082370)
0e5f8d
0e5f8d
* Tue Apr 22 2014 Nick Clifton <nickc@redhat.com> - 2.24-12
0e5f8d
- Fix compiling using gcc 4.9  (#1087374)
0e5f8d
0e5f8d
* Thu Mar 27 2014 Nick Clifton <nickc@redhat.com> - 2.24-11
0e5f8d
- Use {version} in Source string.  Delete unused patches.
0e5f8d
0e5f8d
* Tue Jan 28 2014 Nick Clifton <nickc@redhat.com> - 2.24-10
0e5f8d
- Fix decoding of abbrevs using a DW_FORM_ref_addr attribute.  (#1056797)
0e5f8d
0e5f8d
* Tue Dec 17 2013 Nick Clifton <nickc@redhat.com> - 2.24-9
0e5f8d
- Import fixes on 2.24 branch that affect AArch64 IFUNC and PLT handling.
0e5f8d
0e5f8d
* Thu Dec 05 2013 Nick Clifton <nickc@redhat.com> - 2.24-8
0e5f8d
- Fix building opcodes library with -Werror=format-security.  (#1037026)
0e5f8d
0e5f8d
* Wed Dec 04 2013 Jeff Law <law@redhat.com> - 2.24-7
0e5f8d
- Update to official binutils 2.24 release.
0e5f8d
0e5f8d
* Thu Nov 21 2013 Nick Clifton <nickc@redhat.com> - 2.24-6
0e5f8d
- Update binutils 2.24 snapshot.
0e5f8d
0e5f8d
* Mon Nov 11 2013 Nick Clifton <nickc@redhat.com> - 2.24-5
0e5f8d
- Update binutils 2.24 snapshot.
0e5f8d
- Switch to using GIT instead of CVS to access the FSF repository.
0e5f8d
- Retire binutils-2.24-nm-dynsym.patch
0e5f8d
0e5f8d
* Fri Oct 25 2013 Nick Clifton <nickc@redhat.com> - 2.24-4
0e5f8d
- Update binutils 2.24 snapshot.
0e5f8d
- Stop NM from halting if it encounters a file with no symbols when displaying dynamic symbols in multiple files.  (#1022845)
0e5f8d
0e5f8d
* Fri Oct 18 2013 Nick Clifton <nickc@redhat.com> - 2.24-3
0e5f8d
- Update binutils 2.24 snapshot.
0e5f8d
0e5f8d
* Fri Oct 11 2013 Nick Clifton <nickc@redhat.com> - 2.24-2
0e5f8d
- Update binutils 2.24 snapshot.
0e5f8d
0e5f8d
* Fri Oct 04 2013 Nick Clifton <nickc@redhat.com> - 2.24-1
0e5f8d
- Rebase on binutils 2.24 snapshot.
0e5f8d
- Retire: binutils-2.23.52.0.1-64-bit-thin-archives.patch,
0e5f8d
-         binutils-2.23.52.0.1-as-doc-texinfo-fixes.patch,
0e5f8d
-         binutils-2.23.52.0.1-check-regular-ifunc-refs.patch,
0e5f8d
-         binutils-2.23.2-ld-texinfo-fixes.patch,
0e5f8d
-         binutils-2.23.2-bfd-texinfo-fixes.patch,
0e5f8d
-         binutils-2.23.2-dwz-alt-debuginfo.patch
0e5f8d
-         binutils-2.23.2-s390-gas-machinemode.patch
0e5f8d
-         binutils-2.23.2-xtensa.memset.patch
0e5f8d
-         binutils-2.23.2-s390-zEC12.patch
0e5f8d
-         binutils-2.23.2-arm-add-float-abi-to-e_flags.patch
0e5f8d
-         binutils-2.23.51.0.1-readelf-flush-stdout.patch
0e5f8d
0e5f8d
* Mon Sep 09 2013 Nick Clifton <nickc@redhat.com> - 2.23.88.0.1-14
0e5f8d
- Make readelf flush stdout before emitting an error or warning message.  (#1005182)
0e5f8d
0e5f8d
* Fri Aug 30 2013 Kyle McMartin <kyle@redhat.com> 2.23.88.0.1-13
0e5f8d
- Add the hard-float/soft-float ABI flag as appropriate for
0e5f8d
  ET_DYN/ET_EXEC in EABI_VER5.
0e5f8d
- Fix last changelog entry, it was release 12, not 14.
0e5f8d
0e5f8d
* Wed Aug 14 2013 Nick Clifton <nickc@redhat.com> 2.23.88.0.1-12
0e5f8d
- Add support for the s/390 zEC12 architecture to gas.  (#996395)
0e5f8d
0e5f8d
* Mon Aug 12 2013 Nick Clifton <nickc@redhat.com> 2.23.88.0.1-11
0e5f8d
- Fix typos in invocations of memset in elf32-xtensa.c
0e5f8d
0e5f8d
* Wed Aug 07 2013 Karsten Hopp <karsten@redhat.com> 2.23.88.0.1-10
0e5f8d
- disable -Werror on ppc64p7 for #918189
0e5f8d
0e5f8d
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.23.88.0.1-9
0e5f8d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
0e5f8d
0e5f8d
* Fri Jul 19 2013 Nick Clifton <nickc@redhat.com> - 2.23.88.0.1-8
0e5f8d
- Add support for the S/390 .machinemode pseudo-op to GAS.  (#986031)
0e5f8d
0e5f8d
* Fri Jul 05 2013 Nick Clifton <nickc@redhat.com> - 2.23.88.0.1-7
0e5f8d
- Add a requirement for libstdc++-static when running the GOLD testsuite.
0e5f8d
0e5f8d
* Wed Jun 05 2013 Nick Clifton <nickc@redhat.com> - 2.23.88.0.1-6
0e5f8d
- Fix building of aarch64 targets after applying the patch for kernel ld -r modules.
0e5f8d
- Fix building when "--with debug" is specified.
0e5f8d
0e5f8d
* Wed May 29 2013 Nick Clifton <nickc@redhat.com> - 2.23.88.0.1-5
0e5f8d
- Add support for the alternative debuging files generated by the DWZ program.  (#965255)
0e5f8d
0e5f8d
* Fri May 17 2013 Nick Clifton <nickc@redhat.com> - 2.23.88.0.1-4
0e5f8d
- Import H.J.'s patch to add support for kernel ld -r modules.
0e5f8d
- Fix errors reported by version 5.0 of texinfo when parsing bfd documentation.
0e5f8d
0e5f8d
* Fri Apr 26 2013 Nick Clifton <nickc@redhat.com> - 2.23.88.0.1-3
0e5f8d
- Fix errors reported by version 5.0 of texinfo when parsing assembler documentation.
0e5f8d
0e5f8d
* Thu Apr 25 2013 Nick Clifton <nickc@redhat.com> - 2.23.88.0.1-2
0e5f8d
- Fix errors reported by version 5.0 of texinfo when parsing linker documentation.
0e5f8d
0e5f8d
* Wed Apr 24 2013 Nick Clifton <nickc@redhat.com> - 2.23.88.0.1-1
0e5f8d
- Switch over to basing sources on the official FSF binutils releases.
0e5f8d
- Retire binutils-2.23.52.0.1-revert-pr15149.patch.
0e5f8d
- Update binutils-2.22.52.0.1-relro-on-by-default.patch and binutils-2.23.52.0.1-as-doc-texinfo-fixes.patch.
0e5f8d
0e5f8d
* Wed Apr 17 2013 Nick Clifton <nickc@redhat.com> - 2.23.52.0.1-10
0e5f8d
- Import patch for FSF mainline PR 15371 to fix ifunc references in shared libraries.  (#927818)
0e5f8d
0e5f8d
* Thu Mar 14 2013 Nick Clifton <nickc@redhat.com> - 2.23.52.0.1-9
0e5f8d
- Enhance opncls.c:find_separate_debug_file() to look in Fedora specific locations.
0e5f8d
- Enhance dwarf2.c:find_line() to work with shared libraries.  (#920542)
0e5f8d
0e5f8d
* Wed Mar 13 2013 Nick Clifton <nickc@redhat.com> - 2.23.52.0.1-8
0e5f8d
- Fix addr2line to use dynamic symbols if it failed to canonicalize ordinary symbols.  (#920542)
0e5f8d
0e5f8d
* Wed Mar 13 2013 Nick Clifton <nickc@redhat.com> - 2.23.52.0.1-7
0e5f8d
- Change requirement to explicitly depend upon /usr/bin/pod2man.  (#920545)
0e5f8d
0e5f8d
* Wed Mar 13 2013 Nick Clifton <nickc@redhat.com> - 2.23.52.0.1-6
0e5f8d
- Require perl for pod2man for building man pages.  (#920545)
0e5f8d
0e5f8d
* Fri Mar 08 2013 Nick Clifton <nickc@redhat.com> - 2.23.52.0.1-5
0e5f8d
- Reverts patch for PR15149 - prevents report weak DT_NEEDED symbols.  (#918003)
0e5f8d
0e5f8d
* Wed Mar 06 2013 Nick Clifton <nickc@redhat.com> - 2.23.52.0.1-4
0e5f8d
- Enable building of GOLD for the ARM.  (#908966)
0e5f8d
0e5f8d
* Mon Mar 04 2013 Nick Clifton <nickc@redhat.com> - 2.23.52.0.1-3
0e5f8d
- Fix errors reported by version 5.0 of texinfo when parsing assembler documentaion.
0e5f8d
0e5f8d
* Fri Mar 01 2013 Nick Clifton <nickc@redhat.com> - 2.23.52.0.1-2
0e5f8d
- Fix the creation of index tables in 64-bit thin archives.  (#915411)
0e5f8d
0e5f8d
* Thu Feb 28 2013 Nick Clifton <nickc@redhat.com> - 2.23.52.0.1-1
0e5f8d
- Rebase on 2.23.51.0.1 release.  (#916516)
0e5f8d
0e5f8d
* Fri Feb 08 2013 Nick Clifton <nickc@redhat.com> - 2.23.51.0.9-2
0e5f8d
- Enable 64-bit BFD for aarch64.  (#908904)
0e5f8d
0e5f8d
* Mon Feb 04 2013 Nick Clifton <nickc@redhat.com> - 2.23.51.0.9-1
0e5f8d
- Rebase on 2.23.51.0.9 release.  (#907089)
0e5f8d
- Retire binutils-2.23.51.0.8-arm-whitespace.patch.
0e5f8d
0e5f8d
* Mon Jan 21 2013 Nick Clifton <nickc@redhat.com> - 2.23.51.0.8-4
0e5f8d
- Allow more whitespace in ARM instructions.  (#892261)
0e5f8d
0e5f8d
* Tue Jan 15 2013 Patsy Franklin <pfrankli@redhat.com> - 2.23.51.0.8-3
0e5f8d
- Add bc to BuildRequires when running the testsuite.  (#895321)
0e5f8d
0e5f8d
* Wed Jan 02 2013 Nick Clifton <nickc@redhat.com> - 2.23.51.0.8-2
0e5f8d
- Add runtime link with libdl.  (#889134)
0e5f8d
0e5f8d
* Wed Jan 02 2013 Nick Clifton <nickc@redhat.com> - 2.23.51.0.8-1
0e5f8d
- Rebase on 2.23.51.0.8 release.  (#890382)
0e5f8d
0e5f8d
* Fri Dec 21 2012 Nick Clifton <nickc@redhat.com> - 2.23.51.0.7-1
0e5f8d
- Rebase on 2.23.51.0.7 release.  (#889432)
0e5f8d
0e5f8d
* Tue Nov 27 2012 Nick Clifton <nickc@redhat.com> - 2.23.51.0.6-1
0e5f8d
- Rebase on 2.23.51.0.6 release.  (#880508)
0e5f8d
0e5f8d
* Tue Nov 13 2012 Nick Clifton <nickc@redhat.com> - 2.23.51.0.5-1
0e5f8d
- Rebase on 2.23.51.0.5 release.  (#876141)
0e5f8d
- Retire binutils-2.23.51.0.3-arm-ldralt.patch
0e5f8d
0e5f8d
* Tue Oct 23 2012 Nick Clifton <nickc@redhat.com> - 2.23.51.0.3-3
0e5f8d
- Rename ARM LDRALT instruction to LDALT.  (#869025) PR/14575
0e5f8d
0e5f8d
* Mon Oct 15 2012 Jon Ciesla <limburgher@gmail.com> - 2.23.51.0.3-2
0e5f8d
- Provides: bundled(libiberty)
0e5f8d
0e5f8d
* Tue Oct 02 2012 Nick Clifton <nickc@redhat.com> - 2.23.51.0.3-1
0e5f8d
- Rebase on 2.23.51.0.3 release.  (#858560)
0e5f8d
0e5f8d
* Tue Sep 11 2012 Nick Clifton <nickc@redhat.com> - 2.23.51.0.2-1
0e5f8d
- Rebase on 2.23.51.0.2 release.  (#856119)
0e5f8d
- Retire binutils-2.23.51.0.1-gold-keep.patch and binutils-rh805974.patch.
0e5f8d
0e5f8d
* Tue Sep 4 2012 Jeff Law <law@redhat.com> 2.23.51.0.1-4
0e5f8d
- Correctly handle PLTOFF relocs for s390 IFUNCs.
0e5f8d
0e5f8d
* Tue Aug 14 2012 Karsten Hopp <karsten@redhat.com> 2.23.51.0.1-3
0e5f8d
- apply F17 commit cd2fda5 to honour {powerpc64} macro (#834651)
0e5f8d
0e5f8d
* Tue Aug 14 2012 Nick Clifton <nickc@redhat.com> - 2.23.51.0.1-2
0e5f8d
- Make GOLD honour KEEP directives in linker scripts  (#8333355)
0e5f8d
0e5f8d
* Wed Aug 08 2012 Nick Clifton <nickc@redhat.com> - 2.23.51.0.1-1
0e5f8d
- Rebase on 2.23.51.0.1 release.  (#846433)
0e5f8d
- Retire binutils-2.22.52.0.4-dwz.patch, binutils-2.22.52.0.4-ar-4Gb.patch, binutils-2.22.52.0.4-arm-plt-refcount.patch, binutils-2.22.52.0.4-s390-64bit-archive.patch.
0e5f8d
0e5f8d
* Thu Aug 02 2012 Nick Clifton <nickc@redhat.com> - 2.22.52.0.4-8
0e5f8d
- Make the binutils-devel package depend upon the binutils package. (#845082)
0e5f8d
0e5f8d
* Thu Aug 02 2012 Nick Clifton <nickc@redhat.com> - 2.22.52.0.4-7
0e5f8d
- Disable checks that config.h is included before system headers.  (#845084)
0e5f8d
0e5f8d
* Tue Jul 17 2012 Nick Clifton <nickc@redhat.com> - 2.22.52.0.4-6
0e5f8d
- Use 64bit indicies in archives for s390 binaries.  (#835957)
0e5f8d
0e5f8d
* Thu Jul 05 2012 Nick Clifton <nickc@redhat.com> - 2.22.52.0.4-5
0e5f8d
- Catch attempts to create a broken symbol index with archives > 4Gb in size.  (#835957)
0e5f8d
0e5f8d
* Fri Jun 29 2012 Nick Clifton <nickc@redhat.com> - 2.22.52.0.4-4
0e5f8d
- Import fix for ld/14189.  (#829311)
0e5f8d
0e5f8d
* Fri Jun 29 2012 Nick Clifton <nickc@redhat.com> - 2.22.52.0.4-3
0e5f8d
- Fix handling of archives > 4Gb in size by importing patch for PR binutils/14302.  (#835957)
0e5f8d
0e5f8d
* Tue Jun 19 2012 Jakub Jelinek <jakub@redhat.com> - 2.22.52.0.4-2
0e5f8d
- Add minimal dwz -m support.
0e5f8d
0e5f8d
* Wed Jun 06 2012 Nick Clifton <nickc@redhat.com> - 2.22.52.0.4-1
0e5f8d
- Rebase on 2.22.52.0.4 release.  (#829027)
0e5f8d
0e5f8d
* Tue May 08 2012 Nick Clifton <nickc@redhat.com> - 2.22.52.0.3-1
0e5f8d
- Rebase on 2.22.52.0.3 release.  (#819823)
0e5f8d
0e5f8d
* Mon Apr 30 2012 Nick Clifton <nickc@redhat.com> - 2.22.52.0.2-1
0e5f8d
- Rebase on 2.22.52.0.2 release.  (#816514)
0e5f8d
- Retire binutils-2.22.52.0.1-weakdef.patch, binutils-2.22.52.0.1-ld-13621.patch, binutils-rh797752.patch, binutils-2.22.52.0.1-x86_64-hidden-ifunc.patch, binutils-2.22.52.0.1-tsx.patch and binutils-2.22.52.0.1-hidden-ifunc.patch.
0e5f8d
- Update binutils-2.22.52.0.1-reloc-on-by-default.patch.
0e5f8d
0e5f8d
* Fri Apr 27 2012 Nick Clifton <nickc@redhat.com> - 2.22.52.0.1-12
0e5f8d
- Include demangle.h in the devel rpm.
0e5f8d
0e5f8d
* Tue Apr 03 2012 Nick Clifton <nickc@redhat.com> - 2.22.52.0.1-11
0e5f8d
- Enable -zrelro by default for RHEL 7+. (#807831)
0e5f8d
0e5f8d
* Fri Mar 16 2012 Jakub Jelinek <jakub@redhat.com> - 2.22.52.0.1-10
0e5f8d
- Fix up handling of hidden ifunc relocs on i?86
0e5f8d
0e5f8d
* Wed Mar 14 2012 Jeff Law <law@redhat.com> - 2.22.52.0.1-9
0e5f8d
- Fix c++filt docs (2nd instance) (#797752)
0e5f8d
0e5f8d
* Wed Mar 07 2012 Jakub Jelinek <jakub@redhat.com> - 2.22.52.0.1-8
0e5f8d
- Fix up handling of hidden ifunc relocs on x86_64
0e5f8d
- Add Intel TSX support
0e5f8d
0e5f8d
* Tue Mar 06 2012 Nick Clifton <nickc@redhat.com> - 2.22.52.0.1-7
0e5f8d
- Enable -zrelro by default. (#621983 #807831)
0e5f8d
0e5f8d
* Mon Feb 27 2012 Jeff Law <law@redhat.com> - 2.22.52.0.1-6
0e5f8d
- Fix c++filt docs (#797752)
0e5f8d
0e5f8d
* Wed Feb 15 2012 Mark Wielaard <mjw@redhat.com> - 2.22.52.0.1-5
0e5f8d
- Add upstream ld/13621 'dangling global hidden symbol in symtab' patch.
0e5f8d
0e5f8d
* Wed Feb 08 2012 Adam Williamson <awilliam@redhat.com> - 2.22.52.0.1-4
0e5f8d
- Actually apply the patch
0e5f8d
0e5f8d
* Wed Feb 08 2012 Adam Williamson <awilliam@redhat.com> - 2.22.52.0.1-3
0e5f8d
- Add upstream weakdef.patch to fix RH #788107
0e5f8d
0e5f8d
* Wed Feb 01 2012 Nick Clifton <nickc@redhat.com> - 2.22.52.0.1-2
0e5f8d
- Drat - forgot to upload the new tarball.  Now done.
0e5f8d
0e5f8d
* Wed Feb 01 2012 Nick Clifton <nickc@redhat.com> - 2.22.52.0.1-1
0e5f8d
- Rebase on 2.22.52 release.
0e5f8d
- Remove build-id.patch and gold-casts.patch as they are included in the 2.22.52 sources.
0e5f8d
0e5f8d
* Fri Jan 13 2012 Nick Clifton <nickc@redhat.com> - 2.22-4
0e5f8d
- Fix bug in GOLD sources parsing signed integers in command line options. 
0e5f8d
0e5f8d
* Fri Jan 13 2012 Nick Clifton <nickc@redhat.com> - 2.22-3
0e5f8d
- Add casts for building gold with 4.7 version of gcc.
0e5f8d
0e5f8d
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.22-2
0e5f8d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
0e5f8d
0e5f8d
* Tue Nov  22 2011 Nick Clifton <nickc@redhat.com> - 2.22-1
0e5f8d
- Rebase on 2.22 release.
0e5f8d
0e5f8d
* Fri Sep  30 2011 Ricky Zhou <ricky@fedoraproject.org> - 2.21.53.0.2-2
0e5f8d
- Rebuild libopcodes.a with -fPIC.
0e5f8d
0e5f8d
* Tue Aug  09 2011 Nick Clifton <nickc@redhat.com> - 2.21.53.0.2-1
0e5f8d
- Rebase on 2.21.53.0.2 tarball.  Delete unneeded patches.  (BZ 728677)
0e5f8d
0e5f8d
* Tue Aug  02 2011 Nick Clifton <nickc@redhat.com> - 2.21.53.0.1-3
0e5f8d
- Update libiberty demangling.  (BZ 727453)
0e5f8d
0e5f8d
* Wed Jul  27 2011 Nick Clifton <nickc@redhat.com> - 2.21.53.0.1-2
0e5f8d
- Import Jakub Jelinek's patch to add support for displaying the contents of .debug_macro sections.
0e5f8d
0e5f8d
* Tue Jul  19 2011 Nick Clifton <nickc@redhat.com> - 2.21.53.0.1-1
0e5f8d
- Rebase on 2.21.53.0.1 tarball.  Delete unneeded patches.  (BZ 712668)
0e5f8d
0e5f8d
* Fri Jun  24 2011 Nick Clifton <nickc@redhat.com> - 2.21.52.0.1-5
0e5f8d
- Import fix for PR ld/12921.
0e5f8d
0e5f8d
* Fri Jun  24 2011 Nick Clifton <nickc@redhat.com> - 2.21.52.0.1-4
0e5f8d
- Run "alternatives --auto" to restore ld symbolic link if it was manually configured.  (BZ 661247)
0e5f8d
0e5f8d
* Thu Jun  16 2011 Nick Clifton <nickc@redhat.com> - 2.21.52.0.1-3
0e5f8d
- Fix seg-fault attempting to find a function name without a symbol table.  (BZ 713471)
0e5f8d
0e5f8d
* Fri Jun  10 2011 Nick Clifton <nickc@redhat.com> - 2.21.52.0.1-2
0e5f8d
- Import fix for PR ld/12851 (BZ 711268)
0e5f8d
0e5f8d
* Thu Jun  09 2011 Nick Clifton <nickc@redhat.com> - 2.21.52.0.1-1
0e5f8d
- Rebase on 2.21.52.0.1 tarball.  (BZ 712025)
0e5f8d
0e5f8d
* Tue May  17 2011 Nick Clifton <nickc@redhat.com> - 2.21.51.0.9-1
0e5f8d
- Rebase on 2.21.51.0.9 tarball.  (BZ 703105)
0e5f8d
0e5f8d
* Mon May   2 2011 Peter Robinson <pbrobinson@gmail.com> - 2.21.51.0.8-3
0e5f8d
- Add ARM to BFD checks
0e5f8d
0e5f8d
* Mon Apr  11 2011 Nick Clifton <nickc@redhat.com> - 2.21.51.0.8-2
0e5f8d
- Delete plugins patch - enable plugins via configure option.
0e5f8d
0e5f8d
* Mon Apr  11 2011 Nick Clifton <nickc@redhat.com> - 2.21.51.0.8-1
0e5f8d
- Rebase on 2.21.51.0.8 tarball.
0e5f8d
0e5f8d
* Thu Mar  17 2011 Nick Clifton <nickc@redhat.com> - 2.21.51.0.7-1
0e5f8d
- Rebase on 2.21.51.0.7 tarball.
0e5f8d
0e5f8d
* Tue Mar  08 2011 Nick Clifton <nickc@redhat.com> - 2.21.51.0.6-2
0e5f8d
- Enable gold plugins.  (BZ 682852)
0e5f8d
0e5f8d
* Thu Feb  10 2011 Nick Clifton <nickc@redhat.com> - 2.21.51.0.6-1
0e5f8d
- Rebase on 2.21.51.0.6 tarball.
0e5f8d
0e5f8d
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.21.51.0.5-4
0e5f8d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
0e5f8d
0e5f8d
* Fri Jan  28 2011 Jakub Jelinek <jakub@redhat.com> - 2.21.51.0.5-3
0e5f8d
- Readd --build-id fix patch.  (PR ld/12451)
0e5f8d
0e5f8d
* Thu Jan   6 2011 Dan Horák <dan[at]danny.cz> - 2.21.51.0.5-2
0e5f8d
- fix build on non-gold arches like s390(x) where both ld and ld.bfd is installed
0e5f8d
0e5f8d
* Wed Jan   5 2011 Nick Clifton <nickc@redhat.com> - 2.21.51.0.5-1
0e5f8d
- Rebase on 2.21.51.0.5 tarball.
0e5f8d
- Delete redundant patches.
0e5f8d
- Fix gold+ld configure command line option.
0e5f8d
0e5f8d
* Fri Nov   5 2010 Dan Horák <dan[at]danny.cz> - 2.20.51.0.12-2
0e5f8d
- "no" is not valid option for --enable-gold
0e5f8d
0e5f8d
* Thu Oct  28 2010 Nick Clifton <nickc@redhat.com> - 2.20.51.0.12-1
0e5f8d
- Rebase on 2.20.51.0.12 tarball.  (BZ 582160)
0e5f8d
0e5f8d
* Fri Sep  10 2010 Nick Clifton <nickc@redhat.com> - 2.20.51.0.11-1
0e5f8d
- Rebase on 2.20.51.0.11 tarball.  (BZ 631771)
0e5f8d
0e5f8d
* Fri Aug  20 2010 Nick Clifton <nickc@redhat.com> - 2.20.51.0.10-3
0e5f8d
- Allow ^ and ! characters in linker script wildcard patterns.  (BZ 621742)
0e5f8d
0e5f8d
* Fri Aug  20 2010 Nick Clifton <nickc@redhat.com> - 2.20.51.0.10-2
0e5f8d
- Fix seg fault in sec_merge_emit().  (BZ 623687)
0e5f8d
0e5f8d
* Tue Aug  10 2010 Nick Clifton <nickc@redhat.com> - 2.20.51.0.10-1
0e5f8d
- Rebase on 2.20.51.0.10 tarball.
0e5f8d
- Import GOLD sources from binutils mainline as of 10 Aug 2010. 
0e5f8d
0e5f8d
* Wed Jun  30 2010 Nick Clifton <nickc@redhat.com> - 2.20.51.0.7-5
0e5f8d
- Rename the binutils-static package to binutils-devel in line with the Fedora packaging guidelines.
0e5f8d
0e5f8d
* Wed Jun   9 2010 Nick Clifton <nickc@redhat.com> - 2.20.51.0.7-4
0e5f8d
- Allow GOLD linker to parse "-l<name>" directives inside INPUT statements in linker scripts. (BZ 600553)
0e5f8d
0e5f8d
* Tue May   4 2010 Nick Clifton <nickc@redhat.com> - 2.20.51.0.7-3
0e5f8d
- Allow unique symbols in archive maps.
0e5f8d
0e5f8d
* Tue Apr  20 2010 Nick Clifton <nickc@redhat.com> - 2.20.51.0.7-2
0e5f8d
- Merge binutils-devel package into binutils-static package.  (BZ 576300)
0e5f8d
0e5f8d
* Thu Apr   8 2010 Nick Clifton <nickc@redhat.com> - 2.20.51.0.7-1
0e5f8d
- Rebase on 2.20.51.0.7 tarball.
0e5f8d
- Delete redundant patches:
0e5f8d
  binutils-2.20.51.0.2-add-needed.patch,
0e5f8d
  binutils-2.20.51.0.2-do-not-set-ifunc.patch,
0e5f8d
  binutils-2.20.51.0.2-enable-gold.patch,
0e5f8d
  binutils-2.20.51.0.2-gas-expr.patch,
0e5f8d
  binutils-2.20.51.0.2-ifunc-ld-s.patch,
0e5f8d
  binutils-2.20.51.0.2-lwp.patch,
0e5f8d
  binutils-2.20.51.0.2-ppc-hidden-plt-relocs.patch,
0e5f8d
  binutils-2.20.51.0.2-x86-hash-table.patch,
0e5f8d
- Do not allow unique symbols to be bound locally.  (PR ld/11434)
0e5f8d
- Add support for DWARF4 debug information.
0e5f8d
0e5f8d
* Thu Mar   4 2010 Nick Clifton <nickc@redhat.com> - 2.20.51.0.2-17
0e5f8d
- Do not set ELFOSABI_LINUX on binaries which just link to IFUNC using DSOs.  (BZ 568941)
0e5f8d
0e5f8d
* Tue Mar   2 2010 Nick Clifton <nickc@redhat.com> - 2.20.51.0.2-16
0e5f8d
- Copy the OSABI field in ELF headers, if set.  (BZ 568921)
0e5f8d
0e5f8d
* Fri Feb  12 2010 Nick Clifton <nickc@redhat.com> - 2.20.51.0.2-15
0e5f8d
- Create separate static and devel sub-packages.  (BZ 556040)
0e5f8d
0e5f8d
* Tue Feb   2 2010 Nick Clifton <nickc@redhat.com> - 2.20.51.0.2-14
0e5f8d
- Fix seg-fault when linking mixed x86 and x86_64 binaries.  (BZ 487472)
0e5f8d
0e5f8d
* Fri Jan  22 2010 Nick Clifton <nickc@redhat.com> - 2.20.51.0.2-13
0e5f8d
- Add a requirement for the coreutils.  (BZ 557006)
0e5f8d
0e5f8d
* Wed Jan  20 2010 Nick Clifton <nickc@redhat.com> - 2.20.51.0.2-12
0e5f8d
- Fix --no-copy-dt-needed so that it will not complain about weak references.
0e5f8d
0e5f8d
* Fri Dec  18 2009 Nick Clifton <nickc@redhat.com> - 2.20.51.0.2-11
0e5f8d
- Add missing part of PR 11088 patch.
0e5f8d
0e5f8d
* Thu Dec  17 2009 Nick Clifton <nickc@redhat.com> - 2.20.51.0.2-10
0e5f8d
- Apply patch for PR 11088.  (BZ 544149)
0e5f8d
0e5f8d
* Wed Dec  9 2009 Nick Clifton <nickc@redhat.com> - 2.20.51.0.2-9
0e5f8d
- Apply patch for PR 10856.  (BZ 544358)
0e5f8d
0e5f8d
* Tue Dec  1 2009 Roland McGrath <roland@redhat.com> - 2.20.51.0.2-8
0e5f8d
- Build gold only for x86 flavors until others are tested.
0e5f8d
0e5f8d
* Tue Nov 24 2009 Roland McGrath <roland@redhat.com> - 2.20.51.0.2-7
0e5f8d
- Add support for building gold.
0e5f8d
0e5f8d
* Mon Nov  9 2009 Jakub Jelinek <jakub@redhat.com> 2.20.51.0.2-5
0e5f8d
- Fix up --copy-dt-needed-entries default.  (Nick Clifton)
0e5f8d
0e5f8d
* Mon Nov  9 2009 Jakub Jelinek <jakub@redhat.com> 2.20.51.0.2-4
0e5f8d
- Fix ld -s with IRELATIVE relocations.  (BZ 533321, PR ld/10911)
0e5f8d
- Add AMD Orochi LWP support, fix FMA4 support.
0e5f8d
0e5f8d
* Thu Nov 05 2009 Nick CLifton <nickc@redhat.com> 2.20.51.0.2-3
0e5f8d
- Rename --add-needed to --copy-dt-needed-entries and improve error message about unresolved symbols in DT_NEEDED DSOs.
0e5f8d
0e5f8d
* Tue Oct 27 2009 Jan Kratochvil <jan.kratochvil@redhat.com> 2.20.51.0.2-2
0e5f8d
- Fix rpm --excludedocs (BZ 515922).
0e5f8d
- Fix spurious scriplet errors by `exit 0'. (BZ 517979, Nick Clifton)
0e5f8d
0e5f8d
* Mon Oct 12 2009 Nick Clifton <nickc@redhat.com> 2.20.51.0.2-1
0e5f8d
- Rebase on 2.20 tarball.
0e5f8d
- Remove redundant moxie patch.
0e5f8d
- Remove redundant unique is global patch.
0e5f8d
- Remove redundant cxxfilt java doc patch.
0e5f8d
0e5f8d
* Tue Sep 29 2009 Jan Kratochvil <jan.kratochvil@redhat.com> 2.19.51.0.14-32
0e5f8d
- Remove spurious description of nonexistent --java switch for cxxfilt.
0e5f8d
0e5f8d
* Thu Aug  6 2009 Jakub Jelinek <jakub@redhat.com> 2.19.51.0.14-31
0e5f8d
- Fix strip on objects with STB_GNU_UNIQUE symbols. (BZ 515700, PR binutils/10492)
0e5f8d
0e5f8d
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.19.51.0.14-30
0e5f8d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
0e5f8d
0e5f8d
* Wed Jul 22 2009 Nick Clifton <nickc@redhat.com> 2.19.51.0.11-28
0e5f8d
- Rebase sources on 2.19.51.0.14 tarball.  Gain fixes for PRs 10429 and 10433.
0e5f8d
0e5f8d
* Wed Jul 22 2009 Nick Clifton <nickc@redhat.com> 2.19.51.0.11-28
0e5f8d
- Rebase sources on 2.19.51.0.13 tarball.  Remove redundant orphan section placement patch. (BZ 512937)
0e5f8d
0e5f8d
* Tue Jul 14 2009 Nick Clifton <nickc@redhat.com> 2.19.51.0.11-27
0e5f8d
- Add patch to allow moxie target to build, and hence --enable-targets=all to work.
0e5f8d
0e5f8d
* Tue Jul 14 2009 Nick Clifton <nickc@redhat.com> 2.19.51.0.11-26
0e5f8d
- Import orphan section placement patch from mainline.  (BZ 510384)
0e5f8d
0e5f8d
* Tue Jul 14 2009 Nick Clifton <nickc@redhat.com> 2.19.51.0.11-25
0e5f8d
- Fix build-id patch to avoid memory corruption.  (BZ 501582)
0e5f8d
0e5f8d
* Sat Jul 11 2009 Jan Kratochvil <jan.kratochvil@redhat.com> 2.19.51.0.11-24
0e5f8d
- Provide uuencode output of the testsuite results.
0e5f8d
0e5f8d
* Tue Jun 30 2009 Nick Clifton <nickc@redhat.com> 2.19.51.0.11-23
0e5f8d
- Rebase sources on the 2.19.51.0.11 tarball.
0e5f8d
0e5f8d
* Mon Jun 22 2009 Nick Clifton <nickc@redhat.com> 2.19.51.0.10-22
0e5f8d
- Rebase sources on the 2.19.51.0.10 tarball.
0e5f8d
0e5f8d
* Thu Jun 11 2009 Nick Clifton <nickc@redhat.com> 2.19.51.0.2-21
0e5f8d
- Do not attempt to set execute permission on non-regular files.  (BZ 503426)
0e5f8d
0e5f8d
* Tue Jun  9 2009 Jakub Jelinek <jakub@redhat.com> 2.19.51.0.2-20
0e5f8d
- Fix .cfi_* skip over >= 64KB of code.  (PR gas/10255)
0e5f8d
0e5f8d
* Wed May 27 2009 Nick Clifton <nickc@redhat.com> 2.19.51.0.2-19
0e5f8d
- Import fix for binutils PR #9938.  (BZ 500295)
0e5f8d
0e5f8d
* Wed Apr 15 2009 Nick Clifton <nickc@redhat.com> 2.19.51.0.2-18
0e5f8d
- Update IBM Power 7 support patch to fix tlbilx opcode.  (BZ 494718)
0e5f8d
0e5f8d
* Tue Mar 17 2009 Nick Clifton <nickc@redhat.com> 2.19.51.0.2-17
0e5f8d
- Add glibc-static to BuildRequires when running the testsuite.
0e5f8d
0e5f8d
* Thu Mar 05 2009 Nick Clifton <nickc@redhat.com> 2.19.51.0.2-16
0e5f8d
- Add IBM Power7 support.  (BZ 487887)
0e5f8d
0e5f8d
* Mon Mar 02 2009 Nick Clifton <nickc@redhat.com> 2.19.51.0.2-15
0e5f8d
- Add IFUNC support.  (BZ 465302)
0e5f8d
0e5f8d
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.19.51.0.2-14
0e5f8d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
0e5f8d
0e5f8d
* Mon Feb 23 2009 Jan Kratochvil <jan.kratochvil@redhat.com> 2.19.50.0.2-13
0e5f8d
- Rediff the symbolic-envvar-revert patch to comply with rpm patch --fuzz=0.
0e5f8d
0e5f8d
* Thu Feb  5 2009 Nick Clifton <nickc@redhat.com> 2.19.51.0.2-12
0e5f8d
- Rebase sources on 2.19.51.0.2 tarball.  Remove linkonce-r-discard and
0e5f8d
  gcc-expect-table patches.
0e5f8d
0e5f8d
* Mon Feb  2 2009 Jan Kratochvil <jan.kratochvil@redhat.com> 2.19.50.0.1-11
0e5f8d
- Fix .eh_frame_hdr build also for .gcc_except_table LSDA refs (BZ 461675).
0e5f8d
0e5f8d
* Fri Jan 23 2009 Nick Clifton <nickc@redhat.com> 2.19.50.0.1-10
0e5f8d
- Only require dejagnu if the testsuites are going to be run.  (BZ 481169)
0e5f8d
0e5f8d
* Sat Nov 29 2008 Nick Clifton <nickc@redhat.com> 2.19.50.0.1-8
0e5f8d
- Add build-id patch to ensure that section contents are incorporated
0e5f8d
  into a build id.  (BZ 472152)
0e5f8d
0e5f8d
* Fri Nov 21 2008 Nick Clifton <nickc@redhat.com> 2.19.50.0.1
0e5f8d
- Rebase sources on 2.19.50.0.1 tarball.  Update all patches, trimming
0e5f8d
  those that are no longer needed.
0e5f8d
0e5f8d
* Thu Oct 30 2008 Jan Kratochvil <jan.kratochvil@redhat.com> 2.18.50.0.9-7
0e5f8d
- Fix %%{_prefix}/include/bfd.h on 32-bit hosts due the 64-bit BFD target
0e5f8d
  support from 2.18.50.0.8-2 (BZ 468495).
0e5f8d
0e5f8d
* Thu Oct 30 2008 Jan Kratochvil <jan.kratochvil@redhat.com> 2.18.50.0.9-6
0e5f8d
- binutils-devel now requires zlib-devel (BZ 463101 comment 5).
0e5f8d
- Fix complains on .gnu.linkonce.r relocations to their discarded
0e5f8d
  .gnu.linkonce.t counterparts.
0e5f8d
0e5f8d
* Mon Sep 22 2008 Jan Kratochvil <jan.kratochvil@redhat.com> 2.18.50.0.9-5
0e5f8d
- Remove %%makeinstall to comply with the spu-binutils review (BZ 452211).
0e5f8d
0e5f8d
* Mon Sep 22 2008 Jan Kratochvil <jan.kratochvil@redhat.com> 2.18.50.0.9-4
0e5f8d
- Fix *.so scripts for multilib linking (BZ 463101, suggested by Jakub Jelinek).
0e5f8d
0e5f8d
* Sun Sep 21 2008 Jan Kratochvil <jan.kratochvil@redhat.com> 2.18.50.0.9-3
0e5f8d
- Provide libbfd.so and libopcodes.so for automatic dependencies (BZ 463101).
0e5f8d
- Fix .eh_frame_hdr build on C++ files with discarded common groups (BZ 458950).
0e5f8d
- Provide --build and --host to fix `rpmbuild --target' biarch builds.
0e5f8d
- Include %%{binutils_target}- filename prefix for binaries for cross builds.
0e5f8d
- Fix multilib conflict on %%{_prefix}/include/bfd.h's BFD_HOST_64BIT_LONG_LONG.
0e5f8d
0e5f8d
* Mon Sep 15 2008 Jan Kratochvil <jan.kratochvil@redhat.com> 2.18.50.0.9-2
0e5f8d
- Package review, analysed by Jon Ciesla and Patrice Dumas (BZ 225615).
0e5f8d
 - build back in the sourcedir without problems as gasp is no longer included.
0e5f8d
 - Fix the install-info requirement.
0e5f8d
 - Drop the needless gzipping of the info files.
0e5f8d
 - Provide Obsoletes versions.
0e5f8d
 - Use the %%configure macro.
0e5f8d
0e5f8d
* Sat Aug 30 2008 Jan Kratochvil <jan.kratochvil@redhat.com> 2.18.50.0.9-1
0e5f8d
- Update to 2.18.50.0.9.
0e5f8d
  - Drop the ppc-only spu target pre-build stage (BZ 455242).
0e5f8d
  - Drop parsing elf64-i386 files for kdump PAE vmcore dumps (BZ 457189).
0e5f8d
- New .spec BuildRequires zlib-devel (/-static) for compressed sections.
0e5f8d
- Update .spec Buildroot to be more unique.
0e5f8d
0e5f8d
* Fri Aug  1 2008 Jan Kratochvil <jan.kratochvil@redhat.com> 2.18.50.0.8-2
0e5f8d
- Fix parsing elf64-i386 files for kdump PAE vmcore dumps (BZ 457189).
0e5f8d
- Turn on 64-bit BFD support for i386, globally enable AC_SYS_LARGEFILE.
0e5f8d
- `--with debug' builds now with --disable-shared.
0e5f8d
- Removed a forgotten unused ld/eelf32_spu.c workaround from 2.18.50.0.8-1.
0e5f8d
0e5f8d
* Thu Jul 31 2008 Jan Kratochvil <jan.kratochvil@redhat.com> 2.18.50.0.8-1
0e5f8d
- Update to 2.18.50.0.8.
0e5f8d
  - Drop the .clmul -> .pclmul renaming backport.
0e5f8d
- Add %%{binutils_target} macro to support building cross-binutils.
0e5f8d
  (David Woodhouse)
0e5f8d
- Support `--without testsuite' to suppress the testsuite run.
0e5f8d
- Support `--with debug' to build without optimizations.
0e5f8d
- Refresh the patchset with fuzz 0 (for new rpmbuild).
0e5f8d
- Enable the spu target on ppc/ppc64 (BZ 455242).
0e5f8d
0e5f8d
* Wed Jul 16 2008 Jan Kratochvil <jan.kratochvil@redhat.com> 2.18.50.0.6-4
0e5f8d
- include the `dist' tag in the Release number
0e5f8d
- libbfd.a symbols visibility is now hidden (for #447426, suggested by Jakub)
0e5f8d
0e5f8d
* Wed Jul 16 2008 Jan Kratochvil <jan.kratochvil@redhat.com> 2.18.50.0.6-3
0e5f8d
- rebuild libbfd.a with -fPIC for inclusion into shared libraries (#447426)
0e5f8d
0e5f8d
* Tue Apr  8 2008 Jakub Jelinek <jakub@redhat.com> 2.18.50.0.6-2
0e5f8d
- backport .clmul -> .pclmul renaming
0e5f8d
0e5f8d
* Fri Apr  4 2008 Jakub Jelinek <jakub@redhat.com> 2.18.50.0.6-1
0e5f8d
- update to 2.18.50.0.6
0e5f8d
  - Intel AES, CLMUL, AVX/FMA support
0e5f8d
0e5f8d
* Mon Mar  3 2008 Jakub Jelinek <jakub@redhat.com> 2.18.50.0.4-2
0e5f8d
- revert aranges optimization (Alan Modra, BZ#5303, BZ#5755)
0e5f8d
- fix ld-shared testcase for GCC 4.3 (H.J. Lu)
0e5f8d
0e5f8d
* Fri Feb 29 2008 Jakub Jelinek <jakub@redhat.com> 2.18.50.0.4-1
0e5f8d
- update to 2.18.50.0.4
0e5f8d
0e5f8d
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> 2.18.50.0.3-2
0e5f8d
- Autorebuild for GCC 4.3
0e5f8d
0e5f8d
* Wed Dec 12 2007 Jakub Jelinek <jakub@redhat.com> 2.18.50.0.3-1
0e5f8d
- update to 2.18.50.0.3
0e5f8d
  - fix build with recent makeinfo (#415271)
0e5f8d
0e5f8d
* Thu Aug 16 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.18-1
0e5f8d
- update to 2.17.50.0.18
0e5f8d
  - GPLv3+
0e5f8d
  - preserve .note.gnu.build-id in objcopy --only-keep-debug (#251935)
0e5f8d
  - fix sparc64/alpha broken by --build-id patch (#252936)
0e5f8d
- update License tag
0e5f8d
- fix ld crash with --build-id and non-ELF output format (Alan Modra, BZ#4923)
0e5f8d
0e5f8d
* Tue Jul 31 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.17-7
0e5f8d
- fix ppc32 secure PLT detection (Alan Modra)
0e5f8d
0e5f8d
* Wed Jul 25 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.17-6
0e5f8d
- rebuilt to make sure even libbfd.so and libopcodes.so aren't
0e5f8d
  broken by #249435
0e5f8d
0e5f8d
* Tue Jul 24 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.17-5
0e5f8d
- add .note.gnu.build-id into default linker script (#249435)
0e5f8d
0e5f8d
* Tue Jul 24 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.17-4
0e5f8d
- don't kill the %%{_gnu} part of target name on arm
0e5f8d
  (Lennert Buytenhek, #243516)
0e5f8d
- create just one PT_NOTE segment header for all consecutive SHT_NOTE
0e5f8d
  sections
0e5f8d
0e5f8d
* Wed Jul 18 2007 Roland McGrath <roland@redhat.com> 2.17.50.0.17-3
0e5f8d
- fix for ld --build-id
0e5f8d
0e5f8d
* Sun Jul 15 2007 Roland McGrath <roland@redhat.com> 2.17.50.0.17-2
0e5f8d
- ld --build-id support
0e5f8d
0e5f8d
* Wed Jun 27 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.17-1
0e5f8d
- update to 2.17.50.0.17
0e5f8d
0e5f8d
* Tue Jun 12 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.16-1
0e5f8d
- update to 2.17.50.0.16
0e5f8d
0e5f8d
* Sat Apr 14 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.12-4
0e5f8d
- fix linking non-ELF input objects into ELF output (#235747)
0e5f8d
0e5f8d
* Wed Mar 14 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.12-3
0e5f8d
- don't require matching ELF_OSABI for target vecs with ELFOSABI_NONE,
0e5f8d
  only prefer specific osabi target vecs over the generic ones
0e5f8d
  (H.J.Lu, #230964, BZ#3826)
0e5f8d
- build libbfd.so and libopcodes.so with -Bsymbolic-functions
0e5f8d
0e5f8d
* Fri Mar  2 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.12-2
0e5f8d
- ignore install-info errors from scriptlets (#223678)
0e5f8d
0e5f8d
* Thu Mar  1 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.12-1
0e5f8d
- update to 2.17.50.0.12
0e5f8d
- revert the misdesigned LD_SYMBOLIC{,_FUNCTIONS} env var support,
0e5f8d
  only support -Bsymbolic/-Bsymbolic-functions/--dynamic-list*
0e5f8d
0e5f8d
* Mon Jan  8 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.9-1
0e5f8d
- update to 2.17.50.0.9
0e5f8d
- fix tekhex reader
0e5f8d
0e5f8d
* Sat Dec 23 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.8-2
0e5f8d
- fix --as-needed on ppc64 (#219629)
0e5f8d
0e5f8d
* Sun Dec  3 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.8-1
0e5f8d
- update to 2.17.50.0.8
0e5f8d
- initialize frch_cfi_data (BZ#3607)
0e5f8d
0e5f8d
* Fri Dec  1 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.7-1
0e5f8d
- update to 2.17.50.0.7
0e5f8d
  - .cfi_personality and .cfi_lsda directives, per subsection .cfi_*
0e5f8d
    directives, better .eh_frame CIE merging
0e5f8d
0e5f8d
* Thu Nov  9 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.6-3
0e5f8d
- fix popcnt instruction assembly and disassembly on amd64 (#214767)
0e5f8d
0e5f8d
* Mon Oct 23 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.6-2
0e5f8d
- update to 2.17.50.0.6
0e5f8d
  - fix for section relative linker script defined symbols in
0e5f8d
    empty sections (#207598, BZ#3267)
0e5f8d
  - fix handling of DW_CFA_set_loc in .eh_frame optimizations
0e5f8d
  - fix R_PPC_{PLT,GOT{,_TLSGD,_TLSLD,_TPREL,_DTPREL}}16_HA relocation
0e5f8d
    handling with weak undefined symbols (Alan Modra, #211094)
0e5f8d
0e5f8d
* Tue Sep 12 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.3-6
0e5f8d
- fix multilib conflict in %%{_prefix}/include/bfd.h
0e5f8d
0e5f8d
* Tue Sep 12 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.3-5
0e5f8d
- fix efi-app-ia64 magic number (#206002, BZ#3171)
0e5f8d
0e5f8d
* Tue Sep  5 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.3-4
0e5f8d
- link libopcodes*.so against libbfd*.so (#202327)
0e5f8d
- split *.a and header files into binutils-devel
0e5f8d
0e5f8d
* Fri Aug 18 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.3-3
0e5f8d
- on ppc and ppc64 increase default -z commonpagesize to 64K (#203001)
0e5f8d
0e5f8d
* Fri Jul 28 2006 Alexandre Oliva <aoliva@redhat.com> 2.17.50.0.3-2
0e5f8d
- do not infer x86 arch implicitly based on instruction in the input
0e5f8d
  (#200330)
0e5f8d
0e5f8d
* Mon Jul 17 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.3-1
0e5f8d
- update to 2.17.50.0.3
0e5f8d
0e5f8d
* Fri Jul 14 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.2-8
0e5f8d
- add support for new AMDFAM10 instructions (#198281, IT#97662)
0e5f8d
- add -march=/-mtune= gas support on x86/x86-64
0e5f8d
- x86/x86-64 nop insn improvements
0e5f8d
- fix DT_GNU_HASH shift count value computation
0e5f8d
0e5f8d
* Tue Jul 11 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.2-7
0e5f8d
- add DT_GNU_HASH support (--hash-style=gnu and --hash-style=both
0e5f8d
  ld options)
0e5f8d
0e5f8d
* Thu Jun 29 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.2-4
0e5f8d
- fix i?86 TLS GD->IE transition in executables (#196157, BZ#2513)
0e5f8d
0e5f8d
* Mon Jun 19 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.2-3
0e5f8d
- fix two places in ld that misbehaved with MALLOC_PERTURB_=N
0e5f8d
- fix .tls_common handling in relocatable linking
0e5f8d
0e5f8d
* Mon Jun  5 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.2-2
0e5f8d
- fix --as-needed (Alan Modra, #193689, BZ#2721)
0e5f8d
0e5f8d
* Thu Jun  1 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.2-1
0e5f8d
- update to 2.17.50.0.2
0e5f8d
- update from CVS to 20060601
0e5f8d
- speed up the ELF linker by caching the result of kept section check
0e5f8d
  (H.J. Lu)
0e5f8d
0e5f8d
* Tue May  9 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.1-1
0e5f8d
- update to 2.17.50.0.1
0e5f8d
0e5f8d
* Fri Mar 31 2006 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.6-6
0e5f8d
- fix ld error message formatting, so that collect2 parser can
0e5f8d
  parse it again for g++ -frepo (#187142)
0e5f8d
0e5f8d
* Thu Mar  9 2006 Alexandre Oliva <aoliva@redhat.com> 2.16.91.0.6-4
0e5f8d
- fix relaxation of TLS GD to LE on PPC (#184590)
0e5f8d
0e5f8d
* Fri Mar  3 2006 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.6-3
0e5f8d
- support DW_CFA_val_{offset,offset_sf,expression} in readelf/objdump
0e5f8d
0e5f8d
* Tue Feb 28 2006 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.6-2
0e5f8d
- add MNI support on i?86/x86_64 (#183080)
0e5f8d
- support S signal frame augmentation flag in .eh_frame,
0e5f8d
  add .cfi_signal_frame support (#175951, PR other/26208, BZ#300)
0e5f8d
0e5f8d
* Tue Feb 14 2006 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.6-1
0e5f8d
- update to 2.16.91.0.6
0e5f8d
  - fix ppc64 --gc-sections
0e5f8d
  - disassembler fixes for x86_64 cr/debug regs
0e5f8d
  - fix linker search order for DT_NEEDED libs
0e5f8d
0e5f8d
* Mon Jan 02 2006 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.5-1
0e5f8d
- update to 2.16.91.0.5
0e5f8d
- don't error about .toc1 references to discarded sectiosn on ppc64
0e5f8d
  (#175944)
0e5f8d
0e5f8d
* Wed Dec 14 2005 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.3-2
0e5f8d
- put .gnu.linkonce.d.rel.ro.* sections into relro region
0e5f8d
0e5f8d
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
0e5f8d
- rebuilt
0e5f8d
0e5f8d
* Fri Nov 11 2005 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.3-1
0e5f8d
- update to 2.16.91.0.3
0e5f8d
- add .weakref support (Alexandre Oliva, #115157, #165728)
0e5f8d
0e5f8d
* Thu Aug 18 2005 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.2-4
0e5f8d
- install-info also configure.info
0e5f8d
- update standards.texi from gnulib (#165530)
0e5f8d
0e5f8d
* Tue Aug 16 2005 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.2-3
0e5f8d
- update to 20050816 CVS
0e5f8d
- better fix for ld-cdtest
0e5f8d
- fix symbol version script parsing
0e5f8d
0e5f8d
* Fri Jul 29 2005 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.2-2
0e5f8d
- don't complain about relocs to discarded sections in ppc32
0e5f8d
  .got2 sections (Alan Modra, PR target/17828)
0e5f8d
0e5f8d
* Fri Jul 22 2005 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.2-1
0e5f8d
- update to 2.16.91.0.2
0e5f8d
0e5f8d
* Thu Jul 21 2005 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.1-3
0e5f8d
- fix buffer overflow in readelf ia64 unwind printing code
0e5f8d
- use vsnprintf rather than vsprintf in gas diagnostics (Tavis Ormandy)
0e5f8d
- fix ld-cdtest when CFLAGS contains -fexceptions
0e5f8d
0e5f8d
* Wed Jul 20 2005 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.1-2
0e5f8d
- update to 20050720 CVS
0e5f8d
0e5f8d
* Mon Jul 11 2005 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.1-1
0e5f8d
- update to 2.16.91.0.1 plus 20050708 CVS
0e5f8d
0e5f8d
* Wed Jun 15 2005 Jakub Jelinek <jakub@redhat.com> 2.16.90.0.3-1
0e5f8d
- update to 2.16.90.0.3
0e5f8d
- update to 20050615 CVS
0e5f8d
  - ppc32 secure PLT support (Alan Modra)
0e5f8d
- further bfd/readelf robustification
0e5f8d
0e5f8d
* Sat Jun 11 2005 Jakub Jelinek <jakub@redhat.com> 2.15.94.0.2.2-4
0e5f8d
- further bfd robustification (CAN-2005-1704, #158680)
0e5f8d
0e5f8d
* Fri Jun 10 2005 Jakub Jelinek <jakub@redhat.com> 2.15.94.0.2.2-3
0e5f8d
- further objdump and readelf robustification (CAN-2005-1704, #158680)
0e5f8d
0e5f8d
* Wed May 25 2005 Jakub Jelinek <jakub@redhat.com> 2.15.94.0.2.2-2
0e5f8d
- bfd and readelf robustification (CAN-2005-1704, #158680)
0e5f8d
0e5f8d
* Tue Mar 29 2005 Jakub Jelinek <jakub@redhat.com> 2.15.94.0.2.2-1
0e5f8d
- update to 2.15.94.0.2.2
0e5f8d
- speed up walk_wild_section (Robert O'Callahan)
0e5f8d
0e5f8d
* Mon Mar  7 2005 Jakub Jelinek <jakub@redhat.com> 2.15.94.0.2-4
0e5f8d
- rebuilt with GCC 4
0e5f8d
0e5f8d
* Mon Feb 28 2005 Jakub Jelinek <jakub@redhat.com> 2.15.94.0.2-3
0e5f8d
- fix buffer overflows in readelf (#149506)
0e5f8d
- move c++filt to binutils from gcc-c++, conflict with gcc-c++ < 4.0 (#86333)
0e5f8d
0e5f8d
* Thu Feb 10 2005 Jakub Jelinek <jakub@redhat.com> 2.15.94.0.2-1
0e5f8d
- update to 2.15.94.0.2
0e5f8d
- fix .note.GNU-stack/PT_GNU_STACK computation in linker on ppc64 (#147296)
0e5f8d
- fix stripping of binaries/libraries that have empty sections right before
0e5f8d
  .dynamic section (with the same starting address; #144038)
0e5f8d
- handle AS_NEEDED (...) in linker script INPUT/GROUP
0e5f8d
0e5f8d
* Tue Dec 14 2004 Jakub Jelinek <jakub@redhat.com> 2.15.92.0.2-11
0e5f8d
- fix a longstanding -z relro bug
0e5f8d
0e5f8d
* Mon Dec 13 2004 Jakub Jelinek <jakub@redhat.com> 2.15.92.0.2-10
0e5f8d
- avoid unnecessary gap with -z relro showing on i686 libc.so
0e5f8d
- ppc64 --emit-relocs fix (Alan Modra)
0e5f8d
- don't crash if STT_SECTION symbol has incorrect st_shndx (e.g. SHN_ABS,
0e5f8d
  as created by nasm; #142181)
0e5f8d
- don't try to make absptr LSDAs relative if they don't have relocations
0e5f8d
  against them (Alan Modra, #141162)
0e5f8d
0e5f8d
* Wed Oct 27 2004 Jakub Jelinek <jakub@redhat.com> 2.15.92.0.2-5.EL4
0e5f8d
- fix ar xo (#104344)
0e5f8d
0e5f8d
* Wed Oct 20 2004 Jakub Jelinek <jakub@redhat.com> 2.15.92.0.2-5
0e5f8d
- fix --just-symbols on ppc64 (Alan Modra, #135498)
0e5f8d
0e5f8d
* Fri Oct 15 2004 Jakub Jelinek <jakub@redhat.com> 2.15.92.0.2-4
0e5f8d
- fix code detecting matching linkonce and single member comdat
0e5f8d
  group sections (#133078)
0e5f8d
0e5f8d
* Mon Oct 11 2004 Jakub Jelinek <jakub@redhat.com> 2.15.92.0.2-3
0e5f8d
- revert Sep 09 change to make ppc L second argument e.g. for tlbie
0e5f8d
  non-optional
0e5f8d
- fix stripping of prelinked binaries and libraries (#133734)
0e5f8d
- allow strings(1) on 32-bit arches to be used again with > 2GB
0e5f8d
  files (#133555)
0e5f8d
0e5f8d
* Mon Oct  4 2004 Jakub Jelinek <jakub@redhat.com> 2.15.92.0.2-2
0e5f8d
- update to 2.15.92.0.2
0e5f8d
- change ld's ld.so.conf parser to match ldconfig's (#129340)
0e5f8d
0e5f8d
* Mon Sep 20 2004 Jakub Jelinek <jakub@redhat.com> 2.15.91.0.2-9
0e5f8d
- avoid almost 1MB (sparse) gaps in the middle of -z relro
0e5f8d
  libraries on x86-64 (Andreas Schwab)
0e5f8d
- fix -z relro to make sure end of PT_GNU_RELRO segment is always
0e5f8d
  COMMONPAGESIZE aligned
0e5f8d
0e5f8d
* Wed Aug 18 2004 Jakub Jelinek <jakub@redhat.com> 2.15.91.0.2-8
0e5f8d
- fix linker segfaults on input objects with SHF_LINK_ORDER with
0e5f8d
  incorrect sh_link (H.J.Lu, Nick Clifton, #130198, BZ #290)
0e5f8d
0e5f8d
* Wed Aug 18 2004 Jakub Jelinek <jakub@redhat.com> 2.15.91.0.2-7
0e5f8d
- resolve all undefined ppc64 .* syms to the function bodies through
0e5f8d
  .opd, not just those used in brach instructions (Alan Modra)
0e5f8d
0e5f8d
* Tue Aug 17 2004 Jakub Jelinek <jakub@redhat.com> 2.15.91.0.2-6
0e5f8d
- fix ppc64 ld --dotsyms (Alan Modra)
0e5f8d
0e5f8d
* Tue Aug 17 2004 Jakub Jelinek <jakub@redhat.com> 2.15.91.0.2-5
0e5f8d
- various ppc64 make check fixes when using non-dot-syms gcc (Alan Modra)
0e5f8d
- fix --gc-sections
0e5f8d
- on ia64 create empty .gnu.linkonce.ia64unw*.* sections for
0e5f8d
  .gnu.linkonce.t.* function doesn't need unwind info
0e5f8d
0e5f8d
* Mon Aug 16 2004 Jakub Jelinek <jakub@redhat.com> 2.15.91.0.2-4
0e5f8d
- kill ppc64 dot symbols (Alan Modra)
0e5f8d
- objdump -d support for objects without dot symbols
0e5f8d
- support for overlapping ppc64 .opd entries
0e5f8d
0e5f8d
* Mon Aug 9 2004 Jakub Jelinek <jakub@redhat.com> 2.15.91.0.2-3
0e5f8d
- fix a newly introduced linker crash on x86-64
0e5f8d
0e5f8d
* Sun Aug 8 2004 Alan Cox <alan@redhat.com> 2.15.91.0.2-2
0e5f8d
- BuildRequire bison and macroise buildroot - from Steve Grubb
0e5f8d
0e5f8d
* Fri Jul 30 2004 Jakub Jelinek <jakub@redhat.com> 2.15.91.0.2-1
0e5f8d
- update to 2.15.91.0.2
0e5f8d
- BuildRequire flex (#117763)
0e5f8d
0e5f8d
* Wed May 19 2004 Jakub Jelinek <jakub@redhat.com> 2.15.90.0.3-7
0e5f8d
- use lib64 instead of lib directories on ia64 if %%{_lib} is
0e5f8d
  set to lib64 by rpm
0e5f8d
0e5f8d
* Sat May 15 2004 Jakub Jelinek <jakub@redhat.com> 2.15.90.0.3-6
0e5f8d
- fix a bug introduced in the ++/-- rejection patch
0e5f8d
  from 2.15.90.0.3 (Alan Modra)
0e5f8d
0e5f8d
* Tue May  4 2004 Jakub Jelinek <jakub@redhat.com> 2.15.90.0.3-5
0e5f8d
- fix s390{,x} .{,b,p2}align handling
0e5f8d
- ppc/ppc64 testsuite fix
0e5f8d
0e5f8d
* Mon May  3 2004 Jakub Jelinek <jakub@redhat.com> 2.15.90.0.3-4
0e5f8d
- -z relro ppc/ppc64/ia64 fixes
0e5f8d
- change x86-64 .plt symbol st_size handling to match ia32
0e5f8d
- prettify objdump -d output
0e5f8d
0e5f8d
* Tue Apr 20 2004 Jakub Jelinek <jakub@redhat.com> 2.15.90.0.3-3
0e5f8d
- several SPARC fixes
0e5f8d
0e5f8d
* Sun Apr 18 2004 Jakub Jelinek <jakub@redhat.com> 2.15.90.0.3-2
0e5f8d
- yet another fix for .tbss handling
0e5f8d
0e5f8d
* Fri Apr 16 2004 Jakub Jelinek <jakub@redhat.com> 2.15.90.0.3-1
0e5f8d
- update to 2.15.90.0.3
0e5f8d
0e5f8d
* Fri Mar 26 2004 Jakub Jelinek <jakub@redhat.com> 2.15.90.0.1.1-2
0e5f8d
- update to 20040326 CVS
0e5f8d
  - fix ppc64 weak .opd symbol handling (Alan Modra, #119086)
0e5f8d
- fix .tbss handling bug introduced
0e5f8d
0e5f8d
* Fri Mar 26 2004 Jakub Jelinek <jakub@redhat.com> 2.15.90.0.1.1-1
0e5f8d
- update to 2.15.90.0.1.1
0e5f8d
0e5f8d
* Sat Feb 21 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.8-8
0e5f8d
- with -z now without --enable-new-dtags create DT_BIND_NOW
0e5f8d
  dynamic entry in addition to DT_FLAGS_1 with DF_1_NOW bit set
0e5f8d
0e5f8d
* Fri Feb 20 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.8-7
0e5f8d
- fix -pie on ppc32
0e5f8d
0e5f8d
* Fri Feb 20 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.8-6
0e5f8d
- clear .plt sh_entsize on sparc32
0e5f8d
- put whole .got into relro area with -z now -z relro
0e5f8d
0e5f8d
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
0e5f8d
- rebuilt
0e5f8d
0e5f8d
* Thu Jan 22 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.8-4
0e5f8d
- fix -pie on IA64
0e5f8d
0e5f8d
* Mon Jan 19 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.8-3
0e5f8d
- fix testcases on s390 and s390x
0e5f8d
0e5f8d
* Fri Jan 16 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.8-2
0e5f8d
- fix testcases on AMD64
0e5f8d
- fix .got's sh_entsize on IA32/AMD64
0e5f8d
- set COMMONPAGESIZE on s390/s390x
0e5f8d
- set COMMONPAGESIZE on ppc32 (Alan Modra)
0e5f8d
0e5f8d
* Fri Jan 16 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.8-1
0e5f8d
- update to 2.14.90.0.8
0e5f8d
0e5f8d
* Tue Jan 13 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.7-4
0e5f8d
- fix -z relro on 64-bit arches
0e5f8d
0e5f8d
* Mon Jan 12 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.7-3
0e5f8d
- fix some bugs in -z relro support
0e5f8d
0e5f8d
* Fri Jan  9 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.7-2
0e5f8d
- -z relro support, reordering of RW sections
0e5f8d
0e5f8d
* Fri Jan  9 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.7-1
0e5f8d
- update to 2.14.90.0.7
0e5f8d
0e5f8d
* Mon Nov 24 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.6-4
0e5f8d
- fix assembly parsing of foo=(.-bar)/4 (Alan Modra)
0e5f8d
- fix IA-64 assembly parsing of (p7) hint @pause
0e5f8d
0e5f8d
* Tue Sep 30 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.6-3
0e5f8d
- don't abort on some linker warnings/errors on IA-64
0e5f8d
0e5f8d
* Sat Sep 20 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.6-2
0e5f8d
- fix up merge2.s to use .p2align instead of .align
0e5f8d
0e5f8d
* Sat Sep 20 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.6-1
0e5f8d
- update to 2.14.90.0.6
0e5f8d
- speed up string merging (Lars Knoll, Michael Matz, Alan Modra)
0e5f8d
- speed up IA-64 local symbol handling during linking
0e5f8d
0e5f8d
* Fri Sep  5 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.5-7
0e5f8d
- avoid ld -s segfaults introduced in 2.14.90.0.5-5 (Dmitry V. Levin,
0e5f8d
  #103180)
0e5f8d
0e5f8d
* Fri Aug 29 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.5-6
0e5f8d
- build old demangler into libiberty.a (#102268)
0e5f8d
- SPARC .cfi* support
0e5f8d
0e5f8d
* Tue Aug  5 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.5-5
0e5f8d
- fix orphan section placement
0e5f8d
0e5f8d
* Tue Jul 29 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.5-4
0e5f8d
- fix ppc64 elfvsb linker tests
0e5f8d
- some more 64-bit cleanliness fixes, give ppc64 fdesc symbols
0e5f8d
  type and size (Alan Modra)
0e5f8d
0e5f8d
* Tue Jul 29 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.5-3
0e5f8d
- fix 64-bit unclean code in ppc-opc.c
0e5f8d
0e5f8d
* Mon Jul 28 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.5-2
0e5f8d
- fix 64-bit unclean code in tc-ppc.c
0e5f8d
0e5f8d
* Mon Jul 28 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.5-1
0e5f8d
- update to 2.14.90.0.5
0e5f8d
- fix ld -r on ppc64 (Alan Modra)
0e5f8d
0e5f8d
* Fri Jul 18 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-23
0e5f8d
- rebuilt
0e5f8d
0e5f8d
* Thu Jul 17 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-22
0e5f8d
- fix elfNN_ia64_dynamic_symbol_p (Richard Henderson, #86661)
0e5f8d
- don't access memory beyond what was allocated in readelf
0e5f8d
  (Richard Henderson)
0e5f8d
0e5f8d
* Thu Jul 10 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-21
0e5f8d
- add .cfi_* support on ppc{,64} and s390{,x}
0e5f8d
0e5f8d
* Tue Jul  8 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-20
0e5f8d
- remove lib{bfd,opcodes}.la (#98190)
0e5f8d
0e5f8d
* Mon Jul  7 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-19
0e5f8d
- fix -pie support on amd64, s390, s390x and ppc64
0e5f8d
- issue relocation overflow errors for s390/s390x -fpic code when
0e5f8d
  accessing .got slots above 4096 bytes from .got start
0e5f8d
0e5f8d
* Thu Jul  3 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-18
0e5f8d
- rebuilt
0e5f8d
0e5f8d
* Thu Jul  3 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-17
0e5f8d
- fix ia64 -pie support
0e5f8d
- require no undefined non-weak symbols in PIEs like required for normal
0e5f8d
  binaries
0e5f8d
0e5f8d
* Wed Jul  2 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-16
0e5f8d
- fix readelf -d on IA-64
0e5f8d
- build libiberty.a with -fPIC, so that it can be lined into shared
0e5f8d
  libraries
0e5f8d
0e5f8d
* Wed Jun 25 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-15
0e5f8d
- rebuilt
0e5f8d
0e5f8d
* Wed Jun 25 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-14
0e5f8d
- added support for Intel Prescott instructions
0e5f8d
- fix hint@pause for ia64
0e5f8d
- add workaround for LTP sillyness (#97934)
0e5f8d
0e5f8d
* Wed Jun 18 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-13
0e5f8d
- update CFI stuff to 2003-06-18
0e5f8d
- make sure .eh_frame is aligned to 8 bytes on 64-bit arches,
0e5f8d
  remove padding within one .eh_frame section
0e5f8d
0e5f8d
* Tue Jun 17 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-12
0e5f8d
- rebuilt
0e5f8d
0e5f8d
* Tue Jun 17 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-11
0e5f8d
- one more fix for the same patch
0e5f8d
0e5f8d
* Tue Jun 17 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-10
0e5f8d
- fix previous patch
0e5f8d
0e5f8d
* Mon Jun 16 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-9
0e5f8d
- ensure R_PPC64_{RELATIVE,ADDR64} have *r_offset == r_addend
0e5f8d
  and the other relocs have *r_offset == 0
0e5f8d
0e5f8d
* Tue Jun 10 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-8
0e5f8d
- remove some unnecessary provides in ppc64 linker script
0e5f8d
  which were causing e.g. empty .ctors/.dtors section creation
0e5f8d
0e5f8d
* Fri Jun  6 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-7
0e5f8d
- some CFI updates/fixes
0e5f8d
- don't create dynamic relocations against symbols defined in PIE
0e5f8d
  exported from its .dynsym
0e5f8d
0e5f8d
* Wed Jun  4 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-6
0e5f8d
- update gas to 20030604
0e5f8d
- PT_GNU_STACK support
0e5f8d
0e5f8d
* Mon Jun  2 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-5
0e5f8d
- buildrequire gettext (#91838)
0e5f8d
0e5f8d
* Sat May 31 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-4
0e5f8d
- fix shared libraries with >= 8192 .plt slots on ppc32
0e5f8d
0e5f8d
* Thu May 29 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-3
0e5f8d
- rebuilt
0e5f8d
0e5f8d
* Thu May 29 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-2
0e5f8d
- rename ld --dynamic option to --pic-executable or --pie
0e5f8d
- fix ld --help output
0e5f8d
- document --pie/--pic-executable in ld.info and ld.1
0e5f8d
0e5f8d
* Wed May 28 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-1
0e5f8d
- update to 2.14.90.0.4-1
0e5f8d
- gas CFI updates (Richard Henderson)
0e5f8d
- dynamic executables (Ulrich Drepper)
0e5f8d
0e5f8d
* Tue May 20 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.2-2
0e5f8d
- fix ELF visibility handling
0e5f8d
- tidy plt entries on IA-32, ppc and ppc64
0e5f8d
0e5f8d
* Mon May 19 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.2-1
0e5f8d
- update to 2.14.90.0.2-1
0e5f8d
0e5f8d
* Tue May 13 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.20-8
0e5f8d
- fix bfd_elf_hash on 64-bit arches (Andrew Haley)
0e5f8d
0e5f8d
* Wed Apr 30 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.20-7
0e5f8d
- rebuilt
0e5f8d
0e5f8d
* Mon Apr 14 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.20-6
0e5f8d
- optimize DW_CFA_advance_loc4 in gas even if there is 'z' augmentation
0e5f8d
  with size 0 in FDE
0e5f8d
0e5f8d
* Fri Apr 11 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.20-5
0e5f8d
- fix SPARC build
0e5f8d
0e5f8d
* Thu Apr  3 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.20-4
0e5f8d
- fix ppc32 plt reference counting
0e5f8d
- don't include %%{_prefix}/%%{_lib}/debug in the non-debuginfo package
0e5f8d
  (#87729)
0e5f8d
0e5f8d
* Mon Mar 31 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.20-3
0e5f8d
- make elf64ppc target native extra on ppc and elf32ppc native extra
0e5f8d
  on ppc64.
0e5f8d
0e5f8d
* Fri Mar 28 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.20-2
0e5f8d
- fix TLS on IA-64 with ld relaxation
0e5f8d
0e5f8d
* Sat Mar 22 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.20-1
0e5f8d
- update to 2.13.90.0.20
0e5f8d
0e5f8d
* Mon Feb 24 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.18-9
0e5f8d
- rebuilt
0e5f8d
0e5f8d
* Mon Feb 24 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.18-8
0e5f8d
- don't strip binaries in %%install, so that there is non-empty
0e5f8d
  debuginfo
0e5f8d
0e5f8d
* Mon Feb 24 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.18-7
0e5f8d
- don't optimize .eh_frame during ld -r
0e5f8d
0e5f8d
* Thu Feb 13 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.18-6
0e5f8d
- don't clear elf_link_hash_flags in the .symver patch
0e5f8d
- only use TC_FORCE_RELOCATION in s390's TC_FORCE_RELOCATION_SUB_SAME
0e5f8d
  (Alan Modra)
0e5f8d
0e5f8d
* Mon Feb 10 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.18-5
0e5f8d
- fix the previous .symver change
0e5f8d
- remove libbfd.so and libopcodes.so symlinks, so that other packages
0e5f8d
  link statically, not dynamically against libbfd and libopcodes
0e5f8d
  whose ABI is everything but stable
0e5f8d
0e5f8d
* Mon Feb 10 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.18-4
0e5f8d
- do .symver x, x@FOO handling earlier
0e5f8d
- support .file and .loc on s390*
0e5f8d
0e5f8d
* Mon Feb 10 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.18-3
0e5f8d
- handle .symver x, x@FOO in ld such that relocs against x become
0e5f8d
  dynamic relocations against x@FOO (#83325)
0e5f8d
- two PPC64 TLS patches (Alan Modra)
0e5f8d
0e5f8d
* Sun Feb 09 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.18-2
0e5f8d
- fix SEARCH_DIR on x86_64/s390x
0e5f8d
- fix Alpha --relax
0e5f8d
- create DT_RELA{,SZ,ENT} on s390 even if there is just .rela.plt
0e5f8d
  and no .rela.dyn section
0e5f8d
- support IA-32 on IA-64 (#83752)
0e5f8d
- .eh_frame_hdr fix (Andreas Schwab)
0e5f8d
0e5f8d
* Thu Feb 06 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.18-1
0e5f8d
- update to 2.13.90.0.18 + 20030121->20030206 CVS diff
0e5f8d
0e5f8d
* Tue Feb 04 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.16-8
0e5f8d
- alpha TLS fixes
0e5f8d
- use .debug_line directory table to make the section tiny bit smaller
0e5f8d
- libtool fix from Jens Petersen
0e5f8d
0e5f8d
* Sun Feb 02 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.16-7
0e5f8d
- sparc32 TLS
0e5f8d
0e5f8d
* Fri Jan 24 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.16-6
0e5f8d
- s390{,x} TLS and two other mainframe patches
0e5f8d
0e5f8d
* Fri Jan 17 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.16-5
0e5f8d
- fix IA-64 TLS IE in shared libs
0e5f8d
- .{preinit,init,fini}_array compat hack from Alexandre Oliva
0e5f8d
0e5f8d
* Thu Jan 16 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.16-4
0e5f8d
- IA-64 TLS fixes
0e5f8d
- fix .plt sh_entsize on Alpha
0e5f8d
- build with %%_smp_mflags
0e5f8d
0e5f8d
* Sat Nov 30 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.16-3
0e5f8d
- fix strip on TLS binaries and libraries
0e5f8d
0e5f8d
* Fri Nov 29 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.16-2
0e5f8d
- fix IA-64 ld bootstrap
0e5f8d
0e5f8d
* Thu Nov 28 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.16-1
0e5f8d
- update to 2.13.90.0.16
0e5f8d
- STT_TLS SHN_UNDEF fix
0e5f8d
0e5f8d
* Wed Nov 27 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.10-4
0e5f8d
- pad .rodata.cstNN sections at the end if they aren't sized to multiple
0e5f8d
  of sh_entsize
0e5f8d
- temporary patch to make .eh_frame and .gcc_except_table sections
0e5f8d
  readonly if possible (should be removed when AUTO_PLACE is implemented)
0e5f8d
- fix .PPC.EMB.apuinfo section flags
0e5f8d
0e5f8d
* Wed Oct 23 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.10-3
0e5f8d
- fix names and content of alpha non-alloced .rela.* sections (#76583)
0e5f8d
- delete unpackaged files from the buildroot
0e5f8d
0e5f8d
* Tue Oct 15 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.10-2
0e5f8d
- enable s390x resp. s390 emulation in linker too
0e5f8d
0e5f8d
* Mon Oct 14 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.10-1
0e5f8d
- update to 2.13.90.0.10
0e5f8d
- add a bi-arch patch for sparc/s390/x86_64
0e5f8d
- add --enable-64-bit-bfd on sparc, s390 and ppc
0e5f8d
0e5f8d
* Thu Oct 10 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.4-3
0e5f8d
- fix combreloc testcase
0e5f8d
0e5f8d
* Thu Oct 10 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.4-2
0e5f8d
- fix orphan .rel and .rela section placement with -z combreloc (Alan Modra)
0e5f8d
- skip incompatible linker scripts when searching for libraries
0e5f8d
0e5f8d
* Tue Oct  1 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.4-1
0e5f8d
- update to 2.13.90.0.4
0e5f8d
- x86-64 TLS support
0e5f8d
- some IA-32 TLS fixes
0e5f8d
- some backported patches from trunk
0e5f8d
- include opcodes, ld, gas and bfd l10n too
0e5f8d
0e5f8d
* Thu Sep 19 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.2-3
0e5f8d
- allow addends for IA-32 TLS @tpoff, @ntpoff and @dtpoff
0e5f8d
- clear memory at *r_offset of dynamic relocs on PPC
0e5f8d
- avoid ld crash if accessing non-local symbols through LE relocs
0e5f8d
- new IA-32 TLS relocs, bugfixes and testcases
0e5f8d
- use brl insn on IA-64 (Richard Henderson)
0e5f8d
- fix R_IA64_PCREL21{M,F} handling (Richard Henderson)
0e5f8d
- build in separate builddir, so that gasp tests don't fail
0e5f8d
- include localization
0e5f8d
0e5f8d
* Thu Aug  8 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.2-2
0e5f8d
- fix R_386_TPOFF32 addends (#70824)
0e5f8d
0e5f8d
* Sat Aug  3 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.2-1
0e5f8d
- update to 2.13.90.0.2
0e5f8d
  - fix ld TLS assertion failure (#70084)
0e5f8d
  - fix readelf --debug-dump= handling to match man page and --help
0e5f8d
    (#68997)
0e5f8d
- fix _GLOBAL_OFFSET_TABLE gas handling (#70241)
0e5f8d
0e5f8d
* Wed Jul 24 2002 Jakub Jelinek <jakub@redhat.com> 2.12.90.0.15-1
0e5f8d
- update to 2.12.90.0.15
0e5f8d
- TLS .tbss fix
0e5f8d
- don't use rpm %%configure macro, it is broken too often (#69366)
0e5f8d
0e5f8d
* Thu May 30 2002 Jakub Jelinek <jakub@redhat.com> 2.12.90.0.9-1
0e5f8d
- update to 2.12.90.0.9
0e5f8d
  - TLS support
0e5f8d
- remove gasp.info from %%post/%%preun (#65400)
0e5f8d
0e5f8d
* Mon Apr 29 2002 Jakub Jelinek <jakub@redhat.com> 2.12.90.0.7-1
0e5f8d
- update to 2.12.90.0.7
0e5f8d
- run make check
0e5f8d
0e5f8d
* Mon Apr 29 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-12
0e5f8d
- fix .hidden handling on SPARC (Richard Henderson)
0e5f8d
- don't crash when linking -shared non-pic code with SHF_MERGE
0e5f8d
- fix .eh_frame_hdr for DW_EH_PE_aligned
0e5f8d
- correctly adjust DW_EH_PE_pcrel encoded personalities in CIEs
0e5f8d
0e5f8d
* Fri Apr  5 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-11
0e5f8d
- don't emit dynamic R_SPARC_DISP* relocs against STV_HIDDEN symbols
0e5f8d
  into shared libraries
0e5f8d
0e5f8d
* Thu Mar 21 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-10
0e5f8d
- don't merge IA-64 unwind info sections together during ld -r
0e5f8d
0e5f8d
* Mon Mar 11 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-9
0e5f8d
- fix DATA_SEGMENT_ALIGN on ia64/alpha/sparc/sparc64
0e5f8d
0e5f8d
* Fri Mar  8 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-8
0e5f8d
- don't crash on SHN_UNDEF local dynsyms (Andrew MacLeod)
0e5f8d
0e5f8d
* Thu Mar  7 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-7
0e5f8d
- fix bfd configury bug (Alan Modra)
0e5f8d
0e5f8d
* Tue Mar  5 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-6
0e5f8d
- don't copy visibility when equating symbols
0e5f8d
- fix alpha .text/.data with .previous directive bug
0e5f8d
0e5f8d
* Tue Mar  5 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-5
0e5f8d
- fix SHF_MERGE crash with --gc-sections (#60369)
0e5f8d
- C++ symbol versioning patch
0e5f8d
0e5f8d
* Fri Feb 22 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-4
0e5f8d
- add DW_EH_PE_absptr -> DW_EH_PE_pcrel optimization for shared libs,
0e5f8d
  if DW_EH_PE_absptr cannot be converted that way, don't build the
0e5f8d
  .eh_frame_hdr search table
0e5f8d
0e5f8d
* Fri Feb 15 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-3
0e5f8d
- fix ld -N broken by last patch
0e5f8d
0e5f8d
* Tue Feb 12 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-2
0e5f8d
- trade one saved runtime page for data segment (=almost always not shared)
0e5f8d
  for up to one page of disk space where possible
0e5f8d
0e5f8d
* Fri Feb  8 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-1
0e5f8d
- update to 2.11.93.0.2
0e5f8d
- use %%{ix86} instead of i386 for -z combreloc default (#59086)
0e5f8d
0e5f8d
* Thu Jan 31 2002 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-10
0e5f8d
- don't create SHN_UNDEF STB_WEAK symbols unless there are any relocations
0e5f8d
  against them
0e5f8d
0e5f8d
* Wed Jan 30 2002 Bill Nottingham <notting@redhat.com> 2.11.92.0.12-9.1
0e5f8d
- rebuild (fix ia64 miscompilation)
0e5f8d
0e5f8d
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
0e5f8d
- automated rebuild
0e5f8d
0e5f8d
* Fri Dec 28 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-8
0e5f8d
- two further .eh_frame patch fixes
0e5f8d
0e5f8d
* Wed Dec 19 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-7
0e5f8d
- as ld is currently not able to shrink input sections to zero size
0e5f8d
  during discard_info, build a fake minimal CIE in that case
0e5f8d
- update elf-strtab patch to what was commited
0e5f8d
0e5f8d
* Mon Dec 17 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-6
0e5f8d
- one more .eh_frame patch fix
0e5f8d
- fix alpha .eh_frame handling
0e5f8d
- optimize elf-strtab finalize
0e5f8d
0e5f8d
* Sat Dec 15 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-5
0e5f8d
- yet another fix for the .eh_frame patch
0e5f8d
0e5f8d
* Fri Dec 14 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-4
0e5f8d
- Alan Modra's patch to avoid crash if there is no dynobj
0e5f8d
0e5f8d
* Thu Dec 13 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-3
0e5f8d
- H.J.'s patch to avoid crash if input files are not ELF
0e5f8d
- don't crash if a SHF_MERGE for some reason could not be merged
0e5f8d
- fix objcopy/strip to preserve SHF_MERGE sh_entsize
0e5f8d
- optimize .eh_frame sections, add PT_GNU_EH_FRAME support
0e5f8d
- support anonymous version tags in version script
0e5f8d
0e5f8d
* Tue Nov 27 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-2
0e5f8d
- fix IA-64 SHF_MERGE handling
0e5f8d
0e5f8d
* Tue Nov 27 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-1
0e5f8d
- update to 2.11.92.0.12
0e5f8d
  - optimize .dynstr and .shstrtab sections (#55524)
0e5f8d
  - fix ld.1 glitch (#55459)
0e5f8d
- turn relocs against SHF_MERGE local symbols with zero addend
0e5f8d
  into STT_SECTION + addend
0e5f8d
- remove man pages for programs not included (nlmconv, windres, dlltool;
0e5f8d
  #55456, #55461)
0e5f8d
- add BuildRequires for texinfo
0e5f8d
0e5f8d
* Thu Oct 25 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.7-2
0e5f8d
- duh, fix strings on bfd objects (#55084)
0e5f8d
0e5f8d
* Sat Oct 20 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.7-1
0e5f8d
- update to 2.11.92.0.7
0e5f8d
- remove .rel{,a}.dyn from output if it is empty
0e5f8d
0e5f8d
* Thu Oct 11 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.5-2
0e5f8d
- fix strings patch
0e5f8d
- use getc_unlocked in strings to speed it up by 50% on large files
0e5f8d
0e5f8d
* Wed Oct 10 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.5-1
0e5f8d
- update to 2.11.92.0.5
0e5f8d
  - binutils localization (#45148)
0e5f8d
  - fix typo in REPORT_BUGS_TO (#54325)
0e5f8d
- support files bigger than 2GB in strings (#54406)
0e5f8d
0e5f8d
* Wed Sep 26 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-12
0e5f8d
- on IA-64, don't mix R_IA64_IPLTLSB relocs with non-PLT relocs in
0e5f8d
  .rela.dyn section.
0e5f8d
0e5f8d
* Tue Sep 25 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-11
0e5f8d
- add iplt support for IA-64 (Richard Henderson)
0e5f8d
- switch to new section flags for SHF_MERGE and SHF_STRINGS, put
0e5f8d
  in compatibility code
0e5f8d
- "s" section flag for small data sections on IA-64 and Alpha
0e5f8d
  (Richard Henderson)
0e5f8d
- fix sparc64 .plt[32768+] handling
0e5f8d
- don't emit .rela.stab on sparc
0e5f8d
0e5f8d
* Mon Sep 10 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-10
0e5f8d
- fix SHF_MERGE on Sparc
0e5f8d
0e5f8d
* Fri Aug 31 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-9
0e5f8d
- on Alpha, copy *r_offset to R_ALPHA_RELATIVE's r_addend
0e5f8d
0e5f8d
* Thu Aug 30 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-8
0e5f8d
- on IA-64, put crtend{,S}.o's .IA_64.unwind section last in
0e5f8d
  .IA_64.unwind output section (for compatibility with 7.1 eh)
0e5f8d
0e5f8d
* Fri Aug 24 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-7
0e5f8d
- put RELATIVE relocs first, not last
0e5f8d
- enable -z combreloc by default on IA-{32,64}, Alpha, Sparc*
0e5f8d
0e5f8d
* Thu Aug 23 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-6
0e5f8d
- support for -z combreloc
0e5f8d
- remove .dynamic patch, -z combreloc patch does this better
0e5f8d
- set STT_FUNC default symbol sizes in .endp directive on IA-64
0e5f8d
0e5f8d
* Mon Jul 16 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-5
0e5f8d
- fix last patch (H.J.Lu)
0e5f8d
0e5f8d
* Fri Jul 13 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-4
0e5f8d
- fix placing of orphan sections
0e5f8d
0e5f8d
* Sat Jun 23 2001 Jakub Jelinek <jakub@redhat.com>
0e5f8d
- fix SHF_MERGE support on Alpha
0e5f8d
0e5f8d
* Fri Jun  8 2001 Jakub Jelinek <jakub@redhat.com>
0e5f8d
- 2.11.90.0.8
0e5f8d
  - some SHF_MERGE suport fixes
0e5f8d
- don't build with tooldir /usrusr instead of /usr (#40937)
0e5f8d
- reserve few .dynamic entries for prelinking
0e5f8d
0e5f8d
* Mon Apr 16 2001 Jakub Jelinek <jakub@redhat.com>
0e5f8d
- 2.11.90.0.5
0e5f8d
  - SHF_MERGE support
0e5f8d
0e5f8d
* Tue Apr  3 2001 Jakub Jelinek <jakub@redhat.com>
0e5f8d
- 2.11.90.0.4
0e5f8d
  - fix uleb128 support, so that CVS gcc bootstraps
0e5f8d
  - some ia64 fixes
0e5f8d
0e5f8d
* Mon Mar 19 2001 Jakub Jelinek <jakub@redhat.com>
0e5f8d
- add -Bgroup support from Ulrich Drepper
0e5f8d
0e5f8d
* Fri Mar  9 2001 Jakub Jelinek <jakub@redhat.com>
0e5f8d
- hack - add elf_i386_glibc21 emulation
0e5f8d
0e5f8d
* Fri Feb 16 2001 Jakub Jelinek <jakub@redhat.com>
0e5f8d
- 2.10.91.0.2
0e5f8d
0e5f8d
* Fri Feb  9 2001 Jakub Jelinek <jakub@redhat.com>
0e5f8d
- 2.10.1.0.7
0e5f8d
- remove ExcludeArch ia64
0e5f8d
- back out the -oformat, -omagic and -output change for now
0e5f8d
0e5f8d
* Fri Dec 15 2000 Jakub Jelinek <jakub@redhat.com>
0e5f8d
- Prereq /sbin/install-info
0e5f8d
0e5f8d
* Tue Nov 21 2000 Jakub Jelinek <jakub@redhat.com>
0e5f8d
- 2.10.1.0.2
0e5f8d
0e5f8d
* Tue Nov 21 2000 Jakub Jelinek <jakub@redhat.com>
0e5f8d
- add one more alpha patch
0e5f8d
0e5f8d
* Wed Nov 15 2000 Jakub Jelinek <jakub@redhat.com>
0e5f8d
- fix alpha visibility as problem
0e5f8d
- add support for Ultra-III
0e5f8d
0e5f8d
* Fri Sep 15 2000 Jakub Jelinek <jakub@redhat.com>
0e5f8d
- and one more alpha patch
0e5f8d
0e5f8d
* Fri Sep 15 2000 Jakub Jelinek <jakub@redhat.com>
0e5f8d
- two sparc patches
0e5f8d
0e5f8d
* Mon Jul 24 2000 Jakub Jelinek <jakub@redhat.com>
0e5f8d
- 2.10.0.18
0e5f8d
0e5f8d
* Mon Jul 10 2000 Jakub Jelinek <jakub@redhat.com>
0e5f8d
- 2.10.0.12
0e5f8d
0e5f8d
* Mon Jun 26 2000 Jakub Jelinek <jakub@redhat.com>
0e5f8d
- 2.10.0.9
0e5f8d
0e5f8d
* Thu Jun 15 2000 Jakub Jelinek <jakub@redhat.com>
0e5f8d
- fix ld -r
0e5f8d
0e5f8d
* Mon Jun  5 2000 Jakub Jelinek <jakub@redhat.com>
0e5f8d
- 2.9.5.0.46
0e5f8d
- use _mandir/_infodir/_lib
0e5f8d
0e5f8d
* Mon May  8 2000 Bernhard Rosenkraenzer <bero@redhat.com>
0e5f8d
- 2.9.5.0.41
0e5f8d
0e5f8d
* Wed Apr 12 2000 Bernhard Rosenkraenzer <bero@redhat.com>
0e5f8d
- 2.9.5.0.34
0e5f8d
0e5f8d
* Wed Mar 22 2000 Bernhard Rosenkraenzer <bero@redhat.com>
0e5f8d
- 2.9.5.0.31
0e5f8d
0e5f8d
* Fri Feb 04 2000 Cristian Gafton <gafton@redhat.com>
0e5f8d
- man pages are compressed
0e5f8d
- apply kingdon's patch from #5031
0e5f8d
0e5f8d
* Wed Jan 19 2000 Jeff Johnson <jbj@redhat.com>
0e5f8d
- Permit package to be built with a prefix other than /usr.
0e5f8d
0e5f8d
* Thu Jan 13 2000 Cristian Gafton <gafton@redhat.com>
0e5f8d
- add pacth from hjl to fix the versioning problems in ld
0e5f8d
0e5f8d
* Tue Jan 11 2000 Bernhard Rosenkraenzer <bero@redhat.com>
0e5f8d
- Add sparc patches from Jakub Jelinek <jakub@redhat.com>
0e5f8d
- Add URL:
0e5f8d
0e5f8d
* Tue Dec 14 1999 Bernhard Rosenkraenzer <bero@redhat.com>
0e5f8d
- 2.9.5.0.22
0e5f8d
0e5f8d
* Wed Nov 24 1999 Bernhard Rosenkraenzer <bero@redhat.com>
0e5f8d
- 2.9.5.0.19
0e5f8d
0e5f8d
* Sun Oct 24 1999 Bernhard Rosenkraenzer <bero@redhat.com>
0e5f8d
- 2.9.5.0.16
0e5f8d
0e5f8d
* Mon Sep 06 1999 Jakub Jelinek <jj@ultra.linux.cz>
0e5f8d
- make shared non-pic libraries work on sparc with glibc 2.1.
0e5f8d
0e5f8d
* Fri Aug 27 1999 Jim Kingdon
0e5f8d
- No source/spec changes, just rebuilding with egcs-1.1.2-18 because
0e5f8d
  the older egcs was miscompling gprof.
0e5f8d
0e5f8d
* Mon Apr 26 1999 Cristian Gafton <gafton@redhat.com>
0e5f8d
- back out very *stupid* sparc patch done by HJLu. People, keep out of
0e5f8d
  things you don't understand.
0e5f8d
- add alpha relax patch from rth
0e5f8d
0e5f8d
* Mon Apr 05 1999 Cristian Gafton <gafton@redhat.com>
0e5f8d
- version  2.9.1.0.23
0e5f8d
- patch to make texinfo documentation compile
0e5f8d
- auto rebuild in the new build environment (release 2)
0e5f8d
0e5f8d
* Tue Feb 23 1999 Cristian Gafton <gafton@redhat.com>
0e5f8d
- updated to 2.9.1.0.21
0e5f8d
- merged with UltraPenguin
0e5f8d
0e5f8d
* Mon Jan 04 1999 Cristian Gafton <gafton@redhat.com>
0e5f8d
- added ARM patch from philb
0e5f8d
- version 2.9.1.0.19a
0e5f8d
- added a patch to allow arm* arch to be identified as an ARM
0e5f8d
0e5f8d
* Thu Oct 01 1998 Cristian Gafton <gafton@redhat.com>
0e5f8d
- updated to 2.9.1.0.14.
0e5f8d
0e5f8d
* Sat Sep 19 1998 Jeff Johnson <jbj@redhat.com>
0e5f8d
- updated to 2.9.1.0.13.
0e5f8d
0e5f8d
* Wed Sep 09 1998 Cristian Gafton <gafton@redhat.com>
0e5f8d
- updated to 2.9.1.0.12
0e5f8d
0e5f8d
* Thu Jul  2 1998 Jeff Johnson <jbj@redhat.com>
0e5f8d
- updated to 2.9.1.0.7.
0e5f8d
0e5f8d
* Wed Jun 03 1998 Jeff Johnson <jbj@redhat.com>
0e5f8d
- updated to 2.9.1.0.6.
0e5f8d
0e5f8d
* Tue Jun 02 1998 Erik Troan <ewt@redhat.com>
0e5f8d
- added patch from rth to get right offsets for sections in relocateable
0e5f8d
  objects on sparc32
0e5f8d
0e5f8d
* Thu May 07 1998 Prospector System <bugs@redhat.com>
0e5f8d
- translations modified for de, fr, tr
0e5f8d
0e5f8d
* Tue May 05 1998 Cristian Gafton <gafton@redhat.com>
0e5f8d
- version 2.9.1.0.4 is out; even more, it is public !
0e5f8d
0e5f8d
* Tue May 05 1998 Jeff Johnson <jbj@redhat.com>
0e5f8d
- updated to 2.9.1.0.3.
0e5f8d
0e5f8d
* Mon Apr 20 1998 Cristian Gafton <gafton@redhat.com>
0e5f8d
- updated to 2.9.0.3
0e5f8d
0e5f8d
* Tue Apr 14 1998 Cristian Gafton <gafton@redhat.com>
0e5f8d
- upgraded to 2.9.0.2
0e5f8d
0e5f8d
* Sun Apr 05 1998 Cristian Gafton <gafton@redhat.com>
0e5f8d
- updated to 2.8.1.0.29 (HJ warned me that this thing is a moving target...
0e5f8d
  :-)
0e5f8d
- "fixed" the damn make install command so that all tools get installed
0e5f8d
0e5f8d
* Thu Apr 02 1998 Cristian Gafton <gafton@redhat.com>
0e5f8d
- upgraded again to 2.8.1.0.28 (at least on alpha now egcs will compile)
0e5f8d
- added info packages handling
0e5f8d
0e5f8d
* Tue Mar 10 1998 Cristian Gafton <gafton@redhat.com>
0e5f8d
- upgraded to 2.8.1.0.23
0e5f8d
0e5f8d
* Mon Mar 02 1998 Cristian Gafton <gafton@redhat.com>
0e5f8d
- updated to 2.8.1.0.15 (required to compile the newer glibc)
0e5f8d
- all patches are obsoleted now
0e5f8d
0e5f8d
* Wed Oct 22 1997 Erik Troan <ewt@redhat.com>
0e5f8d
- added 2.8.1.0.1 patch from hj
0e5f8d
- added patch for alpha palcode form rth