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