Blame SPECS/binutils.spec

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