f55871
# rpmbuild parameters:
f55871
# --define "binutils_target arm-linux-gnu" to create arm-linux-gnu-binutils.
be6651
# --with=bootstrap: Build with minimal dependencies.
be6651
# --with=debug: Build without optimizations and without splitting the debuginfo.
be6651
# --without=docs: Skip building documentation.
be6651
# --without=testsuite: Do not run the testsuite.  Default is to run it.
be6651
# --with=testsuite: Run the testsuite.  Default when --with=debug is not to run it.
f55871
214a23
%global _performance_build 1
214a23
f55871
%if 0%{!?binutils_target:1}
f55871
%define binutils_target %{_target_platform}
f55871
%define isnative 1
f55871
%define enable_shared 1
f55871
%else
f55871
%define cross %{binutils_target}-
f55871
%define isnative 0
f55871
%define enable_shared 0
f55871
%endif
f55871
be6651
# Provide a way to enable deterministic archives.
be6651
# But do not do this by default.
be6651
%define enable_deterministic_archives 0
be6651
# Enable support for GCC LTO compilation.
be6651
%define enable_lto 1
be6651
# Disable the default generation of compressed debug sections.
be6651
%define default_compress_debug 0
be6651
# Default to read-only-relocations (relro) in shared binaries.
be6651
%define default_relro 1
be6651
be6651
# Default: Not bootstrapping.
be6651
%bcond_with bootstrap
be6651
# Default: Not debug
be6651
%bcond_with debug
be6651
# Default: Always build documentation.
be6651
%bcond_without docs
be6651
# Default: Always run the testsuite.
be6651
%bcond_without testsuite
be6651
be6651
%if %{with bootstrap}
be6651
%undefine with_docs
be6651
%undefine with_testsuite
be6651
%endif
be6651
be6651
%if %{with debug}
be6651
%undefine with_testsuite
be6651
%endif
be6651
be6651
#---------------------------------------------------------------------------------
be6651
f55871
Summary: A GNU collection of binary utilities
f55871
Name: %{?cross}binutils%{?_with_debug:-debug}
be6651
Version: 2.27
be6651
# Note: The Release string *must* be different from that used by any of the
4910d4
# devtoolset binutils associated with this release.  That is why ".base"
4910d4
# has been appended here.  See BZ 1337617 for more details.
85859e
Release: 44.base%{?dist}.1
f55871
License: GPLv3+
f55871
Group: Development/Tools
f55871
URL: http://sources.redhat.com/binutils
f55871
be6651
# Note - the Linux Kernel binutils releases are too unstable and contain
be6651
# too many controversial patches so we stick with the official FSF version
be6651
# instead.
be6651
be6651
Source: http://ftp.gnu.org/gnu/binutils/binutils-%{version}.tar.bz2
f55871
Source2: binutils-2.19.50.0.1-output-format.sed
be6651
%if %{with docs}
be6651
# Strictly speaking this next file is not part of the binutils distribution.
be6651
# But the emacs info system expects it to be present on any system where
be6651
# emacs is installed, and old binutils distributions used to include it by
be6651
# mistake.  Since there is no suitable 'documentation files' component to
be6651
# current RHEL releases, it is included here, but to save time and complexity
be6651
# it is stored as a pre-built, compressed, info file.
be6651
# The upstream version of the original source file can be found here:
be6651
#   http://git.savannah.gnu.org/gitweb/?p=gnulib.git;a=blob_plain;f=doc/standards.texi;hb=HEAD
be6651
# For more information see: https://bugzilla.redhat.com/show_bug.cgi?id=1467390
be6651
Source3: standards.info.gz
be6651
%endif
be6651
be6651
#----------------------Patches----------------------------------------------------
4910d4
be6651
# Purpose:  Use /lib64 and /usr/lib64 instead of /lib and /usr/lib in the
be6651
#           default library search path of 64-bit targets.
be6651
# Lifetime: Permanent, but it should not be.  This is a bug in the libtool
be6651
#           sources used in both binutils and gcc, (specifically the
be6651
#           libtool.m4 file).  These are based on a version released in 2009
be6651
#           (2.2.6?) rather than the latest version.  (Definitely fixed in
be6651
#           libtool version 2.4.6).
f55871
Patch01: binutils-2.20.51.0.2-libtool-lib64.patch
be6651
be6651
# Purpose:  Prevents the generation of a spurious relocation in PPC64 PEI
be6651
#           executables.
be6651
# Lifetime: Redundant - should be deleted.
f55871
Patch02: binutils-2.20.51.0.10-ppc64-pie.patch
be6651
be6651
# Purpose:  Appends a RHEL or Fedora release string to the generic binutils
be6651
#           version string.
be6651
# Lifetime: Permanent.  This is a RHEL/Fedora specific patch.
be6651
Patch03: binutils-2.25-version.patch
be6651
be6651
# Purpose:  Use the "unsigned long long" type for pointers on hosts where
be6651
#           long is a 32-bit type but pointers are a 64-bit type.
be6651
# Lifetime: Redundant - should be deleted.
be6651
Patch04: binutils-2.25-set-long-long.patch
be6651
be6651
# Purpose:  Prevent a seg-fault when attempting to pad a section with a NULL
be6651
#           padding pointer.
be6651
# Lifetime: Fixed in 2.30.
be6651
Patch05: binutils-2.20.51.0.10-sec-merge-emit.patch
be6651
be6651
# Purpose:  Exports the demangle.h header file (associated with the libiberty
be6651
#           sources) with the binutils-devel rpm.
be6651
# Lifetime: Permanent.  This is a RHEL/Fedora specific patch.
be6651
Patch07: binutils-2.22.52.0.1-export-demangle.h.patch
be6651
be6651
# Purpose:  Disables the check in the BFD library's header file that config.h
be6651
#           has been included before the bfd.h header.  See BZ #845084 for
be6651
#           more details.
be6651
# Lifetime: Permanent - but it should not be.  The bfd.h header defines
be6651
#           various types that are dependent upon configuration options, so
be6651
#           the order of inclusion is important.
be6651
# FIXME:    It would be better if the packages using the BFD header were
be6651
#           fixed so that they do include the header files in the correct
be6651
#           order.  It may also be necessary to add a way for a package to
be6651
#           tell the bfd.h header that this check is not necessary.
be6651
Patch08: binutils-2.22.52.0.4-no-config-h-check.patch
be6651
be6651
# Purpose:  Enables RELRO by default for AArch64 and ARM targets.
be6651
#           See BZ 1203449.
be6651
# Lifetime: Fixed in FSF binutils 2.28.
be6651
Patch09: binutils-rh1203449.patch
be6651
be6651
# Purpose:  Stops the linker from issuing a warning message when it
be6651
#           encounters an FDE entry that duplicates another FDE entry.  These
be6651
#           can be generated by linker garbage collection eliminating a
be6651
#           section but not its FDE data.  See BZ 1300603 for more details.
be6651
# Lifetime: Permanent - for now.  Ideally the linker should be improved so
be6651
#           that these duplicate entries are eliminated at an earlier stage
be6651
#           of the link process.
be6651
Patch10: binutils-rh1300603.patch
be6651
be6651
# Purpose:  Fix linker testsuite failures for PPC64.
be6651
# Lifetime: Redundant.  These failures should be fixed in the upstream
be6651
#           sources now.
be6651
# FIXME:    Need to test that failures are fixed and then remove this patch.
be6651
Patch11: binutils-rh1312876.patch
be6651
be6651
# Purpose:  Add /usr/lib/debug to the list of directories searched for
be6651
#           separate debug info files.
be6651
# Lifetime: Fixed in 2.28.
be6651
Patch12: binutils-2.23.52.0.1-find-separate-debug-file.patch
be6651
be6651
# Purpose:  Speed up combining source code listings with disassembly output.
be6651
# Lifetime: Fixed in 2.28.
be6651
Patch14: binutils-2.25.1-objdump-speedup.patch
be6651
be6651
# Purpose:  Fix computation of sh_info field for .dynsym sections
be6651
# Lifetime: Fixed in 2.28.
be6651
Patch15: binutils-2.27-local-dynsym-count.patch
be6651
be6651
# Purpose:  Ensure that sections are placed in a monotonically increasing
be6651
#           order of file offset.
be6651
# Lifetime: Fixed in 2.28.
be6651
Patch16: binutils-2.27-monotonic-section-offsets.patch
be6651
be6651
# Purpose:  Skip PR14918 linker test for ARM native targets.
be6651
# Lifetime: Fixed in 2.30.
be6651
Patch17: binutils-2.27-skip-rp14918-test-for-arm.patch
be6651
be6651
# Purpose:  Fixes compile time errors building GOLD for the AArch64 and ARM
be6651
#           targets.
be6651
# Lifetime: Fixed in 2.28.
be6651
Patch18: binutils-2.27-gold.patch
be6651
be6651
# Purpose:  Improve objdump's disassembly of dynamic executables.
be6651
# Lifetime: Fixed in 2.28.
be6651
# FIXME:    Contains a bug.  See entry for
be6651
#           binutils-2.27-remove-dwarf2-minmax.patch
be6651
Patch19: binutils-2.27-objdump-improvements.patch
be6651
be6651
# Purpose:  Include the filename concerned in readelf error messages.
be6651
# Lifetime: Permanent.  This patch changes the format of readelf's output,
be6651
#           making it better (IMHO) but also potentially breaking tools that
be6651
#           depend upon readelf's current format.  Hence it remains a local
be6651
#           patch.
be6651
Patch20: binutils-2.27-filename-in-error-messages.patch
be6651
be6651
# Purpose:  Add support for the Power9 architecture.
be6651
# Lifetime: Fixed in 2.28.
be6651
Patch21: binutils-2.27-power9.patch
be6651
be6651
# Purpose:  And some Power9 bug fixes.
be6651
# Lifetime: Fixed in 2.28.
be6651
Patch22: binutils-2.27-power9.2.patch
be6651
be6651
# Purpose:  Fix up errors detected by Coverty.
be6651
# Lifetime: Fixed in 2.29.
be6651
Patch23: binutils-coverty-fixes.patch
be6651
be6651
# Purpose:  Do not create PLT entries for AARCH64 IFUNC symbols referenced in
be6651
#           debug sections.
be6651
# Lifetime: Permanent.
be6651
# FIXME:    Find related bug.  Decide on permanency.
be6651
Patch24: binutils-2.27-aarch64-ifunc.patch
be6651
be6651
# Purpose:  Skip ifunc exec tests for AArch64.
be6651
# Lifetime: Fixed in 2.28.
be6651
Patch25: binutils-2.27-skip-ld-aarch64-ifunc-exec-tests.patch
be6651
be6651
# Purpose:  Expect linker test PR19719 to fail for the S390.
be6651
# Lifetime: Permanent.
be6651
# FIXME:    Check to see if this test still fails, and delete patch when it
be6651
#           passes.
be6651
Patch26: binutils-2.27-s390-pr19719.patch
be6651
be6651
# Purpose:  Delete linker tests for PR 19784.
be6651
# Lifetime: Fixed in 2.28.
be6651
Patch27: binutils-2.27-remove-pr19784-test.patch
be6651
be6651
# Purpose:  Fix computing stub sizes on PowerPC.
be6651
# Lifetime: Fixed in 2.28.
be6651
Patch28: binutils-2.27-ppc-stubs.patch
be6651
be6651
# Purpose:  Fix s390 PLT entry allocation.
be6651
# Lifetime: Fixed in 2.29.
be6651
Patch29: binutils-2.27-s390-plt.patch
be6651
be6651
# Purpose:  Revert H.J/s PLT elision patch.
be6651
# Lifetime: Permanent.
be6651
# FIXME:    We should add a configure time option to enable/disable this
be6651
#           optimization.
be6651
Patch30: binutils-2.27-revert-PLT-elision.patch
be6651
be6651
# Purpose:  Add support for new DWARF5 tag: DW_AT_export_symbols.
be6651
# Lifetime: Fixed in 2.29.
be6651
Patch31: binutils-2.27-DW_AT_export_symbols.patch
be6651
be6651
# Purpose:  Fixes a bug in binutils-2.25.1-objdump-speedup.patch that
be6651
#           prevents address to function name lookup from working properly
be6651
#           in some circumstances.
be6651
# Lifetime: Retire when binutils-2.25.1-objdump-speedup.ptch is retired.
be6651
#           Ie when rebasing to 2.28.
be6651
Patch32: binutils-2.27-remove-dwarf2-minmax.patch
be6651
be6651
# Purpose:  Add support for the arch12 s390x ISA extensions.
be6651
# Lifetime: Fixed in 2.28.
be6651
Patch33: binutils-2.27-s390x-arch12.patch
be6651
be6651
# Purpose:  Fix various minor CVE bugs.
be6651
# Lifetime: Fixed in 2.28.
be6651
Patch34: binutils-2.27-cve-bugs.patch
be6651
be6651
# Purpose:  Add support for ARMv8.2a and ARMv8.3 ISA extensions.
be6651
# Lifetime: Fixewd in 2.29.
be6651
Patch35: binutils-2.27-ARMv8.2.patch
be6651
be6651
# Purpose:  Fix generation of COPY relocs on AArch64.
be6651
# Lifetime: Fixed in 2.29.
be6651
Patch36: binutils-2.27-aarch64-copy-relocs.patch
be6651
be6651
# Purpose:  Generate an error when attempting to link non-PIC s390 objects in
be6651
#           PIE mode.
be6651
# Lifetime: Fixed in 2.28.
be6651
Patch37: binutils-2.27-s390x-complain-missing-fPIC.patch
be6651
be6651
# Purpose:  Add support for creating an PT_S390_PGSTE segment in s390
be6651
#           binaries.
be6651
# Lifetime: Fixed in 2.29.
be6651
Patch38: binutils-2.27-s390-pgste-marker.patch
be6651
be6651
# Purpose:  Fix seg-faults when stripping s390x binaries.
be6651
# Lifetime: Fixed in 2.29.
be6651
Patch39: binutils-2.27-s390x-check-for-NULL-pointers.patch
be6651
be6651
# Purpose:  Add support for the LNIA, SCV and RFSCV instructions in Power9
be6651
# Lifetime: Fixed in 2.28.
be6651
Patch40: binutils-2.27-power9.3.patch
be6651
6439d5
# Purpose:  Fix a seg-fault in the PowerPC linker when discarding .plt
6439d5
#           sections when -pie is used and undefined weak symbols are
6439d5
#           present.  See PR 22431.
6439d5
# Lifetime: Fixed in 2.30.
be6651
Patch41: binutils-2.27-ppc64-discarded-plt-sections.patch
be6651
6cffa7
# Purpose:  Fix a seg-fault in the x86_64 linker when attempting to convert
6cffa7
#           relocations against the absolute section.
6cffa7
# Lifetime: Fixed in 2.30.
6cffa7
Patch42: binutils-x86_64-do-not-convert-abs-relocs.patch
6cffa7
6cffa7
# Purpose:  Add support for a "-z globalaudit" linker command line option.
6cffa7
# Lifetime: Fixed in 2.30.
6cffa7
Patch43: binutils-2.27-add-globalaudit-support.patch
6cffa7
6cffa7
# Purpose:  Stop strip from replacing unknown relocs with null relocs.  Make
6cffa7
#           it return an error status and not strip the file instead.
6cffa7
# Lifetime: Fixed in 2.31.
6cffa7
Patch44: binutils-strip-unknown-relocs.patch
6cffa7
3bc099
# Purpose:  Allow "lea foo@GOT, %reg" in PIC mode on the x86.
3bc099
# Lifetime: Fixed in 2.28
6cffa7
Patch45: binutils-x86-lea-addressing.patch
6cffa7
6cffa7
# Purpose:  Fix seg-fault parsing corrupt DWARF1 debug information.
6cffa7
# Lifetime: Fixed in 2.31
6cffa7
Patch46: binutils-CVE-2018-7568.patch
6cffa7
6cffa7
# Purpose:  Fix seg-fault parsing corrupt DWARF debug information.
6cffa7
# Lifetime: Fixed in 2.31
6cffa7
Patch47: binutils-CVE-2018-7569.patch
6cffa7
6cffa7
# Purpose:  Fix seg-fault parsing corrupt COFF files.
6cffa7
# Lifetime: Fixed in 2.31
6cffa7
Patch48: binutils-CVE-2018-7208.patch
6cffa7
6cffa7
# Purpose:  Fix seg-fault parsing corrupt ELF files.
6cffa7
# Lifetime: Fixed in 2.31
6cffa7
Patch49: binutils-CVE-2018-10535.patch
6cffa7
6cffa7
# Purpose:  Fix seg-fault parsing corrupt DWARF debug information.
6cffa7
# Lifetime: Fixed in 2.31
6cffa7
Patch50: binutils-CVE-2018-10373.patch
6cffa7
6cffa7
# Purpose:  Fix seg-fault parsing corrupt DWARF debug information.
6cffa7
# Lifetime: Fixed in 2.31
6cffa7
Patch51: binutils-CVE-2018-10372.patch
6cffa7
6cffa7
# Purpose:  Fix seg-fault parsing a corrupt PE format file.
6cffa7
# Lifetime: Fixed in 2.31
6cffa7
Patch52: binutils-CVE-2018-10534.patch
6cffa7
6cffa7
# Purpose:  Fix seg-fault parsing a corrupt AOUT format file.
6cffa7
# Lifetime: Fixed in 2.31
6cffa7
Patch53: binutils-CVE-2018-7642.patch
6cffa7
6cffa7
# Purpose:  Fix seg-fault parsing corrupt DWARF debug information.
6cffa7
# Lifetime: Fixed in 2.31
6cffa7
Patch54: binutils-CVE-2018-7643.patch
6cffa7
6cffa7
# Purpose:  Fix seg-fault parsing corrupt ELF files.
6cffa7
# Lifetime: Fixed in 2.31
6cffa7
Patch55: binutils-CVE-2018-8945.patch
6cffa7
43c6b8
# Purpose:  Stop strip from crashing whilst removing .comment sections.
43c6b8
# Lifetime: Fixed in 2.31
43c6b8
Patch56: binutils-strip-fix.patch
43c6b8
43c6b8
# Purpose:  Prevent resource exhaustion attacks on the libiberty name
43c6b8
#            demangling code.
43c6b8
# Lifetime: Fixed in 2.32
43c6b8
Patch57: binutils-libiberty-demangler.patch
43c6b8
43c6b8
# Purpose:  Add the .attach-to-group pseudo-op to the assembler.
43c6b8
# Lifetime: Permanent.
43c6b8
Patch58: binutils-attach-to-group.patch
43c6b8
43c6b8
# Purpose:  Stop the x86_64 linker from optimizing PLT entries.
43c6b8
# Lifetime: Permanent.
43c6b8
Patch59: binutils-x86_64-disable-PLT-elision.patch
43c6b8
43c6b8
# Purpose:  Fix a possible memory corruption due to an integer overflow
43c6b8
#           when running the binutils as 32-bit binaries.
43c6b8
# Lifetime: Fixed in 2.32
43c6b8
Patch60: binutils-CVE-2018-1000876.patch
6cffa7
f24fa5
# Purpose:  Stop the BFD library from complaining about files with multiple
f24fa5
#           relocations against the same section.  Allows examination of
f24fa5
#           special kernel modules.
f24fa5
# Lifetime: Fixed in 2.33
f24fa5
Patch61: binutils-multiple-relocs-for-same-section.patch
f24fa5
73f23b
# Purpose: Add a feature to the x86/64 assembler to create
73f23b
#           workarounds for the Intel Jcc Erratum.
73f23b
# Lifetime: Fixed in 2.34
73f23b
Patch62: binutils-x86-JCC-Erratum.patch
73f23b
3a14e4
# Purpose:  Allow the BFD library to handle the copying of files which
3a14e4
#            contain secondary reloc sections.
3a14e4
# Lifetime: Fixed in 2.35 
3a14e4
Patch63: binutils-copy-multiple-relocs.patch
3a14e4
85859e
# Purpose: Add options to control the display of multibyte characters.  CVE 2021-42574
85859e
# Lifetime: Fixed in 2.38 (maybe)
85859e
Patch64: binutils.unicode.patch
3bc099
be6651
# Purpose:  A *temporary* patch to disable the generation of
be6651
#           R_X86_64_GOTPCRELX and R_X86_64_REX_GETPCRELX relocations by the
be6651
#           x86_64 assembler and the generations of the R_386_GOT32X
be6651
#           relocation by the x86 assembler.  This is because these
be6651
#           relocations are unknown to the 2.25 version of the linker, and so
be6651
#           static libraries and object files built with the 2.27 assembler
be6651
#           (and without this patch) are incompatible.  Unfortunately we need
be6651
#           to maintain backwards compatibility to the 2.25 linker for the
be6651
#           RHEL 7 product.  See BZ 1506004 for more defails.
be6651
# Lifetime: Keep in RHEL 7, discard for RHEL 8.
be6651
Patch998: binutils-2.27-suppress-R_X86_64_GOTPCRELX.patch
be6651
be6651
# Purpose:  A *temporary* patch to disable checking for valid PowerPC64 TLBIE
be6651
#           instructions.  This allows the PPC kernel to be built.  See:
be6651
#           https://sourceware.org/ml/binutils/2015-05/msg00133.html
be6651
# Lifetime: Delete in NEXT release.
4910d4
Patch999: binutils-SUPPRESS-PPC-TLBIE-CHECK.patch
f55871
be6651
#---------------------------------------------------------------------------------
be6651
f55871
Provides: bundled(libiberty)
f55871
43c6b8
%define gold_arches %ix86 x86_64 %arm aarch64 %{power64} s390x
f55871
be6651
%if %{with bootstrap}
be6651
%define build_gold      no
be6651
%else
f55871
%ifarch %gold_arches
be6651
%define build_gold      both
f55871
%else
be6651
%define build_gold      no
be6651
%endif
f55871
%endif
f55871
be6651
%if %{with debug}
f55871
# Define this if you want to skip the strip step and preserve debug info.
f55871
# Useful for testing.
f55871
%define __debug_install_post : > %{_builddir}/%{?buildsubdir}/debugfiles.list
f55871
%define debug_package %{nil}
f55871
%endif
f55871
f55871
Buildroot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
be6651
be6651
BuildRequires: gcc
be6651
be6651
# Gold needs bison in order to build gold/yyscript.c.
be6651
# Bison needs m4.
be6651
%if "%{build_gold}" == "both"
be6651
BuildRequires: bison, m4, gcc-c++
be6651
%endif
be6651
be6651
%if %{without bootstrap}
be6651
BuildRequires: gettext, flex, zlib-devel
be6651
%endif
be6651
be6651
%if %{with docs}
be6651
BuildRequires: texinfo >= 4.0
f55871
# BZ 920545: We need pod2man in order to build the manual pages.
f55871
BuildRequires: /usr/bin/pod2man
be6651
Requires(post): /sbin/install-info
be6651
Requires(preun): /sbin/install-info
be6651
%endif
be6651
f55871
# Required for: ld-bootstrap/bootstrap.exp bootstrap with --static
f55871
# It should not be required for: ld-elf/elf.exp static {preinit,init,fini} array
be6651
%if %{with testsuite}
f55871
# relro_test.sh uses dc which is part of the bc rpm, hence its inclusion here.
be6651
BuildRequires: dejagnu, zlib-static, glibc-static, sharutils, bc
be6651
%if "%{build_gold}" == "both"
be6651
# The GOLD testsuite needs a static libc++
be6651
BuildRequires: libstdc++-static
f55871
%endif
f55871
%endif
f55871
be6651
Conflicts: gcc-c++ < 4.0.0
be6651
f55871
# The higher of these two numbers determines the default ld.
be6651
%{!?ld_bfd_priority: %global ld_bfd_priority    50}
be6651
%{!?ld_gold_priority:%global ld_gold_priority   30}
f55871
f55871
%if "%{build_gold}" == "both"
f55871
Requires(post): coreutils
f55871
Requires(post): %{_sbindir}/alternatives
f55871
Requires(preun): %{_sbindir}/alternatives
f55871
%endif
f55871
f55871
# On ARM EABI systems, we do want -gnueabi to be part of the
f55871
# target triple.
f55871
%ifnarch %{arm}
f55871
%define _gnu %{nil}
f55871
%endif
f55871
be6651
#---------------------------------------------------------------------------------
be6651
f55871
%description
f55871
Binutils is a collection of binary utilities, including ar (for
f55871
creating, modifying and extracting from archives), as (a family of GNU
f55871
assemblers), gprof (for displaying call graph profile data), ld (the
f55871
GNU linker), nm (for listing symbols from object files), objcopy (for
f55871
copying and translating object files), objdump (for displaying
f55871
information from object files), ranlib (for generating an index for
f55871
the contents of an archive), readelf (for displaying detailed
f55871
information about binary files), size (for listing the section sizes
f55871
of an object or archive file), strings (for listing printable strings
f55871
from files), strip (for discarding symbols), and addr2line (for
f55871
converting addresses to file and line).
f55871
be6651
#---------------------------------------------------------------------------------
be6651
f55871
%package devel
f55871
Summary: BFD and opcodes static and dynamic libraries and header files
f55871
Group: System Environment/Libraries
f55871
Provides: binutils-static = %{version}-%{release}
be6651
%if %{with docs}
f55871
Requires(post): /sbin/install-info
f55871
Requires(preun): /sbin/install-info
be6651
%endif
f55871
Requires: zlib-devel
f55871
Requires: binutils = %{version}-%{release}
be6651
Requires: coreutils
f55871
f55871
%description devel
f55871
This package contains BFD and opcodes static and dynamic libraries.
f55871
f55871
The dynamic libraries are in this package, rather than a seperate
f55871
base package because they are actually linker scripts that force
f55871
the use of the static libraries.  This is because the API of the
f55871
BFD library is too unstable to be used dynamically.
f55871
f55871
The static libraries are here because they are now needed by the
f55871
dynamic libraries.
f55871
f55871
Developers starting new projects are strongly encouraged to consider
f55871
using libelf instead of BFD.
f55871
be6651
#---------------------------------------------------------------------------------
be6651
f55871
%prep
f55871
%setup -q -n binutils-%{version}
be6651
%patch01 -p0
be6651
%patch02 -p0
be6651
%patch03 -p1
be6651
%patch04 -p1
be6651
%patch05 -p1
be6651
%patch07 -p1
be6651
%patch08 -p0
be6651
%patch09 -p0
be6651
%patch10 -p1
be6651
%patch11 -p1
4910d4
%patch12 -p1
be6651
4910d4
%patch14 -p1
4910d4
%patch15 -p1
4910d4
%patch16 -p1
4910d4
%patch17 -p1
be6651
%patch18 -p0
4910d4
%patch19 -p1
4910d4
%patch20 -p1
4910d4
%patch21 -p1
4910d4
%patch22 -p1
4910d4
%patch23 -p1
4910d4
%patch24 -p1
4910d4
%patch25 -p1
4910d4
%patch26 -p1
be6651
%patch27 -p1
d9d3dc
%patch28 -p1
d9d3dc
%patch29 -p1
d9d3dc
%patch30 -p1
d9d3dc
%patch31 -p1
ce7c03
%patch32 -p1
6439d5
%patch33 -p1
6439d5
%patch34 -p1
be6651
%patch35 -p1
be6651
%patch36 -p1
be6651
%patch37 -p1
be6651
%patch38 -p1
be6651
%patch39 -p1
be6651
%patch40 -p1
be6651
%patch41 -p1
3bc099
%patch42 -p1
6cffa7
%patch43 -p1
6cffa7
%patch44 -p1
6cffa7
%patch45 -p1
6cffa7
%patch46 -p1
6cffa7
%patch47 -p1
6cffa7
%patch48 -p1
6cffa7
%patch49 -p1
6cffa7
%patch50 -p1
6cffa7
%patch51 -p1
6cffa7
%patch52 -p1
6cffa7
%patch53 -p1
6cffa7
%patch54 -p1
6cffa7
%patch55 -p1
43c6b8
%patch56 -p1
43c6b8
%patch57 -p1
43c6b8
%patch58 -p1
43c6b8
%patch59 -p1
43c6b8
%patch60 -p1
f24fa5
%patch61 -p1
73f23b
%patch62 -p1
3a14e4
%patch63 -p1
85859e
%patch64 -p1
be6651
be6651
# TEMPORARY patches.
be6651
%patch998 -p1
4910d4
%patch999 -p1
4910d4
be6651
# We cannot run autotools as there is an exact requirement of autoconf-2.59.
be6651
be6651
# On ppc64 and aarch64, we might use 64KiB pages
be6651
sed -i -e '/#define.*ELF_COMMONPAGESIZE/s/0x1000$/0x10000/' bfd/elf*ppc.c
be6651
sed -i -e '/#define.*ELF_COMMONPAGESIZE/s/0x1000$/0x10000/' bfd/elf*aarch64.c
be6651
sed -i -e '/common_pagesize/s/4 /64 /' gold/powerpc.cc
be6651
sed -i -e '/pagesize/s/0x1000,/0x10000,/' gold/aarch64.cc
be6651
# LTP sucks
be6651
perl -pi -e 's/i\[3-7\]86/i[34567]86/g' */conf*
be6651
sed -i -e 's/%''{release}/%{release}/g' bfd/Makefile{.am,.in}
be6651
sed -i -e '/^libopcodes_la_\(DEPENDENCIES\|LIBADD\)/s,$, ../bfd/libbfd.la,' opcodes/Makefile.{am,in}
be6651
# Build libbfd.so and libopcodes.so with -Bsymbolic-functions if possible.
be6651
if gcc %{optflags} -v --help 2>&1 | grep -q -- -Bsymbolic-functions; then
be6651
sed -i -e 's/^libbfd_la_LDFLAGS = /&-Wl,-Bsymbolic-functions /' bfd/Makefile.{am,in}
be6651
sed -i -e 's/^libopcodes_la_LDFLAGS = /&-Wl,-Bsymbolic-functions /' opcodes/Makefile.{am,in}
be6651
fi
be6651
# $PACKAGE is used for the gettext catalog name.
be6651
sed -i -e 's/^ PACKAGE=/ PACKAGE=%{?cross}/' */configure
be6651
# Undo the name change to run the testsuite.
be6651
for tool in binutils gas ld
be6651
do
be6651
  sed -i -e "2aDEJATOOL = $tool" $tool/Makefile.am
be6651
  sed -i -e "s/^DEJATOOL = .*/DEJATOOL = $tool/" $tool/Makefile.in
be6651
done
be6651
touch */configure
be6651
# Touch the .info files so that they are newer then the .texi files and
be6651
# hence do not need to be rebuilt.  This eliminates the need for makeinfo.
be6651
# The -print is there just to confirm that the command is working.
be6651
%if %{without docs}
be6651
  find . -name *.info -print -exec touch {} \;
be6651
%endif
881b8e
881b8e
%ifarch %{power64} ppc64le
f55871
%define _target_platform %{_arch}-%{_vendor}-%{_host_os}
f55871
%endif
f55871
be6651
#---------------------------------------------------------------------------------
be6651
f55871
%build
f55871
echo target is %{binutils_target}
f55871
export CFLAGS="$RPM_OPT_FLAGS"
be6651
f55871
CARGS=
f55871
f55871
case %{binutils_target} in i?86*|sparc*|ppc*|s390*|sh*|arm*|aarch64*)
f55871
  CARGS="$CARGS --enable-64-bit-bfd"
f55871
  ;;
f55871
esac
f55871
f55871
case %{binutils_target} in ia64*)
f55871
  CARGS="$CARGS --enable-targets=i386-linux"
f55871
  ;;
f55871
esac
f55871
f55871
case %{binutils_target} in ppc*|ppc64*)
f55871
  CARGS="$CARGS --enable-targets=spu"
f55871
  ;;
f55871
esac
f55871
43c6b8
case %{binutils_target} in ppc64-*)
43c6b8
  CARGS="$CARGS --enable-targets=powerpc64le-linux"
43c6b8
  ;;
43c6b8
esac
43c6b8
be6651
case %{binutils_target} in ppc64le*)
43c6b8
  CARGS="$CARGS --enable-targets=powerpc-linux"
be6651
  ;;
881b8e
esac
881b8e
be6651
%if %{default_relro}
be6651
  CARGS="$CARGS --enable-relro=yes"
be6651
%else
be6651
  CARGS="$CARGS --enable-relro=no"
be6651
%endif
be6651
f55871
%if 0%{?_with_debug:1}
be6651
CFLAGS="$CFLAGS -O0 -ggdb2 -Wno-error -D_FORTIFY_SOURCE=0"
f55871
%define enable_shared 0
f55871
%endif
f55871
f55871
# We could optimize the cross builds size by --enable-shared but the produced
f55871
# binaries may be less convenient in the embedded environment.
f55871
%configure \
be6651
  --quiet \
f55871
  --build=%{_target_platform} --host=%{_target_platform} \
f55871
  --target=%{binutils_target} \
f55871
%ifarch %gold_arches
f55871
%if "%{build_gold}" == "both"
f55871
  --enable-gold=default --enable-ld \
f55871
%else
f55871
  --enable-gold \
f55871
%endif
f55871
%endif
be6651
%if %{isnative}
be6651
  --with-sysroot=/ \
be6651
%else
f55871
  --enable-targets=%{_host} \
f55871
  --with-sysroot=%{_prefix}/%{binutils_target}/sys-root \
f55871
  --program-prefix=%{cross} \
f55871
%endif
f55871
%if %{enable_shared}
f55871
  --enable-shared \
f55871
%else
f55871
  --disable-shared \
f55871
%endif
be6651
%if %{enable_deterministic_archives}
be6651
  --enable-deterministic-archives \
be6651
%else
be6651
  --enable-deterministic-archives=no \
be6651
%endif
be6651
%if %{enable_lto}
be6651
  --enable-lto \
be6651
%endif
be6651
%if %{default_compress_debug}
be6651
  --enable-compressed-debug-sections=all \
be6651
%else
be6651
  --enable-compressed-debug-sections=none \
be6651
%endif
f55871
  $CARGS \
f55871
  --enable-plugins \
f55871
  --with-bugurl=http://bugzilla.redhat.com/bugzilla/
be6651
be6651
%if %{with docs}
f55871
make %{_smp_mflags} tooldir=%{_prefix} all
f55871
make %{_smp_mflags} tooldir=%{_prefix} info
be6651
%else
be6651
make %{_smp_mflags} tooldir=%{_prefix} MAKEINFO=true all
be6651
%endif
f55871
f55871
# Do not use %%check as it is run after %%install where libbfd.so is rebuild
f55871
# with -fvisibility=hidden no longer being usable in its shared form.
be6651
%if %{without testsuite}
f55871
echo ====================TESTSUITE DISABLED=========================
f55871
%else
f55871
make -k check < /dev/null || :
f55871
echo ====================TESTING=========================
f55871
cat {gas/testsuite/gas,ld/ld,binutils/binutils}.sum
f55871
echo ====================TESTING END=====================
f55871
for file in {gas/testsuite/gas,ld/ld,binutils/binutils}.{sum,log}
f55871
do
f55871
  ln $file binutils-%{_target_platform}-$(basename $file) || :
f55871
done
f55871
tar cjf binutils-%{_target_platform}.tar.bz2 binutils-%{_target_platform}-*.{sum,log}
f55871
uuencode binutils-%{_target_platform}.tar.bz2 binutils-%{_target_platform}.tar.bz2
f55871
rm -f binutils-%{_target_platform}.tar.bz2 binutils-%{_target_platform}-*.{sum,log}
f55871
%endif
f55871
be6651
#---------------------------------------------------------------------------------
be6651
f55871
%install
f55871
rm -rf %{buildroot}
be6651
%if %{with docs}
f55871
make install DESTDIR=%{buildroot}
be6651
%else
be6651
make install DESTDIR=%{buildroot} MAKEINFO=true
be6651
%endif
be6651
f55871
%if %{isnative}
be6651
%if %{with docs}
f55871
make prefix=%{buildroot}%{_prefix} infodir=%{buildroot}%{_infodir} install-info
be6651
cp %{SOURCE3} %{buildroot}%{_infodir}
be6651
%endif
f55871
f55871
# Rebuild libiberty.a with -fPIC.
f55871
# Future: Remove it together with its header file, projects should bundle it.
f55871
make -C libiberty clean
f55871
make CFLAGS="-g -fPIC $RPM_OPT_FLAGS" -C libiberty
f55871
f55871
# Rebuild libbfd.a with -fPIC.
f55871
# Without the hidden visibility the 3rd party shared libraries would export
f55871
# the bfd non-stable ABI.
f55871
make -C bfd clean
f55871
make CFLAGS="-g -fPIC $RPM_OPT_FLAGS -fvisibility=hidden" -C bfd
f55871
f55871
# Rebuild libopcodes.a with -fPIC.
f55871
make -C opcodes clean
f55871
make CFLAGS="-g -fPIC $RPM_OPT_FLAGS" -C opcodes
f55871
f55871
install -m 644 bfd/libbfd.a %{buildroot}%{_libdir}
f55871
install -m 644 libiberty/libiberty.a %{buildroot}%{_libdir}
f55871
install -m 644 include/libiberty.h %{buildroot}%{_prefix}/include
f55871
install -m 644 opcodes/libopcodes.a %{buildroot}%{_libdir}
f55871
# Remove Windows/Novell only man pages
d570a8
rm -f %{buildroot}%{_mandir}/man1/{dlltool,nlmconv,windres,windmc}*
be6651
%if %{without docs}
be6651
rm -f %{buildroot}%{_mandir}/man1/{addr2line,ar,as,c++filt,elfedit,gprof,ld,nm,objcopy,objdump,ranlib,readelf,size,strings,strip}*
be6651
rm -f %{buildroot}%{_infodir}/{as,bfd,binutils,gprof,ld}*
be6651
%endif
f55871
f55871
%if %{enable_shared}
f55871
chmod +x %{buildroot}%{_libdir}/lib*.so*
be6651
%endif # isnative
f55871
f55871
# Prevent programs from linking against libbfd and libopcodes
f55871
# dynamically, as they are change far too often.
f55871
rm -f %{buildroot}%{_libdir}/lib{bfd,opcodes}.so
f55871
f55871
# Remove libtool files, which reference the .so libs
f55871
rm -f %{buildroot}%{_libdir}/lib{bfd,opcodes}.la
f55871
f55871
# Sanity check --enable-64-bit-bfd really works.
f55871
grep '^#define BFD_ARCH_SIZE 64$' %{buildroot}%{_prefix}/include/bfd.h
f55871
# Fix multilib conflicts of generated values by __WORDSIZE-based expressions.
f55871
%ifarch %{ix86} x86_64 ppc %{power64} s390 s390x sh3 sh4 sparc sparc64 arm
f55871
sed -i -e '/^#include "ansidecl.h"/{p;s~^.*$~#include <bits/wordsize.h>~;}' \
f55871
    -e 's/^#define BFD_DEFAULT_TARGET_SIZE \(32\|64\) *$/#define BFD_DEFAULT_TARGET_SIZE __WORDSIZE/' \
f55871
    -e 's/^#define BFD_HOST_64BIT_LONG [01] *$/#define BFD_HOST_64BIT_LONG (__WORDSIZE == 64)/' \
f55871
    -e 's/^#define BFD_HOST_64_BIT \(long \)\?long *$/#if __WORDSIZE == 32\
f55871
#define BFD_HOST_64_BIT long long\
f55871
#else\
f55871
#define BFD_HOST_64_BIT long\
f55871
#endif/' \
f55871
    -e 's/^#define BFD_HOST_U_64_BIT unsigned \(long \)\?long *$/#define BFD_HOST_U_64_BIT unsigned BFD_HOST_64_BIT/' \
f55871
    %{buildroot}%{_prefix}/include/bfd.h
f55871
%endif
f55871
touch -r bfd/bfd-in2.h %{buildroot}%{_prefix}/include/bfd.h
f55871
f55871
# Generate .so linker scripts for dependencies; imported from glibc/Makerules:
f55871
f55871
# This fragment of linker script gives the OUTPUT_FORMAT statement
f55871
# for the configuration we are building.
f55871
OUTPUT_FORMAT="\
f55871
/* Ensure this .so library will not be used by a link for a different format
f55871
   on a multi-architecture system.  */
f55871
$(gcc $CFLAGS $LDFLAGS -shared -x c /dev/null -o /dev/null -Wl,--verbose -v 2>&1 | sed -n -f "%{SOURCE2}")"
f55871
f55871
tee %{buildroot}%{_libdir}/libbfd.so <
f55871
/* GNU ld script */
f55871
f55871
$OUTPUT_FORMAT
f55871
f55871
/* The libz dependency is unexpected by legacy build scripts.  */
f55871
/* The libdl dependency is for plugin support.  (BZ 889134)  */
f55871
INPUT ( %{_libdir}/libbfd.a -liberty -lz -ldl )
f55871
EOH
f55871
f55871
tee %{buildroot}%{_libdir}/libopcodes.so <
f55871
/* GNU ld script */
f55871
f55871
$OUTPUT_FORMAT
f55871
f55871
INPUT ( %{_libdir}/libopcodes.a -lbfd )
f55871
EOH
f55871
be6651
%else # !isnative
f55871
# For cross-binutils we drop the documentation.
f55871
rm -rf %{buildroot}%{_infodir}
f55871
# We keep these as one can have native + cross binutils of different versions.
be6651
#rm -rf {buildroot}{_prefix}/share/locale
be6651
#rm -rf {buildroot}{_mandir}
f55871
rm -rf %{buildroot}%{_libdir}/libiberty.a
be6651
%endif # !isnative
f55871
f55871
# This one comes from gcc
f55871
rm -f %{buildroot}%{_infodir}/dir
f55871
rm -rf %{buildroot}%{_prefix}/%{binutils_target}
f55871
f55871
%find_lang %{?cross}binutils
f55871
%find_lang %{?cross}opcodes
f55871
%find_lang %{?cross}bfd
f55871
%find_lang %{?cross}gas
f55871
%find_lang %{?cross}gprof
f55871
cat %{?cross}opcodes.lang >> %{?cross}binutils.lang
f55871
cat %{?cross}bfd.lang >> %{?cross}binutils.lang
f55871
cat %{?cross}gas.lang >> %{?cross}binutils.lang
f55871
cat %{?cross}gprof.lang >> %{?cross}binutils.lang
f55871
f55871
if [ -x ld/ld-new ]; then
f55871
  %find_lang %{?cross}ld
f55871
  cat %{?cross}ld.lang >> %{?cross}binutils.lang
f55871
fi
f55871
if [ -x gold/ld-new ]; then
f55871
  %find_lang %{?cross}gold
f55871
  cat %{?cross}gold.lang >> %{?cross}binutils.lang
f55871
fi
f55871
be6651
#---------------------------------------------------------------------------------
be6651
f55871
%clean
f55871
rm -rf %{buildroot}
f55871
be6651
#---------------------------------------------------------------------------------
be6651
f55871
%post
f55871
%if "%{build_gold}" == "both"
f55871
%__rm -f %{_bindir}/%{?cross}ld
f55871
%{_sbindir}/alternatives --install %{_bindir}/%{?cross}ld %{?cross}ld \
f55871
  %{_bindir}/%{?cross}ld.bfd %{ld_bfd_priority}
f55871
%{_sbindir}/alternatives --install %{_bindir}/%{?cross}ld %{?cross}ld \
f55871
  %{_bindir}/%{?cross}ld.gold %{ld_gold_priority}
be6651
%{_sbindir}/alternatives --auto %{?cross}ld
be6651
%endif # both ld.gold and ld.bfd
be6651
f55871
%if %{isnative}
f55871
/sbin/ldconfig
be6651
be6651
%if %{with docs}
f55871
  /sbin/install-info --info-dir=%{_infodir} %{_infodir}/as.info.gz
f55871
  /sbin/install-info --info-dir=%{_infodir} %{_infodir}/binutils.info.gz
f55871
  /sbin/install-info --info-dir=%{_infodir} %{_infodir}/gprof.info.gz
f55871
  /sbin/install-info --info-dir=%{_infodir} %{_infodir}/ld.info.gz
be6651
  /sbin/install-info --info-dir=%{_infodir} %{_infodir}/standards.info.gz
be6651
%endif # with docs
be6651
%endif # isnative
be6651
f55871
exit 0
f55871
be6651
#---------------------------------------------------------------------------------
be6651
f55871
%preun
f55871
%if "%{build_gold}" == "both"
f55871
if [ $1 = 0 ]; then
f55871
  %{_sbindir}/alternatives --remove %{?cross}ld %{_bindir}/%{?cross}ld.bfd
f55871
  %{_sbindir}/alternatives --remove %{?cross}ld %{_bindir}/%{?cross}ld.gold
f55871
fi
be6651
%endif # both ld.gold and ld.bfd
be6651
f55871
%if %{isnative}
f55871
if [ $1 = 0 ]; then
f55871
  if [ -e %{_infodir}/binutils.info.gz ]
f55871
  then
f55871
    /sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/as.info.gz
f55871
    /sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/binutils.info.gz
f55871
    /sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/gprof.info.gz
f55871
    /sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/ld.info.gz
f55871
  fi
be6651
  if [ -e %{_infodir}/standards.info.gz ]
be6651
  then
be6651
    /sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/standards.info.gz
be6651
  fi
f55871
fi
be6651
%endif # isnative
be6651
f55871
exit 0
f55871
be6651
#---------------------------------------------------------------------------------
be6651
f55871
%if %{isnative}
be6651
%postun
be6651
/sbin/ldconfig
be6651
be6651
  if [ -e %{_infodir}/binutils.info.gz ]
be6651
  then
be6651
    /sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/as.info.gz
be6651
    /sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/binutils.info.gz
be6651
    /sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/gprof.info.gz
be6651
    /sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/ld.info.gz
be6651
  fi
be6651
  if [ -e %{_infodir}/standards.info.gz ]
be6651
  then
be6651
    /sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/standards.info.gz
be6651
  fi
be6651
%endif # isnative
be6651
be6651
#---------------------------------------------------------------------------------
f55871
f55871
%files -f %{?cross}binutils.lang
f55871
%defattr(-,root,root,-)
be6651
%license COPYING COPYING3 COPYING3.LIB COPYING.LIB
f55871
%doc README
f55871
%{_bindir}/%{?cross}[!l]*
be6651
f55871
%if "%{build_gold}" == "both"
f55871
%{_bindir}/%{?cross}ld.*
f55871
%ghost %{_bindir}/%{?cross}ld
f55871
%else
f55871
%{_bindir}/%{?cross}ld*
be6651
%endif # both ld.gold and ld.bfd
be6651
be6651
%if %{with docs}
f55871
%{_mandir}/man1/*
be6651
%{_infodir}/as.info.gz
be6651
%{_infodir}/binutils.info.gz
be6651
%{_infodir}/gprof.info.gz
be6651
%{_infodir}/ld.info.gz
be6651
%{_infodir}/standards.info.gz
be6651
%endif # with docs
be6651
f55871
%if %{enable_shared}
f55871
%{_libdir}/lib*.so
f55871
%exclude %{_libdir}/libbfd.so
f55871
%exclude %{_libdir}/libopcodes.so
be6651
%endif # enable_shared
f55871
f55871
%if %{isnative}
be6651
be6651
%if %{with docs}
f55871
%{_infodir}/[^b]*info*
f55871
%{_infodir}/binutils*info*
be6651
%endif
f55871
f55871
%files devel
f55871
%defattr(-,root,root,-)
f55871
%{_prefix}/include/*
f55871
%{_libdir}/lib*.a
f55871
%{_libdir}/libbfd.so
f55871
%{_libdir}/libopcodes.so
be6651
be6651
%if %{with docs}
f55871
%{_infodir}/bfd*info*
be6651
%endif # with docs
f55871
be6651
%endif # isnative
f55871
be6651
#---------------------------------------------------------------------------------
f55871
%changelog
85859e
* Fri Oct 22 2021 Nick Clifton  <nickc@redhat.com> - 2.27-44.base.1
85859e
- Add ability to control the display of unicode characters.  (#2009168)
85859e
438a45
* Thu Feb 13 2020 Nick Clifton  <nickc@redhat.com> 2.27-44.base
438a45
- Allow the BFD library to handle the copying of files which contain secondary reloc sections.  (#1785294)
9a31c4
- Implement assembler workaround for Intel JCC microcode bug.  (#1778892)
73f23b
9a31c4
* Tue Sep 10 2019 Nick Clifton  <nickc@redhat.com> 2.27-42.base
9a31c4
- Stop the BFD library from complaining about sections with multiple sets of relocations.  (#1749085)
f24fa5
43c6b8
* Mon Apr 15 2019 Nick Clifton  <nickc@redhat.com> 2.27-41.base
43c6b8
- Fix up some linker tests that fail because of the R_x86_64_GOTPCRELX patch.  (#1699745)
43c6b8
43c6b8
* Mon Jan 28 2019 Nick Clifton  <nickc@redhat.com> 2.27-40.base
43c6b8
- Enable gold for PowerPC and s390x.  (#1670014)
43c6b8
43c6b8
* Mon Jan 14 2019 Nick Clifton  <nickc@redhat.com> 2.27-39.base
43c6b8
- Fix a potential illegal memory access triggered by an integer overflow.  (#1665884)
43c6b8
43c6b8
* Tue Jan 08 2019 Nick Clifton  <nickc@redhat.com> 2.27-38.base
43c6b8
- Disable optimizations of x06_64 PLT entries.  (#1624779)
43c6b8
43c6b8
* Tue Jan 08 2019 Nick Clifton  <nickc@redhat.com> 2.27-37.base
43c6b8
- Add the .attach-to-group pseudo-op to the assembler.  (#1652587)
43c6b8
43c6b8
* Tue Jan 08 2019 Nick Clifton  <nickc@redhat.com> 2.27-36.base
43c6b8
- Prevent resource exhaustion attacks on libiberty's name demangling code.  (#1598561)
43c6b8
43c6b8
* Tue Jan 08 2019 Nick Clifton  <nickc@redhat.com> 2.27-35.base
43c6b8
- Stop strip crashing when removing .comment sections.  (#1644632)
43c6b8
6cffa7
* Wed May 30 2018 Nick Clifton  <nickc@redhat.com> 2.27-34.base
6cffa7
- Fix seg-fault parsing corrupt AOUT format files.  (#1579799)
6cffa7
- Fix seg-fault parsing corrupt DWARF2 debug information.  (#1579802)
6cffa7
- Fix seg-fault parsing corrupt ELF format files.  (#1579801)
6cffa7
6cffa7
* Thu May 17 2018 Nick Clifton  <nickc@redhat.com> 2.27-33.base
6cffa7
- Fix seg-fault parsing ELF files.  (#1578979)
6cffa7
- Fix seg-fault parsing DWARF-2 information.  (#1579065)
6cffa7
- Fix seg-fault parsing DWARF-2 information.  (#1579051)
6cffa7
- Fix seg-fault parsing a PE format file.  (#1579019)
6cffa7
6cffa7
* Wed May 16 2018 Nick Clifton  <nickc@redhat.com> 2.27-32.base
6cffa7
- Fix seg-fault parsing DWARF-1 information.  (#1569580)
6cffa7
- Fix seg-fault parsing DWARF-2 information.  (#1569891)
6cffa7
- Fix seg-fault parsing COFF files.  (#1571917)
6cffa7
6cffa7
* Wed May 02 2018 Nick Clifton  <nickc@redhat.com> 2.27-31.base
6cffa7
- Allow "lea foo@GOT, %reg" in PIC mode on the x86.  (#1573872)
6cffa7
6cffa7
* Fri Apr 20 2018 Nick Clifton  <nickc@redhat.com> 2.27-30.base
6cffa7
- Version bump in order to allow a rebuild, in order to work around a transient problem with the compose database.
6cffa7
6cffa7
* Wed Apr 11 2018 Nick Clifton  <nickc@redhat.com> 2.27-29.base
6cffa7
- Add support for the GLOBALAUDIT dynamic linker tag.
6cffa7
  (#1439351)
6cffa7
6cffa7
* Wed Apr 11 2018 Nick Clifton  <nickc@redhat.com> 2.27-28.base
6cffa7
- Stop the x86_64 linker from crashing when asked to convert a reloc against the ABS section.
6cffa7
  (#1557346)
6cffa7
- Stop strip from replacing unknown relocs with null relocs.
6cffa7
  (#1545386)
3bc099
be6651
* Thu Jan 11 2018 Nick Clifton  <nickc@redhat.com> 2.27-27.base
be6651
- Do enable relro by default for the PowerPC64 architecture.
be6651
  (#1523946)
be6651
be6651
* Thu Jan 04 2018 Nick Clifton  <nickc@redhat.com> 2.27-26.base
be6651
- Fix thinko in post-uninstall section.
be6651
  (#1520899)
be6651
be6651
* Tue Jan 02 2018 Nick Clifton  <nickc@redhat.com> 2.27-25.base
be6651
- Remove man and info files not needed when building without documentation.
be6651
  (#1530339)
be6651
be6651
* Tue Jan 02 2018 Nick Clifton  <nickc@redhat.com> 2.27-24.base
be6651
- Check for the existance of standards.info.gz before attempting to uninstall it.
be6651
  (#1520899)
be6651
be6651
* Tue Dec 19 2017 Nick Clifton  <nickc@redhat.com> 2.27-23.base
be6651
- Do not complain if the standards.info.gz file does not exist when uninstalling.
be6651
  (#1520899)
be6651
be6651
* Mon Dec 11 2017 Nick Clifton  <nickc@redhat.com> 2.27-22.base
be6651
- Do not enable relro by default for the PowerPC64 architecture.
be6651
  (#1523946)
be6651
be6651
* Thu Nov 16 2017 Nick Clifton <nickc@redhat.com> 2.27-21.base
be6651
- Prevent the PowerPC64 linker from triggering a seg-fault when discarding dynamic sections.
be6651
  (#1513014)
be6651
be6651
* Thu Nov 02 2017 Nick Clifton <nickc@redhat.com> 2.27-20.base
be6651
- Bump NVR so that the binutils rpms will be rebuilt, since they also have files that contain the offending relocs.
be6651
  (#1508954)
be6651
be6651
* Wed Oct 25 2017 Nick Clifton <nickc@redhat.com> 2.27-19.base
be6651
- Suppress the generation of R_X86_64_GOTPCRELX, R_X86_64_REX_GETPCRELX and R_386_GOT32X relocations.
be6651
  (#1506004)
be6651
be6651
* Tue Oct 10 2017 Nick Clifton <nickc@redhat.com> 2.27-18.base
be6651
- Update AArch64 copy reloc patch.
be6651
  (#1430743)
be6651
be6651
* Mon Sep 18 2017 Nick Clifton <nickc@redhat.com> 2.27-17.base
be6651
- Add LNIA, SCV and RFSCV instructions from Power9.
be6651
  (#1356856)
be6651
be6651
* Wed Sep 06 2017 Nick Clifton <nickc@redhat.com> 2.27-16.base
be6651
- Fix seg-fault when stripping s390x binaries.
be6651
  (#14888890)
be6651
be6651
* Wed Aug 30 2017 Nick Clifton <nickc@redhat.com> 2.27-15.base
be6651
- Add support for creating a PT_S390_PGSTE segment in s390 binaries.
be6651
  (#1485398)
be6651
be6651
* Wed Aug 30 2017 Nick Clifton <nickc@redhat.com> 2.27-14.base
be6651
- Add standards.info file to documentation distributed with the binutils package.
be6651
  (#1467390)
be6651
be6651
* Fri Aug 11 2017 Nick Clifton <nickc@redhat.com> 2.27-12.base
be6651
- Generate an error when attempting to link non-PIC s390 objects in PIE mode.
be6651
  (#1406430)
be6651
be6651
* Fri Aug 11 2017 Nick Clifton <nickc@redhat.com> 2.27-11.base
be6651
- Fix generation of dynamic COPY relocs for the AArch64.
be6651
  (#1452170)
be6651
be6651
* Wed Aug 09 2017 Nick Clifton <nickc@redhat.com> 2.27-10.base
be6651
- Rebase to binutils 2.27
be6651
+ Retire: binutils-2.20.51.0.2-ia64-lib64.patch
be6651
+ Retire: binutils-2.20.51.0.10-copy-osabi.patch
be6651
+ Retire: binutils-rh1260158.patch
be6651
+ Retire: binutils-rh1300734.patch
be6651
+ Retire: binutils-2.25.1-aarch64-overflow-warnings.patch
be6651
+ Retire: binutils-2.25-aarch64-pr18668.patch
be6651
+ Retire: binutils-2.25.1-aarch64-pagesize.patch
be6651
+ Retire: binutils-rh1304451.patch
be6651
+ Retire: binutils-2.25.1-x86-Zepplin.patch
be6651
+ Retire: binutils-2.25.1-power9.patch
be6651
+ Retire: binutils-2.25.1-x86-mwaitx.patch
be6651
+ Retire: binutils-rh1162655.patch
be6651
+ Retire: binutils-2.25.1-aarch64-arch-extension.patch
be6651
+ Retire: binutils-2.25.1-s390-z13.patch
be6651
+ Retire: binutils-2.25.1-gold-resolving-to-hidden-symbols.patch
be6651
- Sync with Pegas 1.1 binutils.
be6651
- Import patch to add support for DWARF5 tags.
be6651
  (#1472955)
be6651
- Import patch to fix converting addresses into function names.
be6651
  (#1465318)(#1452170)
be6651
- Add support for ARMv8.2 ISA extensions.
be6651
  (#1385959)
be6651
be6651
* Tue Jul 25 2017 Nick Clifton <nickc@redhat.com> 2.25.1-33.base
be6651
- Add support for new tags defined by version 5 of the DWARF standard.
be6651
  (#1472955)
be6651
be6651
* Tue Jul 25 2017 Nick Clifton <nickc@redhat.com> 2.25.1-32.base
be6651
- Remove the minmax part of the objdump speedup patch.
ce7c03
  (#1465318)
ce7c03
d9d3dc
* Tue May 09 2017 Nick Clifton <nickc@redhat.com> 2.25.1-31.base
d9d3dc
- Fix generation of PLT entries for s390 binaries.
d9d3dc
  (#1440168)
d9d3dc
d9d3dc
* Thu May 04 2017 Nick Clifton <nickc@redhat.com> 2.25.1-28-base
d9d3dc
- Disable fix for 1406430.  It breaks building real s390 executables.
d9d3dc
  (#1447209)
d9d3dc
  (#1406430)
d9d3dc
d9d3dc
* Thu Apr 27 2017 Nick Clifton <nickc@redhat.com> 2.25.1-27-base
d9d3dc
- Fix infnite loop in linker when counting PowerPC stubs.
d9d3dc
  (#1406498)
d9d3dc
d9d3dc
* Mon Jan 16 2017 Nick Clifton <nickc@redhat.com> 2.25.1-26-base
d9d3dc
- Speed up displaying disassembly when mixed with source code.
d9d3dc
  (#1311352)
d9d3dc
d9d3dc
* Mon Jan 16 2017 Nick Clifton <nickc@redhat.com> 2.25.1-25-base
d9d3dc
- Fix GOLD so that it will not warn about references to hidden symbols in shared objects.
d9d3dc
  (#1326710)
d9d3dc
d9d3dc
* Fri Jan 06 2017 Nick Clifton <nickc@redhat.com> 2.25.1-24-base
d9d3dc
- Fix thinko in previous patch.
d9d3dc
  (#1406430)
d9d3dc
d9d3dc
* Fri Jan 06 2017 Nick Clifton <nickc@redhat.com> 2.25.1-23-base
d9d3dc
- Add code to detect attempts to link PIE and non-PIE S390 binaries.
d9d3dc
  (#1406430)
d9d3dc
4910d4
* Mon Aug 08 2016 Nick Clifton <nickc@redhat.com> 2.25.1-22-base
4910d4
- Fix date format bug in changelog which was preventing package build.
4910d4
4910d4
* Mon Aug 08 2016 Nick Clifton <nickc@redhat.com> 2.25.1-21-base
4910d4
- Add support for Z13 extensions to IBMs s390 architecture.
4910d4
  (#1364516)
4910d4
4910d4
* Fri Jun 24 2016 Nick Clifton <nickc@redhat.com> 2.25.1-20-base
4910d4
- Import new PPC ISA 3.0 patch from FSF binutils.
4910d4
  (#1341730)
4910d4
4910d4
* Mon Jun 13 2016 Nick Clifton <nickc@redhat.com> 2.25.1-19-base
4910d4
- Add support for the .arch_extension pseudo-op to the AArch64 port of GAS.
4910d4
  (#1276755)
4910d4
4910d4
* Mon Jun 13 2016 Nick Clifton <nickc@redhat.com> 2.25.1-18-base
4910d4
- Update patch to fix AArch64 stub generation.
4910d4
  (#1243559)
4910d4
4910d4
* Thu Jun 02 2016 Nick Clifton <nickc@redhat.com> 2.25.1-17-base
4910d4
- Close memory leak in "ar" archiver program.
4910d4
  (#1162655)
4910d4
- Retire the copy-osabi patch.
4910d4
  (#1252066)
4910d4
4910d4
* Thu Jun 02 2016 Nick Clifton <nickc@redhat.com> 2.25.1-16-base
4910d4
- Version bump to allow adding  1300543 to the errata.
4910d4
  (#1300543)
be6651
4910d4
* Wed Jun 01 2016 Nick Clifton <nickc@redhat.com> 2.25.1-15-base
4910d4
- Extend Power9 patch to add new ISA 3.0 instructions.
4910d4
  (#1341730)
be6651
4910d4
* Wed May 25 2016 Nick Clifton <nickc@redhat.com> 2.25.1-14-base
4910d4
- Extend Release string to include ".base" thus ensuring that it
4910d4
  will not collide with a DTS release which might otherwise have
4910d4
  the same name.
4910d4
  (#1337617)
4910d4
4910d4
* Mon May 23 2016 Nick Clifton <nickc@redhat.com> 2.25.1-13
4910d4
- Add support for Zeppelin x86 extensions.
4910d4
- Add support for the AMD MWAITX extension.
4910d4
- Add support for the PowerPC Power9 architecture.
4910d4
- Remove spurious binutils document references.
4910d4
  (#1335313)
4910d4
  (#1335684)
4910d4
  (#1333305)
4910d4
4910d4
* Wed Apr 13 2016 Nick Clifton <nickc@redhat.com> 2.25.1-10
4910d4
- Allow the BFD library to locate debug info files below the /usr/lib/debug directory.
4910d4
  (#1311352)
4910d4
4910d4
* Mon Apr 11 2016 Nick Clifton <nickc@redhat.com> 2.25.1-9
4910d4
- Housekeeping: Delete unused patches.  Renumber existing patches.
4910d4
4910d4
* Tue Mar 01 2016 Nick Clifton <nickc@redhat.com> 2.25.1-8
4910d4
- Fix PowerPC gas and ld testsuite failures.
4910d4
  (#1312876)
4910d4
4910d4
* Tue Feb 23 2016 Nick Clifton <nickc@redhat.com> 2.25.1-7
4910d4
- Extend fix for AArch64 call veneers.
4910d4
  (#1243559)
4910d4
4910d4
* Wed Feb 17 2016 Nick Clifton <nickc@redhat.com> 2.25.1-6
4910d4
- Add support for Intel Memory Protection Key instructions.
4910d4
  (#1304451)
4910d4
4910d4
* Mon Feb 08 2016 Nick Clifton <nickc@redhat.com> 2.25.1-4
4910d4
- Improve warning message for overflowing AArch64 relocs.
4910d4
- Import patch to fix PR18668.
4910d4
- Ignore warning messages about duplicate FDE entries
4910d4
  (#1300543)
4910d4
  (#1300603)
4910d4
  (#1285614)
4910d4
  (#1243559)
4910d4
4910d4
* Fri Jan 29 2016 Nick Clifton <nickc@redhat.com> 2.25.1-3
4910d4
- Experimental rebase on FSF 2.25.1 sources.
4910d4
  (#1341730)
4910d4
- Retire: patch11, patch12, patch13, patch14, patch15,
4910d4
  patch16, patch17, patch18, patch19, patch20, patch21,
4910d4
  patch22, patch23, patch24, patch25, patch26, patch27,
4910d4
  patch28, patch29, patch30, patch32, patch100, patch101,
4910d4
  patch102, patch110, patch111, patch112, patch113, patch114,
4910d4
  patch115, patch116, patch117, patch118, patch119, patch120,
4910d4
  patch121, patch201, patch202, patch203, patch204, patch205,
4910d4
  patch206, patch207, patch208, patch209, patch210, patch211,
4910d4
  patch212, patch300, patch301, patch302, patch303, patch304,
4910d4
  patch305, patch306, patch307, patch308, patch309, patch400,
4910d4
  patch401, patch402, patch403, patch404, patch405, patch406,
4910d4
  patch407, patch501
4910d4
- Add patch to suppress checking of PPC64 TLBIE instruction.  [TEMPORARY]
4910d4
- Add fix for FSF PR 18879
4910d4
- Add fix for s390x linker testsuite failure.
4910d4
  (#1276755)
4910d4
  (#1260158)
4910d4
  (#1300734)
4910d4
  (#1288068)
4910d4
4910d4
* Thu Jan 14 2016 Nick Clifton <nickc@redhat.com> 2.23.52.0.1-56
4910d4
- Remove __PPC__ checks from BFD library.
4910d4
  (#1261016)
4910d4
d570a8
* Tue Oct 13 2015 Nick Clifton <nickc@redhat.com> 2.23.52.0.1-55
d570a8
- Add missing delta to patch that fixes parsing corrupted archives.
d570a8
  (#1162666)
d570a8
d570a8
* Wed Jul 29 2015 Nick Clifton <nickc@redhat.com> 2.23.52.0.1-54
d570a8
- Import patch for PR 18270: Create AArch64 GOT entries for local symbols.
d570a8
  (#1238783)
d570a8
d570a8
* Tue Jul 28 2015 Jeff Law  <law@redhat.com> - 2.23.52.0.1-51
d570a8
- Fix incorrectly generated binaries and DSOs on PPC platforms.
d570a8
  (#1247126)
d570a8
d570a8
* Mon Jun 29 2015 Nick Clifton <nickc@redhat.com> - 2.23.52.0.1-50
d570a8
- Fix memory corruption parsing corrupt archives.
d570a8
  (#1162666)
d570a8
d570a8
* Mon Jun 29 2015 Nick Clifton <nickc@redhat.com> - 2.23.52.0.1-49
d570a8
- Fix directory traversal vulnerability.
d570a8
  (#1162655)
d570a8
d570a8
* Mon Jun 29 2015 Nick Clifton <nickc@redhat.com> - 2.23.52.0.1-48
d570a8
- Fix stack overflow in SREC parser.
d570a8
  (#1162621)
d570a8
d570a8
* Mon Jun 29 2015 Nick Clifton <nickc@redhat.com> - 2.23.52.0.1-47
d570a8
- Fix stack overflow whilst parsing a corrupt iHex file.
d570a8
  (#1162607)
d570a8
d570a8
* Mon Jun 29 2015 Nick Clifton <nickc@redhat.com> - 2.23.52.0.1-46
d570a8
- Fix out of bounds memory accesses when parsing corrupt PE binaries.
d570a8
  (#1162594, #1162570)
d570a8
d570a8
* Mon Jun 29 2015 Nick Clifton <nickc@redhat.com> - 2.23.52.0.1-45
d570a8
- Change strings program to default to -a.  Fix problems parsing
d570a8
  files containg corrupt ELF group sections.  (#1157276)
d570a8
d570a8
* Tue Jun 23 2015 Jeff Law <law@redhat.com> - 2.23.52.0.1-44
d570a8
- Avoid reading beyond function boundary when disassembling.
d570a8
  (#1060282)
d570a8
d570a8
- For binary ouput, we don't have an ELF bfd output so can't access
d570a8
  elf_elfheader.  (#1226864)
d570a8
d570a8
* Thu May 28 2015 Jeff Law <law@redhat.com> - 2.23.52.0.1-43
4910d4
- Do not discard stap probe note sections on aarch64 (#1225091)
d570a8
d570a8
* Tue May 26 2015 Jeff Law <law@redhat.com> - 2.23.52.0.1-42
d570a8
- Clamp maxpagesize at 1 (rather than 0) to avoid segfaults
d570a8
  in the linker when passed a bogus max-page-size argument.
d570a8
  (#1203449)
d570a8
d570a8
* Thu May 21 2015 Martin Sebor <msebor@redhat.com> - 2.23.52.0.1-41
d570a8
- Fixup bfd elf_link_add_object_symbols for ppc64 to prevent subsequent
d570a8
  uninitialized accesses elsewhere. (#1172766)
d570a8
d570a8
* Thu May 7 2015 Jeff Law <law@redhat.com> - 2.23.52.0.1-40
d570a8
- Minor testsuite adjustments for PPC changes in -38/-39.
d570a8
  (#1183838)
d570a8
  Fix md_assemble for PPC to handle arithmetic involving the TOC
d570a8
  better.  (#1183838)
d570a8
d570a8
* Wed May 6 2015 Martin Sebor <msebor@redhat.com> - 2.23.52.0.1-39
d570a8
- Fix ppc64: segv in libbfd (#1172766).
d570a8
d570a8
* Wed May 6 2015 Martin Sebor <msebor@redhat.com> - 2.23.52.0.1-38
d570a8
- Unconditionally apply ppc64le patches (#1183838).
d570a8
d570a8
* Mon May 4 2015 Jeff Law <law@redhat.com> - 2.23.52.0.1-37
d570a8
- Andreas's backport of z13 and dependent fixes for s390,
4910d4
  including tesetcase fix from Apr 27, 2015.'  (#1182153)
d570a8
d570a8
* Tue Apr 7 2015 Jeff Law <law@redhat.com> - 2.23.52.0.1-35
d570a8
- Fixup testsuite for AArch64 (#1182111)
d570a8
- Add support for @localentry for LE PPC64 (#1194164)
d570a8
d570a8
* Tue Mar 31 2015 Jeff Law <law@redhat.com> - 2.23.52.0.1-34
d570a8
- Do not install windmc(1) man page (#850832)
d570a8
d570a8
* Fri Mar 27 2015 Jeff Law <law@redhat.com> - 2.23.52.0.1-33
4910d4
- Do not replace R_390_TLS_LE{32,64} with R_390_TLS_TPOFF for PIE
d570a8
  (#872148)
d570a8
- Enable relro by default for arm and aarch64 (#1203449)
d570a8
- Backport 3 RELRO improvements for ppc64/ppc64le from upstream
d570a8
  (#1175624)
d570a8
d570a8
* Wed Mar 11 2015 Jeff Law <law@redhat.com> - 2.23.52.0.1-31
9af138
- Backport upstream RELRO fixes. (#1200138)
9af138
881b8e
* Thu Jan 15 2015 Jeff Law <law@redhat.com> - 2.23.52.0.1-30
881b8e
- Fix syntax for multiple --enable-targets configure option.
881b8e
  (#1133147)
881b8e
881b8e
* Thu Jan 8 2015 Jeff Law <law@redhat.com> - 2.23.52.0.1-29
881b8e
- Add support for crc instructions on aarch64 (#1179810)
881b8e
881b8e
* Mon Jan 5 2015 Jeff Law <law@redhat.com> - 2.23.52.0.1-28
881b8e
- Bring back spu target for ppc64le which was accidentally lost
881b8e
  (#1133147)
881b8e
881b8e
* Tue Dec 16 2014 Richard Henderson <rth@redhat.com> - 2.23.52.0.1-27
881b8e
- (Re-)Set ELF_COMMONPAGESIZE to 64k for ppc64le.
881b8e
  (#1174826)
881b8e
881b8e
* Thu Sep 11 2014 Patsy Franklin <pfrankli@redhat.com> - 2.23.52.0.1-26
881b8e
- Enable Intel AVX-512VL, AVX-512BW, AVX-512DQ and SGX support.
881b8e
  (#1140375)
881b8e
881b8e
* Wed Aug 27 2014 Jeff Law <law@redhat.com> - 2.23.52.0.1-25.9
be6651
  Revert this change (handled elsewhere):
881b8e
- Additional patch from Alan to fix problems with ld --defsym.
881b8e
  (#1132732)
881b8e
881b8e
* Mon Aug 25 2014 Jeff Law <law@redhat.com> - 2.23.52.0.1-23.9
881b8e
- Include powerpc-linux as a BFD target when building for ppc64le.
881b8e
  (#1133147).
881b8e
881b8e
* Fri Aug 22 2014 Patsy Franklin <pfrankli@redhat.com> - 2.23.52.0.1-22.9
881b8e
- Reduce the size of aarch64 .debug_line; fix cfi encoding of fp registers;
881b8e
  add register names to dumping of aarch64 cfi data. Patch provided by rth.
881b8e
  Resolves: #1132641
881b8e
881b8e
* Fri Aug 22 2014 Patsy Franklin <pfrankli@redhat.com> - 2.23.52.0.1-21.9
881b8e
- This fixes a problem seen on powerpc64le ELFv2 when creating a
881b8e
  function symbol alias with ld --defsym.  st_other needs to be copied
881b8e
  from the source symbol to the alias in order to set up the local entry
881b8e
  offset for the alias.
881b8e
881b8e
* Mon Aug 18 2014 Patsy Franklin <pfrankli@redhat.com> - 2.23.52.0.1-20.9
881b8e
- Correct handling of strong followed by weak def merging of st_other
881b8e
  Resolves: #1130479
881b8e
881b8e
* Wed Aug 13 2014 Jeff Law <law@redhat.com> - 2.23.52.0.1-19.9
881b8e
- Add missing PPC opcodes
881b8e
  Resolves: #1090618
881b8e
881b8e
* Mon Aug 11 2014 Jeff Law <law@redhat.com> - 2.23.52.0.1-18.9
881b8e
- Do not overwrite valid SONAME with empty string.  (#1128279)
881b8e
  Resolves: #1128280
881b8e
881b8e
* Mon Aug 4 2014 Aldy Hernandez <aldyh@redhat.com> - 2.23.52.0.1-17.9
881b8e
- Initial support for ppc64le.
881b8e
  Fix for bz#1125478
881b8e
881b8e
* Thu Jun 26 2014 Richard Henderson <rth@redhat.com> - 2.23.52.0.1-16.9
881b8e
- Backport fix for movi.
881b8e
881b8e
* Tue Jun 24 2014 Richard Henderson <rth@redhat.com> - 2.23.52.0.1-16.8
881b8e
- Backport support for IFUNCs.
881b8e
881b8e
* Sat Jun 14 2014 Mark Salter <msalter@redhat.com> - 2.23.52.0.1-16.7
881b8e
- Backport support for full range of CRn in AArch64 system registers.
881b8e
  Fix for bz#1109497
881b8e
881b8e
* Fri May 16 2014 Kyle McMartin <kyle@redhat.com> - 2.23.52.0.1-16.6
881b8e
- AArch64: Backport two patches from upstream fixing GOT handling.
881b8e
881b8e
* Thu May 15 2014 Brendan Conoboy <blc@redhat.com> - 2.23.52.0.1-16.5
881b8e
- Rebuild for BZ#1098169
881b8e
881b8e
* Fri May 09 2014 Kyle McMartin <kyle@redhat.com> - 2.23.52.0.1-16.4
881b8e
- AArch64: Backport two fixes from upstream and add a draft patch to
881b8e
  set DF_STATIC_TLS when emitting IE relocs. Also increase
881b8e
  ELF_COMMONPAGESIZE to 64K to match the kernel.
881b8e
881b8e
* Wed Apr 16 2014 Richard Henderson <rth@redhat.com> - 2.23.52.0.1-16.3
881b8e
- Backport tls-relax-gdesc-ie fix
881b8e
881b8e
* Thu Mar 13 2014 Richard Henderson <rth@redhat.com> - 2.23.52.0.1-16.2
881b8e
- Fix for rh1075827
881b8e
881b8e
* Wed Feb 19 2014 Nick Clifton <nickc@redhat.com> - 2.23.52.0.1-16.1
881b8e
- Fix for rh1066712
881b8e
214a23
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 2.23.52.0.1-16
214a23
- Mass rebuild 2014-01-24
214a23
214a23
* Mon Jan 13 2014 Jeff Law <law@redhat.com> - 2.23.52.0.1-15
214a23
- Set _performance_build to get -O3 builds (#1051060).
214a23
214a23
* Mon Jan 6 2014 Jeff Law <law@redhat.com> - 2.23.52.0.1-14
214a23
- Fix two may-be-uninitialized issues exposed by changes in
214a23
  compiler flags used to build binutils (#1048848).
214a23
214a23
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 2.23.52.0.1-13
214a23
- Mass rebuild 2013-12-27
214a23
f55871
* Thu Aug 29 2013 Jakub Jelinek <jakub@redhat.com> - 2.23.52.0.1-12
f55871
- Add Intel AVX3, MPX and SHA support.
f55871
- Add support for x86-64 -mcmodel=large -fpic TLS transitions.  (#994244)
f55871
f55871
* Fri Jul 5 2013 Jeff Law <law@redhat.com> - 2.23.52.0.1-11
f55871
- Add support for TDB notes section (#805115)
f55871
- Fix length operands for cdzt, cxzt czdt and czxt (#805115)
f55871
f55871
* Wed Jul 3 2013 Jeff Law <law@redhat.com> - 2.23.52.0.1-10
f55871
- Add libstdc++-static as a build requirement when running
f55871
  the testsuite.
f55871
- Add remaining power8 support (#731883)
f55871
f55871
* Tue Jun 04 2013 Nick Clifton <nickc@redhat.com> - 2.23.52.0.1-9
f55871
- Add support for the alternative debuging files generated by the DWZ program.  (#965255)
f55871
f55871
* Wed Apr 17 2013 Nick Clifton <nickc@redhat.com> - 2.23.52.0.1-8
f55871
- Import patch for FSF mainline PR 15371 to fix ifunc references in shared libraries.  (#927818)
f55871
f55871
* Tue Apr 09 2013 Nick Clifton <nickc@redhat.com> - 2.23.52.0.1-7
f55871
- Fix library search paths for 64-bit aarch64 linux targets.  (#950098)
f55871
f55871
* Wed Mar 13 2013 Nick Clifton <nickc@redhat.com> - 2.23.52.0.1-6
f55871
- Add explicit requirement of /usr/bin/pod2man.  (#920545)
f55871
f55871
* Fri Mar 08 2013 Nick Clifton <nickc@redhat.com> - 2.23.52.0.1-5
f55871
- Reverts patch for PR15149 - prevents report weak DT_NEEDED symbols.  (#918003)
f55871
f55871
* Wed Mar 06 2013 Nick Clifton <nickc@redhat.com> - 2.23.52.0.1-4
f55871
- Enable building of GOLD for the ARM.  (#908966)
f55871
f55871
* Mon Mar 04 2013 Nick Clifton <nickc@redhat.com> - 2.23.52.0.1-3
f55871
- Fix errors reported by version 5.0 of texinfo.
f55871
f55871
* Fri Mar 01 2013 Nick Clifton <nickc@redhat.com> - 2.23.52.0.1-2
f55871
- Fix the creation of index tables in 64-bit thin archives.  (#915411)
f55871
f55871
* Thu Feb 28 2013 Nick Clifton <nickc@redhat.com> - 2.23.52.0.1-1
f55871
- Rebase on 2.23.51.0.1 release.  (#916516)
f55871
f55871
* Fri Feb 08 2013 Nick Clifton <nickc@redhat.com> - 2.23.51.0.9-2
f55871
- Enable 64-bit BFD for aarch64.  (#908904)
f55871
f55871
* Mon Feb 04 2013 Nick Clifton <nickc@redhat.com> - 2.23.51.0.9-1
f55871
- Rebase on 2.23.51.0.9 release.  (#907089)
f55871
- Retire binutils-2.23.51.0.8-arm-whitespace.patch.
f55871
f55871
* Mon Jan 21 2013 Nick Clifton <nickc@redhat.com> - 2.23.51.0.8-4
f55871
- Allow more whitespace in ARM instructions.  (#892261)
f55871
f55871
* Tue Jan 15 2013 Patsy Franklin <pfrankli@redhat.com> - 2.23.51.0.8-3
f55871
- Add bc to BuildRequires when running the testsuite.  (#895321)
f55871
f55871
* Wed Jan 02 2013 Nick Clifton <nickc@redhat.com> - 2.23.51.0.8-2
f55871
- Add runtime link with libdl.  (#889134)
f55871
f55871
* Wed Jan 02 2013 Nick Clifton <nickc@redhat.com> - 2.23.51.0.8-1
f55871
- Rebase on 2.23.51.0.8 release.  (#890382)
f55871
f55871
* Fri Dec 21 2012 Nick Clifton <nickc@redhat.com> - 2.23.51.0.7-1
f55871
- Rebase on 2.23.51.0.7 release.  (#889432)
f55871
f55871
* Tue Nov 27 2012 Nick Clifton <nickc@redhat.com> - 2.23.51.0.6-1
f55871
- Rebase on 2.23.51.0.6 release.  (#880508)
f55871
f55871
* Tue Nov 13 2012 Nick Clifton <nickc@redhat.com> - 2.23.51.0.5-1
f55871
- Rebase on 2.23.51.0.5 release.  (#876141)
f55871
- Retire binutils-2.23.51.0.3-arm-ldralt.patch
f55871
f55871
* Tue Oct 23 2012 Nick Clifton <nickc@redhat.com> - 2.23.51.0.3-3
f55871
- Rename ARM LDRALT instruction to LDALT.  (#869025) PR/14575
f55871
f55871
* Mon Oct 15 2012 Jon Ciesla <limburgher@gmail.com> - 2.23.51.0.3-2
f55871
- Provides: bundled(libiberty)
f55871
f55871
* Tue Oct 02 2012 Nick Clifton <nickc@redhat.com> - 2.23.51.0.3-1
f55871
- Rebase on 2.23.51.0.3 release.  (#858560)
f55871
f55871
* Tue Sep 11 2012 Nick Clifton <nickc@redhat.com> - 2.23.51.0.2-1
f55871
- Rebase on 2.23.51.0.2 release.  (#856119)
f55871
- Retire binutils-2.23.51.0.1-gold-keep.patch and binutils-rh805974.patch.
f55871
f55871
* Tue Sep 4 2012 Jeff Law <law@redhat.com> 2.23.51.0.1-4
f55871
- Correctly handle PLTOFF relocs for s390 IFUNCs.
f55871
f55871
* Tue Aug 14 2012 Karsten Hopp <karsten@redhat.com> 2.23.51.0.1-3
f55871
- apply F17 commit cd2fda5 to honour {powerpc64} macro (#834651)
f55871
f55871
* Tue Aug 14 2012 Nick Clifton <nickc@redhat.com> - 2.23.51.0.1-2
f55871
- Make GOLD honour KEEP directives in linker scripts  (#8333355)
f55871
f55871
* Wed Aug 08 2012 Nick Clifton <nickc@redhat.com> - 2.23.51.0.1-1
f55871
- Rebase on 2.23.51.0.1 release.  (#846433)
f55871
- 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.
f55871
f55871
* Thu Aug 02 2012 Nick Clifton <nickc@redhat.com> - 2.22.52.0.4-8
f55871
- Make the binutils-devel package depend upon the binutils package. (#845082)
f55871
f55871
* Thu Aug 02 2012 Nick Clifton <nickc@redhat.com> - 2.22.52.0.4-7
f55871
- Disable checks that config.h is included before system headers.  (#845084)
f55871
f55871
* Tue Jul 17 2012 Nick Clifton <nickc@redhat.com> - 2.22.52.0.4-6
f55871
- Use 64bit indicies in archives for s390 binaries.  (#835957)
f55871
f55871
* Thu Jul 05 2012 Nick Clifton <nickc@redhat.com> - 2.22.52.0.4-5
f55871
- Catch attempts to create a broken symbol index with archives > 4Gb in size.  (#835957)
f55871
f55871
* Fri Jun 29 2012 Nick Clifton <nickc@redhat.com> - 2.22.52.0.4-4
f55871
- Import fix for ld/14189.  (#829311)
f55871
f55871
* Fri Jun 29 2012 Nick Clifton <nickc@redhat.com> - 2.22.52.0.4-3
f55871
- Fix handling of archives > 4Gb in size by importing patch for PR binutils/14302.  (#835957)
f55871
f55871
* Tue Jun 19 2012 Jakub Jelinek <jakub@redhat.com> - 2.22.52.0.4-2
f55871
- Add minimal dwz -m support.
f55871
f55871
* Wed Jun 06 2012 Nick Clifton <nickc@redhat.com> - 2.22.52.0.4-1
f55871
- Rebase on 2.22.52.0.4 release.  (#829027)
f55871
f55871
* Tue May 08 2012 Nick Clifton <nickc@redhat.com> - 2.22.52.0.3-1
f55871
- Rebase on 2.22.52.0.3 release.  (#819823)
f55871
f55871
* Mon Apr 30 2012 Nick Clifton <nickc@redhat.com> - 2.22.52.0.2-1
f55871
- Rebase on 2.22.52.0.2 release.  (#816514)
f55871
- 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.
f55871
- Update binutils-2.22.52.0.1-reloc-on-by-default.patch.
f55871
f55871
* Fri Apr 27 2012 Nick Clifton <nickc@redhat.com> - 2.22.52.0.1-12
f55871
- Include demangle.h in the devel rpm.
f55871
f55871
* Tue Apr 03 2012 Nick Clifton <nickc@redhat.com> - 2.22.52.0.1-11
f55871
- Enable -zrelro by default for RHEL 7+. (#807831)
f55871
f55871
* Fri Mar 16 2012 Jakub Jelinek <jakub@redhat.com> - 2.22.52.0.1-10
f55871
- Fix up handling of hidden ifunc relocs on i?86
f55871
f55871
* Wed Mar 14 2012 Jeff Law <law@redhat.com> - 2.22.52.0.1-9
f55871
- Fix c++filt docs (2nd instance) (#797752)
f55871
f55871
* Wed Mar 07 2012 Jakub Jelinek <jakub@redhat.com> - 2.22.52.0.1-8
f55871
- Fix up handling of hidden ifunc relocs on x86_64
f55871
- Add Intel TSX support
f55871
f55871
* Tue Mar 06 2012 Nick Clifton <nickc@redhat.com> - 2.22.52.0.1-7
f55871
- Enable -zrelro by default. (#621983 #807831)
f55871
f55871
* Mon Feb 27 2012 Jeff Law <law@redhat.com> - 2.22.52.0.1-6
f55871
- Fix c++filt docs (#797752)
f55871
f55871
* Wed Feb 15 2012 Mark Wielaard <mjw@redhat.com> - 2.22.52.0.1-5
f55871
- Add upstream ld/13621 'dangling global hidden symbol in symtab' patch.
f55871
f55871
* Wed Feb 08 2012 Adam Williamson <awilliam@redhat.com> - 2.22.52.0.1-4
f55871
- Actually apply the patch
f55871
f55871
* Wed Feb 08 2012 Adam Williamson <awilliam@redhat.com> - 2.22.52.0.1-3
f55871
- Add upstream weakdef.patch to fix RH #788107
f55871
f55871
* Wed Feb 01 2012 Nick Clifton <nickc@redhat.com> - 2.22.52.0.1-2
f55871
- Drat - forgot to upload the new tarball.  Now done.
f55871
f55871
* Wed Feb 01 2012 Nick Clifton <nickc@redhat.com> - 2.22.52.0.1-1
f55871
- Rebase on 2.22.52 release.
f55871
- Remove build-id.patch and gold-casts.patch as they are included in the 2.22.52 sources.
f55871
f55871
* Fri Jan 13 2012 Nick Clifton <nickc@redhat.com> - 2.22-4
be6651
- Fix bug in GOLD sources parsing signed integers in command line options.
f55871
f55871
* Fri Jan 13 2012 Nick Clifton <nickc@redhat.com> - 2.22-3
f55871
- Add casts for building gold with 4.7 version of gcc.
f55871
f55871
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.22-2
f55871
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
f55871
f55871
* Tue Nov  22 2011 Nick Clifton <nickc@redhat.com> - 2.22-1
f55871
- Rebase on 2.22 release.
f55871
f55871
* Fri Sep  30 2011 Ricky Zhou <ricky@fedoraproject.org> - 2.21.53.0.2-2
f55871
- Rebuild libopcodes.a with -fPIC.
f55871
f55871
* Tue Aug  09 2011 Nick Clifton <nickc@redhat.com> - 2.21.53.0.2-1
f55871
- Rebase on 2.21.53.0.2 tarball.  Delete unneeded patches.  (BZ 728677)
f55871
f55871
* Tue Aug  02 2011 Nick Clifton <nickc@redhat.com> - 2.21.53.0.1-3
f55871
- Update libiberty demangling.  (BZ 727453)
f55871
f55871
* Wed Jul  27 2011 Nick Clifton <nickc@redhat.com> - 2.21.53.0.1-2
f55871
- Import Jakub Jelinek's patch to add support for displaying the contents of .debug_macro sections.
f55871
f55871
* Tue Jul  19 2011 Nick Clifton <nickc@redhat.com> - 2.21.53.0.1-1
f55871
- Rebase on 2.21.53.0.1 tarball.  Delete unneeded patches.  (BZ 712668)
f55871
f55871
* Fri Jun  24 2011 Nick Clifton <nickc@redhat.com> - 2.21.52.0.1-5
f55871
- Import fix for PR ld/12921.
f55871
f55871
* Fri Jun  24 2011 Nick Clifton <nickc@redhat.com> - 2.21.52.0.1-4
f55871
- Run "alternatives --auto" to restore ld symbolic link if it was manually configured.  (BZ 661247)
f55871
f55871
* Thu Jun  16 2011 Nick Clifton <nickc@redhat.com> - 2.21.52.0.1-3
f55871
- Fix seg-fault attempting to find a function name without a symbol table.  (BZ 713471)
f55871
f55871
* Fri Jun  10 2011 Nick Clifton <nickc@redhat.com> - 2.21.52.0.1-2
f55871
- Import fix for PR ld/12851 (BZ 711268)
f55871
f55871
* Thu Jun  09 2011 Nick Clifton <nickc@redhat.com> - 2.21.52.0.1-1
f55871
- Rebase on 2.21.52.0.1 tarball.  (BZ 712025)
f55871
f55871
* Tue May  17 2011 Nick Clifton <nickc@redhat.com> - 2.21.51.0.9-1
f55871
- Rebase on 2.21.51.0.9 tarball.  (BZ 703105)
f55871
f55871
* Mon May   2 2011 Peter Robinson <pbrobinson@gmail.com> - 2.21.51.0.8-3
f55871
- Add ARM to BFD checks
f55871
f55871
* Mon Apr  11 2011 Nick Clifton <nickc@redhat.com> - 2.21.51.0.8-2
f55871
- Delete plugins patch - enable plugins via configure option.
f55871
f55871
* Mon Apr  11 2011 Nick Clifton <nickc@redhat.com> - 2.21.51.0.8-1
f55871
- Rebase on 2.21.51.0.8 tarball.
f55871
f55871
* Thu Mar  17 2011 Nick Clifton <nickc@redhat.com> - 2.21.51.0.7-1
f55871
- Rebase on 2.21.51.0.7 tarball.
f55871
f55871
* Tue Mar  08 2011 Nick Clifton <nickc@redhat.com> - 2.21.51.0.6-2
f55871
- Enable gold plugins.  (BZ 682852)
f55871
f55871
* Thu Feb  10 2011 Nick Clifton <nickc@redhat.com> - 2.21.51.0.6-1
f55871
- Rebase on 2.21.51.0.6 tarball.
f55871
f55871
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.21.51.0.5-4
f55871
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
f55871
f55871
* Fri Jan  28 2011 Jakub Jelinek <jakub@redhat.com> - 2.21.51.0.5-3
f55871
- Readd --build-id fix patch.  (PR ld/12451)
f55871
f55871
* Thu Jan   6 2011 Dan Horák <dan[at]danny.cz> - 2.21.51.0.5-2
f55871
- fix build on non-gold arches like s390(x) where both ld and ld.bfd is installed
f55871
f55871
* Wed Jan   5 2011 Nick Clifton <nickc@redhat.com> - 2.21.51.0.5-1
f55871
- Rebase on 2.21.51.0.5 tarball.
f55871
- Delete redundant patches.
f55871
- Fix gold+ld configure command line option.
f55871
f55871
* Fri Nov   5 2010 Dan Horák <dan[at]danny.cz> - 2.20.51.0.12-2
f55871
- "no" is not valid option for --enable-gold
f55871
f55871
* Thu Oct  28 2010 Nick Clifton <nickc@redhat.com> - 2.20.51.0.12-1
f55871
- Rebase on 2.20.51.0.12 tarball.  (BZ 582160)
f55871
f55871
* Fri Sep  10 2010 Nick Clifton <nickc@redhat.com> - 2.20.51.0.11-1
f55871
- Rebase on 2.20.51.0.11 tarball.  (BZ 631771)
f55871
f55871
* Fri Aug  20 2010 Nick Clifton <nickc@redhat.com> - 2.20.51.0.10-3
f55871
- Allow ^ and ! characters in linker script wildcard patterns.  (BZ 621742)
f55871
f55871
* Fri Aug  20 2010 Nick Clifton <nickc@redhat.com> - 2.20.51.0.10-2
f55871
- Fix seg fault in sec_merge_emit().  (BZ 623687)
f55871
f55871
* Tue Aug  10 2010 Nick Clifton <nickc@redhat.com> - 2.20.51.0.10-1
f55871
- Rebase on 2.20.51.0.10 tarball.
be6651
- Import GOLD sources from binutils mainline as of 10 Aug 2010.
f55871
f55871
* Wed Jun  30 2010 Nick Clifton <nickc@redhat.com> - 2.20.51.0.7-5
f55871
- Rename the binutils-static package to binutils-devel in line with the Fedora packaging guidelines.
f55871
f55871
* Wed Jun   9 2010 Nick Clifton <nickc@redhat.com> - 2.20.51.0.7-4
f55871
- Allow GOLD linker to parse "-l<name>" directives inside INPUT statements in linker scripts. (BZ 600553)
f55871
f55871
* Tue May   4 2010 Nick Clifton <nickc@redhat.com> - 2.20.51.0.7-3
f55871
- Allow unique symbols in archive maps.
f55871
f55871
* Tue Apr  20 2010 Nick Clifton <nickc@redhat.com> - 2.20.51.0.7-2
f55871
- Merge binutils-devel package into binutils-static package.  (BZ 576300)
f55871
f55871
* Thu Apr   8 2010 Nick Clifton <nickc@redhat.com> - 2.20.51.0.7-1
f55871
- Rebase on 2.20.51.0.7 tarball.
f55871
- Delete redundant patches:
f55871
  binutils-2.20.51.0.2-add-needed.patch,
f55871
  binutils-2.20.51.0.2-do-not-set-ifunc.patch,
f55871
  binutils-2.20.51.0.2-enable-gold.patch,
f55871
  binutils-2.20.51.0.2-gas-expr.patch,
f55871
  binutils-2.20.51.0.2-ifunc-ld-s.patch,
f55871
  binutils-2.20.51.0.2-lwp.patch,
f55871
  binutils-2.20.51.0.2-ppc-hidden-plt-relocs.patch,
f55871
  binutils-2.20.51.0.2-x86-hash-table.patch,
f55871
- Do not allow unique symbols to be bound locally.  (PR ld/11434)
f55871
- Add support for DWARF4 debug information.
f55871
f55871
* Thu Mar   4 2010 Nick Clifton <nickc@redhat.com> - 2.20.51.0.2-17
f55871
- Do not set ELFOSABI_LINUX on binaries which just link to IFUNC using DSOs.  (BZ 568941)
f55871
f55871
* Tue Mar   2 2010 Nick Clifton <nickc@redhat.com> - 2.20.51.0.2-16
f55871
- Copy the OSABI field in ELF headers, if set.  (BZ 568921)
f55871
f55871
* Fri Feb  12 2010 Nick Clifton <nickc@redhat.com> - 2.20.51.0.2-15
f55871
- Create separate static and devel sub-packages.  (BZ 556040)
f55871
f55871
* Tue Feb   2 2010 Nick Clifton <nickc@redhat.com> - 2.20.51.0.2-14
f55871
- Fix seg-fault when linking mixed x86 and x86_64 binaries.  (BZ 487472)
f55871
f55871
* Fri Jan  22 2010 Nick Clifton <nickc@redhat.com> - 2.20.51.0.2-13
f55871
- Add a requirement for the coreutils.  (BZ 557006)
f55871
f55871
* Wed Jan  20 2010 Nick Clifton <nickc@redhat.com> - 2.20.51.0.2-12
f55871
- Fix --no-copy-dt-needed so that it will not complain about weak references.
f55871
f55871
* Fri Dec  18 2009 Nick Clifton <nickc@redhat.com> - 2.20.51.0.2-11
f55871
- Add missing part of PR 11088 patch.
f55871
f55871
* Thu Dec  17 2009 Nick Clifton <nickc@redhat.com> - 2.20.51.0.2-10
f55871
- Apply patch for PR 11088.  (BZ 544149)
f55871
f55871
* Wed Dec  9 2009 Nick Clifton <nickc@redhat.com> - 2.20.51.0.2-9
f55871
- Apply patch for PR 10856.  (BZ 544358)
f55871
f55871
* Tue Dec  1 2009 Roland McGrath <roland@redhat.com> - 2.20.51.0.2-8
f55871
- Build gold only for x86 flavors until others are tested.
f55871
f55871
* Tue Nov 24 2009 Roland McGrath <roland@redhat.com> - 2.20.51.0.2-7
f55871
- Add support for building gold.
f55871
f55871
* Mon Nov  9 2009 Jakub Jelinek <jakub@redhat.com> 2.20.51.0.2-5
f55871
- Fix up --copy-dt-needed-entries default.  (Nick Clifton)
f55871
f55871
* Mon Nov  9 2009 Jakub Jelinek <jakub@redhat.com> 2.20.51.0.2-4
f55871
- Fix ld -s with IRELATIVE relocations.  (BZ 533321, PR ld/10911)
f55871
- Add AMD Orochi LWP support, fix FMA4 support.
f55871
f55871
* Thu Nov 05 2009 Nick CLifton <nickc@redhat.com> 2.20.51.0.2-3
f55871
- Rename --add-needed to --copy-dt-needed-entries and improve error message about unresolved symbols in DT_NEEDED DSOs.
f55871
f55871
* Tue Oct 27 2009 Jan Kratochvil <jan.kratochvil@redhat.com> 2.20.51.0.2-2
f55871
- Fix rpm --excludedocs (BZ 515922).
f55871
- Fix spurious scriplet errors by `exit 0'. (BZ 517979, Nick Clifton)
f55871
f55871
* Mon Oct 12 2009 Nick Clifton <nickc@redhat.com> 2.20.51.0.2-1
f55871
- Rebase on 2.20 tarball.
f55871
- Remove redundant moxie patch.
f55871
- Remove redundant unique is global patch.
f55871
- Remove redundant cxxfilt java doc patch.
f55871
f55871
* Tue Sep 29 2009 Jan Kratochvil <jan.kratochvil@redhat.com> 2.19.51.0.14-32
f55871
- Remove spurious description of nonexistent --java switch for cxxfilt.
f55871
f55871
* Thu Aug  6 2009 Jakub Jelinek <jakub@redhat.com> 2.19.51.0.14-31
f55871
- Fix strip on objects with STB_GNU_UNIQUE symbols. (BZ 515700, PR binutils/10492)
f55871
f55871
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.19.51.0.14-30
f55871
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
f55871
f55871
* Wed Jul 22 2009 Nick Clifton <nickc@redhat.com> 2.19.51.0.11-28
f55871
- Rebase sources on 2.19.51.0.14 tarball.  Gain fixes for PRs 10429 and 10433.
f55871
f55871
* Wed Jul 22 2009 Nick Clifton <nickc@redhat.com> 2.19.51.0.11-28
f55871
- Rebase sources on 2.19.51.0.13 tarball.  Remove redundant orphan section placement patch. (BZ 512937)
f55871
f55871
* Tue Jul 14 2009 Nick Clifton <nickc@redhat.com> 2.19.51.0.11-27
f55871
- Add patch to allow moxie target to build, and hence --enable-targets=all to work.
f55871
f55871
* Tue Jul 14 2009 Nick Clifton <nickc@redhat.com> 2.19.51.0.11-26
f55871
- Import orphan section placement patch from mainline.  (BZ 510384)
f55871
f55871
* Tue Jul 14 2009 Nick Clifton <nickc@redhat.com> 2.19.51.0.11-25
f55871
- Fix build-id patch to avoid memory corruption.  (BZ 501582)
f55871
f55871
* Sat Jul 11 2009 Jan Kratochvil <jan.kratochvil@redhat.com> 2.19.51.0.11-24
f55871
- Provide uuencode output of the testsuite results.
f55871
f55871
* Tue Jun 30 2009 Nick Clifton <nickc@redhat.com> 2.19.51.0.11-23
f55871
- Rebase sources on the 2.19.51.0.11 tarball.
f55871
f55871
* Mon Jun 22 2009 Nick Clifton <nickc@redhat.com> 2.19.51.0.10-22
f55871
- Rebase sources on the 2.19.51.0.10 tarball.
f55871
f55871
* Thu Jun 11 2009 Nick Clifton <nickc@redhat.com> 2.19.51.0.2-21
f55871
- Do not attempt to set execute permission on non-regular files.  (BZ 503426)
f55871
f55871
* Tue Jun  9 2009 Jakub Jelinek <jakub@redhat.com> 2.19.51.0.2-20
f55871
- Fix .cfi_* skip over >= 64KB of code.  (PR gas/10255)
f55871
f55871
* Wed May 27 2009 Nick Clifton <nickc@redhat.com> 2.19.51.0.2-19
f55871
- Import fix for binutils PR #9938.  (BZ 500295)
f55871
f55871
* Wed Apr 15 2009 Nick Clifton <nickc@redhat.com> 2.19.51.0.2-18
f55871
- Update IBM Power 7 support patch to fix tlbilx opcode.  (BZ 494718)
f55871
f55871
* Tue Mar 17 2009 Nick Clifton <nickc@redhat.com> 2.19.51.0.2-17
f55871
- Add glibc-static to BuildRequires when running the testsuite.
f55871
f55871
* Thu Mar 05 2009 Nick Clifton <nickc@redhat.com> 2.19.51.0.2-16
f55871
- Add IBM Power7 support.  (BZ 487887)
f55871
f55871
* Mon Mar 02 2009 Nick Clifton <nickc@redhat.com> 2.19.51.0.2-15
f55871
- Add IFUNC support.  (BZ 465302)
f55871
f55871
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.19.51.0.2-14
f55871
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
f55871
f55871
* Mon Feb 23 2009 Jan Kratochvil <jan.kratochvil@redhat.com> 2.19.50.0.2-13
f55871
- Rediff the symbolic-envvar-revert patch to comply with rpm patch --fuzz=0.
f55871
f55871
* Thu Feb  5 2009 Nick Clifton <nickc@redhat.com> 2.19.51.0.2-12
f55871
- Rebase sources on 2.19.51.0.2 tarball.  Remove linkonce-r-discard and
f55871
  gcc-expect-table patches.
f55871
f55871
* Mon Feb  2 2009 Jan Kratochvil <jan.kratochvil@redhat.com> 2.19.50.0.1-11
f55871
- Fix .eh_frame_hdr build also for .gcc_except_table LSDA refs (BZ 461675).
f55871
f55871
* Fri Jan 23 2009 Nick Clifton <nickc@redhat.com> 2.19.50.0.1-10
f55871
- Only require dejagnu if the testsuites are going to be run.  (BZ 481169)
f55871
f55871
* Sat Nov 29 2008 Nick Clifton <nickc@redhat.com> 2.19.50.0.1-8
f55871
- Add build-id patch to ensure that section contents are incorporated
f55871
  into a build id.  (BZ 472152)
f55871
f55871
* Fri Nov 21 2008 Nick Clifton <nickc@redhat.com> 2.19.50.0.1
f55871
- Rebase sources on 2.19.50.0.1 tarball.  Update all patches, trimming
f55871
  those that are no longer needed.
f55871
f55871
* Thu Oct 30 2008 Jan Kratochvil <jan.kratochvil@redhat.com> 2.18.50.0.9-7
f55871
- Fix %%{_prefix}/include/bfd.h on 32-bit hosts due the 64-bit BFD target
f55871
  support from 2.18.50.0.8-2 (BZ 468495).
f55871
f55871
* Thu Oct 30 2008 Jan Kratochvil <jan.kratochvil@redhat.com> 2.18.50.0.9-6
f55871
- binutils-devel now requires zlib-devel (BZ 463101 comment 5).
f55871
- Fix complains on .gnu.linkonce.r relocations to their discarded
f55871
  .gnu.linkonce.t counterparts.
f55871
f55871
* Mon Sep 22 2008 Jan Kratochvil <jan.kratochvil@redhat.com> 2.18.50.0.9-5
f55871
- Remove %%makeinstall to comply with the spu-binutils review (BZ 452211).
f55871
f55871
* Mon Sep 22 2008 Jan Kratochvil <jan.kratochvil@redhat.com> 2.18.50.0.9-4
f55871
- Fix *.so scripts for multilib linking (BZ 463101, suggested by Jakub Jelinek).
f55871
f55871
* Sun Sep 21 2008 Jan Kratochvil <jan.kratochvil@redhat.com> 2.18.50.0.9-3
f55871
- Provide libbfd.so and libopcodes.so for automatic dependencies (BZ 463101).
f55871
- Fix .eh_frame_hdr build on C++ files with discarded common groups (BZ 458950).
f55871
- Provide --build and --host to fix `rpmbuild --target' biarch builds.
f55871
- Include %%{binutils_target}- filename prefix for binaries for cross builds.
f55871
- Fix multilib conflict on %%{_prefix}/include/bfd.h's BFD_HOST_64BIT_LONG_LONG.
f55871
f55871
* Mon Sep 15 2008 Jan Kratochvil <jan.kratochvil@redhat.com> 2.18.50.0.9-2
f55871
- Package review, analysed by Jon Ciesla and Patrice Dumas (BZ 225615).
f55871
 - build back in the sourcedir without problems as gasp is no longer included.
f55871
 - Fix the install-info requirement.
f55871
 - Drop the needless gzipping of the info files.
f55871
 - Provide Obsoletes versions.
f55871
 - Use the %%configure macro.
f55871
f55871
* Sat Aug 30 2008 Jan Kratochvil <jan.kratochvil@redhat.com> 2.18.50.0.9-1
f55871
- Update to 2.18.50.0.9.
f55871
  - Drop the ppc-only spu target pre-build stage (BZ 455242).
f55871
  - Drop parsing elf64-i386 files for kdump PAE vmcore dumps (BZ 457189).
f55871
- New .spec BuildRequires zlib-devel (/-static) for compressed sections.
f55871
- Update .spec Buildroot to be more unique.
f55871
f55871
* Fri Aug  1 2008 Jan Kratochvil <jan.kratochvil@redhat.com> 2.18.50.0.8-2
f55871
- Fix parsing elf64-i386 files for kdump PAE vmcore dumps (BZ 457189).
f55871
- Turn on 64-bit BFD support for i386, globally enable AC_SYS_LARGEFILE.
f55871
- `--with debug' builds now with --disable-shared.
f55871
- Removed a forgotten unused ld/eelf32_spu.c workaround from 2.18.50.0.8-1.
f55871
f55871
* Thu Jul 31 2008 Jan Kratochvil <jan.kratochvil@redhat.com> 2.18.50.0.8-1
f55871
- Update to 2.18.50.0.8.
f55871
  - Drop the .clmul -> .pclmul renaming backport.
f55871
- Add %%{binutils_target} macro to support building cross-binutils.
f55871
  (David Woodhouse)
f55871
- Support `--without testsuite' to suppress the testsuite run.
f55871
- Support `--with debug' to build without optimizations.
f55871
- Refresh the patchset with fuzz 0 (for new rpmbuild).
f55871
- Enable the spu target on ppc/ppc64 (BZ 455242).
f55871
f55871
* Wed Jul 16 2008 Jan Kratochvil <jan.kratochvil@redhat.com> 2.18.50.0.6-4
f55871
- include the `dist' tag in the Release number
f55871
- libbfd.a symbols visibility is now hidden (for #447426, suggested by Jakub)
f55871
f55871
* Wed Jul 16 2008 Jan Kratochvil <jan.kratochvil@redhat.com> 2.18.50.0.6-3
f55871
- rebuild libbfd.a with -fPIC for inclusion into shared libraries (#447426)
f55871
f55871
* Tue Apr  8 2008 Jakub Jelinek <jakub@redhat.com> 2.18.50.0.6-2
f55871
- backport .clmul -> .pclmul renaming
f55871
f55871
* Fri Apr  4 2008 Jakub Jelinek <jakub@redhat.com> 2.18.50.0.6-1
f55871
- update to 2.18.50.0.6
f55871
  - Intel AES, CLMUL, AVX/FMA support
f55871
f55871
* Mon Mar  3 2008 Jakub Jelinek <jakub@redhat.com> 2.18.50.0.4-2
f55871
- revert aranges optimization (Alan Modra, BZ#5303, BZ#5755)
f55871
- fix ld-shared testcase for GCC 4.3 (H.J. Lu)
f55871
f55871
* Fri Feb 29 2008 Jakub Jelinek <jakub@redhat.com> 2.18.50.0.4-1
f55871
- update to 2.18.50.0.4
f55871
f55871
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> 2.18.50.0.3-2
f55871
- Autorebuild for GCC 4.3
f55871
f55871
* Wed Dec 12 2007 Jakub Jelinek <jakub@redhat.com> 2.18.50.0.3-1
f55871
- update to 2.18.50.0.3
f55871
  - fix build with recent makeinfo (#415271)
f55871
f55871
* Thu Aug 16 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.18-1
f55871
- update to 2.17.50.0.18
f55871
  - GPLv3+
f55871
  - preserve .note.gnu.build-id in objcopy --only-keep-debug (#251935)
f55871
  - fix sparc64/alpha broken by --build-id patch (#252936)
f55871
- update License tag
f55871
- fix ld crash with --build-id and non-ELF output format (Alan Modra, BZ#4923)
f55871
f55871
* Tue Jul 31 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.17-7
f55871
- fix ppc32 secure PLT detection (Alan Modra)
f55871
f55871
* Wed Jul 25 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.17-6
f55871
- rebuilt to make sure even libbfd.so and libopcodes.so aren't
f55871
  broken by #249435
f55871
f55871
* Tue Jul 24 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.17-5
f55871
- add .note.gnu.build-id into default linker script (#249435)
f55871
f55871
* Tue Jul 24 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.17-4
f55871
- don't kill the %%{_gnu} part of target name on arm
f55871
  (Lennert Buytenhek, #243516)
f55871
- create just one PT_NOTE segment header for all consecutive SHT_NOTE
f55871
  sections
f55871
f55871
* Wed Jul 18 2007 Roland McGrath <roland@redhat.com> 2.17.50.0.17-3
f55871
- fix for ld --build-id
f55871
f55871
* Sun Jul 15 2007 Roland McGrath <roland@redhat.com> 2.17.50.0.17-2
f55871
- ld --build-id support
f55871
f55871
* Wed Jun 27 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.17-1
f55871
- update to 2.17.50.0.17
f55871
f55871
* Tue Jun 12 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.16-1
f55871
- update to 2.17.50.0.16
f55871
f55871
* Sat Apr 14 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.12-4
f55871
- fix linking non-ELF input objects into ELF output (#235747)
f55871
f55871
* Wed Mar 14 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.12-3
f55871
- don't require matching ELF_OSABI for target vecs with ELFOSABI_NONE,
f55871
  only prefer specific osabi target vecs over the generic ones
f55871
  (H.J.Lu, #230964, BZ#3826)
f55871
- build libbfd.so and libopcodes.so with -Bsymbolic-functions
f55871
f55871
* Fri Mar  2 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.12-2
f55871
- ignore install-info errors from scriptlets (#223678)
f55871
f55871
* Thu Mar  1 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.12-1
f55871
- update to 2.17.50.0.12
f55871
- revert the misdesigned LD_SYMBOLIC{,_FUNCTIONS} env var support,
f55871
  only support -Bsymbolic/-Bsymbolic-functions/--dynamic-list*
f55871
f55871
* Mon Jan  8 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.9-1
f55871
- update to 2.17.50.0.9
f55871
- fix tekhex reader
f55871
f55871
* Sat Dec 23 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.8-2
f55871
- fix --as-needed on ppc64 (#219629)
f55871
f55871
* Sun Dec  3 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.8-1
f55871
- update to 2.17.50.0.8
f55871
- initialize frch_cfi_data (BZ#3607)
f55871
f55871
* Fri Dec  1 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.7-1
f55871
- update to 2.17.50.0.7
f55871
  - .cfi_personality and .cfi_lsda directives, per subsection .cfi_*
f55871
    directives, better .eh_frame CIE merging
f55871
f55871
* Thu Nov  9 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.6-3
f55871
- fix popcnt instruction assembly and disassembly on amd64 (#214767)
f55871
f55871
* Mon Oct 23 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.6-2
f55871
- update to 2.17.50.0.6
f55871
  - fix for section relative linker script defined symbols in
f55871
    empty sections (#207598, BZ#3267)
f55871
  - fix handling of DW_CFA_set_loc in .eh_frame optimizations
f55871
  - fix R_PPC_{PLT,GOT{,_TLSGD,_TLSLD,_TPREL,_DTPREL}}16_HA relocation
f55871
    handling with weak undefined symbols (Alan Modra, #211094)
f55871
f55871
* Tue Sep 12 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.3-6
f55871
- fix multilib conflict in %%{_prefix}/include/bfd.h
f55871
f55871
* Tue Sep 12 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.3-5
f55871
- fix efi-app-ia64 magic number (#206002, BZ#3171)
f55871
f55871
* Tue Sep  5 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.3-4
f55871
- link libopcodes*.so against libbfd*.so (#202327)
f55871
- split *.a and header files into binutils-devel
f55871
f55871
* Fri Aug 18 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.3-3
f55871
- on ppc and ppc64 increase default -z commonpagesize to 64K (#203001)
f55871
f55871
* Fri Jul 28 2006 Alexandre Oliva <aoliva@redhat.com> 2.17.50.0.3-2
f55871
- do not infer x86 arch implicitly based on instruction in the input
f55871
  (#200330)
f55871
f55871
* Mon Jul 17 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.3-1
f55871
- update to 2.17.50.0.3
f55871
f55871
* Fri Jul 14 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.2-8
f55871
- add support for new AMDFAM10 instructions (#198281, IT#97662)
f55871
- add -march=/-mtune= gas support on x86/x86-64
f55871
- x86/x86-64 nop insn improvements
f55871
- fix DT_GNU_HASH shift count value computation
f55871
f55871
* Tue Jul 11 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.2-7
f55871
- add DT_GNU_HASH support (--hash-style=gnu and --hash-style=both
f55871
  ld options)
f55871
f55871
* Thu Jun 29 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.2-4
f55871
- fix i?86 TLS GD->IE transition in executables (#196157, BZ#2513)
f55871
f55871
* Mon Jun 19 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.2-3
f55871
- fix two places in ld that misbehaved with MALLOC_PERTURB_=N
f55871
- fix .tls_common handling in relocatable linking
f55871
f55871
* Mon Jun  5 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.2-2
f55871
- fix --as-needed (Alan Modra, #193689, BZ#2721)
f55871
f55871
* Thu Jun  1 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.2-1
f55871
- update to 2.17.50.0.2
f55871
- update from CVS to 20060601
f55871
- speed up the ELF linker by caching the result of kept section check
f55871
  (H.J. Lu)
f55871
f55871
* Tue May  9 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.1-1
f55871
- update to 2.17.50.0.1
f55871
f55871
* Fri Mar 31 2006 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.6-6
f55871
- fix ld error message formatting, so that collect2 parser can
f55871
  parse it again for g++ -frepo (#187142)
f55871
f55871
* Thu Mar  9 2006 Alexandre Oliva <aoliva@redhat.com> 2.16.91.0.6-4
f55871
- fix relaxation of TLS GD to LE on PPC (#184590)
f55871
f55871
* Fri Mar  3 2006 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.6-3
f55871
- support DW_CFA_val_{offset,offset_sf,expression} in readelf/objdump
f55871
f55871
* Tue Feb 28 2006 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.6-2
f55871
- add MNI support on i?86/x86_64 (#183080)
f55871
- support S signal frame augmentation flag in .eh_frame,
f55871
  add .cfi_signal_frame support (#175951, PR other/26208, BZ#300)
f55871
f55871
* Tue Feb 14 2006 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.6-1
f55871
- update to 2.16.91.0.6
f55871
  - fix ppc64 --gc-sections
f55871
  - disassembler fixes for x86_64 cr/debug regs
f55871
  - fix linker search order for DT_NEEDED libs
f55871
f55871
* Mon Jan 02 2006 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.5-1
f55871
- update to 2.16.91.0.5
f55871
- don't error about .toc1 references to discarded sectiosn on ppc64
f55871
  (#175944)
f55871
f55871
* Wed Dec 14 2005 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.3-2
f55871
- put .gnu.linkonce.d.rel.ro.* sections into relro region
f55871
f55871
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
f55871
- rebuilt
f55871
f55871
* Fri Nov 11 2005 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.3-1
f55871
- update to 2.16.91.0.3
f55871
- add .weakref support (Alexandre Oliva, #115157, #165728)
f55871
f55871
* Thu Aug 18 2005 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.2-4
f55871
- install-info also configure.info
f55871
- update standards.texi from gnulib (#165530)
f55871
f55871
* Tue Aug 16 2005 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.2-3
f55871
- update to 20050816 CVS
f55871
- better fix for ld-cdtest
f55871
- fix symbol version script parsing
f55871
f55871
* Fri Jul 29 2005 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.2-2
f55871
- don't complain about relocs to discarded sections in ppc32
f55871
  .got2 sections (Alan Modra, PR target/17828)
f55871
f55871
* Fri Jul 22 2005 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.2-1
f55871
- update to 2.16.91.0.2
f55871
f55871
* Thu Jul 21 2005 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.1-3
f55871
- fix buffer overflow in readelf ia64 unwind printing code
f55871
- use vsnprintf rather than vsprintf in gas diagnostics (Tavis Ormandy)
f55871
- fix ld-cdtest when CFLAGS contains -fexceptions
f55871
f55871
* Wed Jul 20 2005 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.1-2
f55871
- update to 20050720 CVS
f55871
f55871
* Mon Jul 11 2005 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.1-1
f55871
- update to 2.16.91.0.1 plus 20050708 CVS
f55871
f55871
* Wed Jun 15 2005 Jakub Jelinek <jakub@redhat.com> 2.16.90.0.3-1
f55871
- update to 2.16.90.0.3
f55871
- update to 20050615 CVS
f55871
  - ppc32 secure PLT support (Alan Modra)
f55871
- further bfd/readelf robustification
f55871
f55871
* Sat Jun 11 2005 Jakub Jelinek <jakub@redhat.com> 2.15.94.0.2.2-4
f55871
- further bfd robustification (CAN-2005-1704, #158680)
f55871
f55871
* Fri Jun 10 2005 Jakub Jelinek <jakub@redhat.com> 2.15.94.0.2.2-3
f55871
- further objdump and readelf robustification (CAN-2005-1704, #158680)
f55871
f55871
* Wed May 25 2005 Jakub Jelinek <jakub@redhat.com> 2.15.94.0.2.2-2
f55871
- bfd and readelf robustification (CAN-2005-1704, #158680)
f55871
f55871
* Tue Mar 29 2005 Jakub Jelinek <jakub@redhat.com> 2.15.94.0.2.2-1
f55871
- update to 2.15.94.0.2.2
f55871
- speed up walk_wild_section (Robert O'Callahan)
f55871
f55871
* Mon Mar  7 2005 Jakub Jelinek <jakub@redhat.com> 2.15.94.0.2-4
f55871
- rebuilt with GCC 4
f55871
f55871
* Mon Feb 28 2005 Jakub Jelinek <jakub@redhat.com> 2.15.94.0.2-3
f55871
- fix buffer overflows in readelf (#149506)
f55871
- move c++filt to binutils from gcc-c++, conflict with gcc-c++ < 4.0 (#86333)
f55871
f55871
* Thu Feb 10 2005 Jakub Jelinek <jakub@redhat.com> 2.15.94.0.2-1
f55871
- update to 2.15.94.0.2
f55871
- fix .note.GNU-stack/PT_GNU_STACK computation in linker on ppc64 (#147296)
f55871
- fix stripping of binaries/libraries that have empty sections right before
f55871
  .dynamic section (with the same starting address; #144038)
f55871
- handle AS_NEEDED (...) in linker script INPUT/GROUP
f55871
f55871
* Tue Dec 14 2004 Jakub Jelinek <jakub@redhat.com> 2.15.92.0.2-11
f55871
- fix a longstanding -z relro bug
f55871
f55871
* Mon Dec 13 2004 Jakub Jelinek <jakub@redhat.com> 2.15.92.0.2-10
f55871
- avoid unnecessary gap with -z relro showing on i686 libc.so
f55871
- ppc64 --emit-relocs fix (Alan Modra)
f55871
- don't crash if STT_SECTION symbol has incorrect st_shndx (e.g. SHN_ABS,
f55871
  as created by nasm; #142181)
f55871
- don't try to make absptr LSDAs relative if they don't have relocations
f55871
  against them (Alan Modra, #141162)
f55871
f55871
* Wed Oct 27 2004 Jakub Jelinek <jakub@redhat.com> 2.15.92.0.2-5.EL4
f55871
- fix ar xo (#104344)
f55871
f55871
* Wed Oct 20 2004 Jakub Jelinek <jakub@redhat.com> 2.15.92.0.2-5
f55871
- fix --just-symbols on ppc64 (Alan Modra, #135498)
f55871
f55871
* Fri Oct 15 2004 Jakub Jelinek <jakub@redhat.com> 2.15.92.0.2-4
f55871
- fix code detecting matching linkonce and single member comdat
f55871
  group sections (#133078)
f55871
f55871
* Mon Oct 11 2004 Jakub Jelinek <jakub@redhat.com> 2.15.92.0.2-3
f55871
- revert Sep 09 change to make ppc L second argument e.g. for tlbie
f55871
  non-optional
f55871
- fix stripping of prelinked binaries and libraries (#133734)
f55871
- allow strings(1) on 32-bit arches to be used again with > 2GB
f55871
  files (#133555)
f55871
f55871
* Mon Oct  4 2004 Jakub Jelinek <jakub@redhat.com> 2.15.92.0.2-2
f55871
- update to 2.15.92.0.2
f55871
- change ld's ld.so.conf parser to match ldconfig's (#129340)
f55871
f55871
* Mon Sep 20 2004 Jakub Jelinek <jakub@redhat.com> 2.15.91.0.2-9
f55871
- avoid almost 1MB (sparse) gaps in the middle of -z relro
f55871
  libraries on x86-64 (Andreas Schwab)
f55871
- fix -z relro to make sure end of PT_GNU_RELRO segment is always
f55871
  COMMONPAGESIZE aligned
f55871
f55871
* Wed Aug 18 2004 Jakub Jelinek <jakub@redhat.com> 2.15.91.0.2-8
f55871
- fix linker segfaults on input objects with SHF_LINK_ORDER with
f55871
  incorrect sh_link (H.J.Lu, Nick Clifton, #130198, BZ #290)
f55871
f55871
* Wed Aug 18 2004 Jakub Jelinek <jakub@redhat.com> 2.15.91.0.2-7
f55871
- resolve all undefined ppc64 .* syms to the function bodies through
f55871
  .opd, not just those used in brach instructions (Alan Modra)
f55871
f55871
* Tue Aug 17 2004 Jakub Jelinek <jakub@redhat.com> 2.15.91.0.2-6
f55871
- fix ppc64 ld --dotsyms (Alan Modra)
f55871
f55871
* Tue Aug 17 2004 Jakub Jelinek <jakub@redhat.com> 2.15.91.0.2-5
f55871
- various ppc64 make check fixes when using non-dot-syms gcc (Alan Modra)
f55871
- fix --gc-sections
f55871
- on ia64 create empty .gnu.linkonce.ia64unw*.* sections for
f55871
  .gnu.linkonce.t.* function doesn't need unwind info
f55871
f55871
* Mon Aug 16 2004 Jakub Jelinek <jakub@redhat.com> 2.15.91.0.2-4
f55871
- kill ppc64 dot symbols (Alan Modra)
f55871
- objdump -d support for objects without dot symbols
f55871
- support for overlapping ppc64 .opd entries
f55871
f55871
* Mon Aug 9 2004 Jakub Jelinek <jakub@redhat.com> 2.15.91.0.2-3
f55871
- fix a newly introduced linker crash on x86-64
f55871
f55871
* Sun Aug 8 2004 Alan Cox <alan@redhat.com> 2.15.91.0.2-2
f55871
- BuildRequire bison and macroise buildroot - from Steve Grubb
f55871
f55871
* Fri Jul 30 2004 Jakub Jelinek <jakub@redhat.com> 2.15.91.0.2-1
f55871
- update to 2.15.91.0.2
f55871
- BuildRequire flex (#117763)
f55871
f55871
* Wed May 19 2004 Jakub Jelinek <jakub@redhat.com> 2.15.90.0.3-7
f55871
- use lib64 instead of lib directories on ia64 if %%{_lib} is
f55871
  set to lib64 by rpm
f55871
f55871
* Sat May 15 2004 Jakub Jelinek <jakub@redhat.com> 2.15.90.0.3-6
f55871
- fix a bug introduced in the ++/-- rejection patch
f55871
  from 2.15.90.0.3 (Alan Modra)
f55871
f55871
* Tue May  4 2004 Jakub Jelinek <jakub@redhat.com> 2.15.90.0.3-5
f55871
- fix s390{,x} .{,b,p2}align handling
f55871
- ppc/ppc64 testsuite fix
f55871
f55871
* Mon May  3 2004 Jakub Jelinek <jakub@redhat.com> 2.15.90.0.3-4
f55871
- -z relro ppc/ppc64/ia64 fixes
f55871
- change x86-64 .plt symbol st_size handling to match ia32
f55871
- prettify objdump -d output
f55871
f55871
* Tue Apr 20 2004 Jakub Jelinek <jakub@redhat.com> 2.15.90.0.3-3
f55871
- several SPARC fixes
f55871
f55871
* Sun Apr 18 2004 Jakub Jelinek <jakub@redhat.com> 2.15.90.0.3-2
f55871
- yet another fix for .tbss handling
f55871
f55871
* Fri Apr 16 2004 Jakub Jelinek <jakub@redhat.com> 2.15.90.0.3-1
f55871
- update to 2.15.90.0.3
f55871
f55871
* Fri Mar 26 2004 Jakub Jelinek <jakub@redhat.com> 2.15.90.0.1.1-2
f55871
- update to 20040326 CVS
f55871
  - fix ppc64 weak .opd symbol handling (Alan Modra, #119086)
f55871
- fix .tbss handling bug introduced
f55871
f55871
* Fri Mar 26 2004 Jakub Jelinek <jakub@redhat.com> 2.15.90.0.1.1-1
f55871
- update to 2.15.90.0.1.1
f55871
f55871
* Sat Feb 21 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.8-8
f55871
- with -z now without --enable-new-dtags create DT_BIND_NOW
f55871
  dynamic entry in addition to DT_FLAGS_1 with DF_1_NOW bit set
f55871
f55871
* Fri Feb 20 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.8-7
f55871
- fix -pie on ppc32
f55871
f55871
* Fri Feb 20 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.8-6
f55871
- clear .plt sh_entsize on sparc32
f55871
- put whole .got into relro area with -z now -z relro
f55871
f55871
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
f55871
- rebuilt
f55871
f55871
* Thu Jan 22 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.8-4
f55871
- fix -pie on IA64
f55871
f55871
* Mon Jan 19 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.8-3
f55871
- fix testcases on s390 and s390x
f55871
f55871
* Fri Jan 16 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.8-2
f55871
- fix testcases on AMD64
f55871
- fix .got's sh_entsize on IA32/AMD64
f55871
- set COMMONPAGESIZE on s390/s390x
f55871
- set COMMONPAGESIZE on ppc32 (Alan Modra)
f55871
f55871
* Fri Jan 16 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.8-1
f55871
- update to 2.14.90.0.8
f55871
f55871
* Tue Jan 13 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.7-4
f55871
- fix -z relro on 64-bit arches
f55871
f55871
* Mon Jan 12 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.7-3
f55871
- fix some bugs in -z relro support
f55871
f55871
* Fri Jan  9 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.7-2
f55871
- -z relro support, reordering of RW sections
f55871
f55871
* Fri Jan  9 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.7-1
f55871
- update to 2.14.90.0.7
f55871
f55871
* Mon Nov 24 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.6-4
f55871
- fix assembly parsing of foo=(.-bar)/4 (Alan Modra)
f55871
- fix IA-64 assembly parsing of (p7) hint @pause
f55871
f55871
* Tue Sep 30 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.6-3
f55871
- don't abort on some linker warnings/errors on IA-64
f55871
f55871
* Sat Sep 20 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.6-2
f55871
- fix up merge2.s to use .p2align instead of .align
f55871
f55871
* Sat Sep 20 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.6-1
f55871
- update to 2.14.90.0.6
f55871
- speed up string merging (Lars Knoll, Michael Matz, Alan Modra)
f55871
- speed up IA-64 local symbol handling during linking
f55871
f55871
* Fri Sep  5 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.5-7
f55871
- avoid ld -s segfaults introduced in 2.14.90.0.5-5 (Dmitry V. Levin,
f55871
  #103180)
f55871
f55871
* Fri Aug 29 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.5-6
f55871
- build old demangler into libiberty.a (#102268)
f55871
- SPARC .cfi* support
f55871
f55871
* Tue Aug  5 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.5-5
f55871
- fix orphan section placement
f55871
f55871
* Tue Jul 29 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.5-4
f55871
- fix ppc64 elfvsb linker tests
f55871
- some more 64-bit cleanliness fixes, give ppc64 fdesc symbols
f55871
  type and size (Alan Modra)
f55871
f55871
* Tue Jul 29 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.5-3
f55871
- fix 64-bit unclean code in ppc-opc.c
f55871
f55871
* Mon Jul 28 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.5-2
f55871
- fix 64-bit unclean code in tc-ppc.c
f55871
f55871
* Mon Jul 28 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.5-1
f55871
- update to 2.14.90.0.5
f55871
- fix ld -r on ppc64 (Alan Modra)
f55871
f55871
* Fri Jul 18 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-23
f55871
- rebuilt
f55871
f55871
* Thu Jul 17 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-22
f55871
- fix elfNN_ia64_dynamic_symbol_p (Richard Henderson, #86661)
f55871
- don't access memory beyond what was allocated in readelf
f55871
  (Richard Henderson)
f55871
f55871
* Thu Jul 10 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-21
f55871
- add .cfi_* support on ppc{,64} and s390{,x}
f55871
f55871
* Tue Jul  8 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-20
f55871
- remove lib{bfd,opcodes}.la (#98190)
f55871
f55871
* Mon Jul  7 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-19
f55871
- fix -pie support on amd64, s390, s390x and ppc64
f55871
- issue relocation overflow errors for s390/s390x -fpic code when
f55871
  accessing .got slots above 4096 bytes from .got start
f55871
f55871
* Thu Jul  3 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-18
f55871
- rebuilt
f55871
f55871
* Thu Jul  3 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-17
f55871
- fix ia64 -pie support
f55871
- require no undefined non-weak symbols in PIEs like required for normal
f55871
  binaries
f55871
f55871
* Wed Jul  2 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-16
f55871
- fix readelf -d on IA-64
f55871
- build libiberty.a with -fPIC, so that it can be lined into shared
f55871
  libraries
f55871
f55871
* Wed Jun 25 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-15
f55871
- rebuilt
f55871
f55871
* Wed Jun 25 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-14
f55871
- added support for Intel Prescott instructions
f55871
- fix hint@pause for ia64
f55871
- add workaround for LTP sillyness (#97934)
f55871
f55871
* Wed Jun 18 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-13
f55871
- update CFI stuff to 2003-06-18
f55871
- make sure .eh_frame is aligned to 8 bytes on 64-bit arches,
f55871
  remove padding within one .eh_frame section
f55871
f55871
* Tue Jun 17 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-12
f55871
- rebuilt
f55871
f55871
* Tue Jun 17 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-11
f55871
- one more fix for the same patch
f55871
f55871
* Tue Jun 17 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-10
f55871
- fix previous patch
f55871
f55871
* Mon Jun 16 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-9
f55871
- ensure R_PPC64_{RELATIVE,ADDR64} have *r_offset == r_addend
f55871
  and the other relocs have *r_offset == 0
f55871
f55871
* Tue Jun 10 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-8
f55871
- remove some unnecessary provides in ppc64 linker script
f55871
  which were causing e.g. empty .ctors/.dtors section creation
f55871
f55871
* Fri Jun  6 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-7
f55871
- some CFI updates/fixes
f55871
- don't create dynamic relocations against symbols defined in PIE
f55871
  exported from its .dynsym
f55871
f55871
* Wed Jun  4 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-6
f55871
- update gas to 20030604
f55871
- PT_GNU_STACK support
f55871
f55871
* Mon Jun  2 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-5
f55871
- buildrequire gettext (#91838)
f55871
f55871
* Sat May 31 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-4
f55871
- fix shared libraries with >= 8192 .plt slots on ppc32
f55871
f55871
* Thu May 29 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-3
f55871
- rebuilt
f55871
f55871
* Thu May 29 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-2
f55871
- rename ld --dynamic option to --pic-executable or --pie
f55871
- fix ld --help output
f55871
- document --pie/--pic-executable in ld.info and ld.1
f55871
f55871
* Wed May 28 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-1
f55871
- update to 2.14.90.0.4-1
f55871
- gas CFI updates (Richard Henderson)
f55871
- dynamic executables (Ulrich Drepper)
f55871
f55871
* Tue May 20 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.2-2
f55871
- fix ELF visibility handling
f55871
- tidy plt entries on IA-32, ppc and ppc64
f55871
f55871
* Mon May 19 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.2-1
f55871
- update to 2.14.90.0.2-1
f55871
f55871
* Tue May 13 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.20-8
f55871
- fix bfd_elf_hash on 64-bit arches (Andrew Haley)
f55871
f55871
* Wed Apr 30 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.20-7
f55871
- rebuilt
f55871
f55871
* Mon Apr 14 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.20-6
f55871
- optimize DW_CFA_advance_loc4 in gas even if there is 'z' augmentation
f55871
  with size 0 in FDE
f55871
f55871
* Fri Apr 11 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.20-5
f55871
- fix SPARC build
f55871
f55871
* Thu Apr  3 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.20-4
f55871
- fix ppc32 plt reference counting
f55871
- don't include %%{_prefix}/%%{_lib}/debug in the non-debuginfo package
f55871
  (#87729)
f55871
f55871
* Mon Mar 31 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.20-3
f55871
- make elf64ppc target native extra on ppc and elf32ppc native extra
f55871
  on ppc64.
f55871
f55871
* Fri Mar 28 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.20-2
f55871
- fix TLS on IA-64 with ld relaxation
f55871
f55871
* Sat Mar 22 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.20-1
f55871
- update to 2.13.90.0.20
f55871
f55871
* Mon Feb 24 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.18-9
f55871
- rebuilt
f55871
f55871
* Mon Feb 24 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.18-8
f55871
- don't strip binaries in %%install, so that there is non-empty
f55871
  debuginfo
f55871
f55871
* Mon Feb 24 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.18-7
f55871
- don't optimize .eh_frame during ld -r
f55871
f55871
* Thu Feb 13 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.18-6
f55871
- don't clear elf_link_hash_flags in the .symver patch
f55871
- only use TC_FORCE_RELOCATION in s390's TC_FORCE_RELOCATION_SUB_SAME
f55871
  (Alan Modra)
f55871
f55871
* Mon Feb 10 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.18-5
f55871
- fix the previous .symver change
f55871
- remove libbfd.so and libopcodes.so symlinks, so that other packages
f55871
  link statically, not dynamically against libbfd and libopcodes
f55871
  whose ABI is everything but stable
f55871
f55871
* Mon Feb 10 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.18-4
f55871
- do .symver x, x@FOO handling earlier
f55871
- support .file and .loc on s390*
f55871
f55871
* Mon Feb 10 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.18-3
f55871
- handle .symver x, x@FOO in ld such that relocs against x become
f55871
  dynamic relocations against x@FOO (#83325)
f55871
- two PPC64 TLS patches (Alan Modra)
f55871
f55871
* Sun Feb 09 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.18-2
f55871
- fix SEARCH_DIR on x86_64/s390x
f55871
- fix Alpha --relax
f55871
- create DT_RELA{,SZ,ENT} on s390 even if there is just .rela.plt
f55871
  and no .rela.dyn section
f55871
- support IA-32 on IA-64 (#83752)
f55871
- .eh_frame_hdr fix (Andreas Schwab)
f55871
f55871
* Thu Feb 06 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.18-1
f55871
- update to 2.13.90.0.18 + 20030121->20030206 CVS diff
f55871
f55871
* Tue Feb 04 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.16-8
f55871
- alpha TLS fixes
f55871
- use .debug_line directory table to make the section tiny bit smaller
f55871
- libtool fix from Jens Petersen
f55871
f55871
* Sun Feb 02 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.16-7
f55871
- sparc32 TLS
f55871
f55871
* Fri Jan 24 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.16-6
f55871
- s390{,x} TLS and two other mainframe patches
f55871
f55871
* Fri Jan 17 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.16-5
f55871
- fix IA-64 TLS IE in shared libs
f55871
- .{preinit,init,fini}_array compat hack from Alexandre Oliva
f55871
f55871
* Thu Jan 16 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.16-4
f55871
- IA-64 TLS fixes
f55871
- fix .plt sh_entsize on Alpha
f55871
- build with %%_smp_mflags
f55871
f55871
* Sat Nov 30 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.16-3
f55871
- fix strip on TLS binaries and libraries
f55871
f55871
* Fri Nov 29 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.16-2
f55871
- fix IA-64 ld bootstrap
f55871
f55871
* Thu Nov 28 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.16-1
f55871
- update to 2.13.90.0.16
f55871
- STT_TLS SHN_UNDEF fix
f55871
f55871
* Wed Nov 27 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.10-4
f55871
- pad .rodata.cstNN sections at the end if they aren't sized to multiple
f55871
  of sh_entsize
f55871
- temporary patch to make .eh_frame and .gcc_except_table sections
f55871
  readonly if possible (should be removed when AUTO_PLACE is implemented)
f55871
- fix .PPC.EMB.apuinfo section flags
f55871
f55871
* Wed Oct 23 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.10-3
f55871
- fix names and content of alpha non-alloced .rela.* sections (#76583)
f55871
- delete unpackaged files from the buildroot
f55871
f55871
* Tue Oct 15 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.10-2
f55871
- enable s390x resp. s390 emulation in linker too
f55871
f55871
* Mon Oct 14 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.10-1
f55871
- update to 2.13.90.0.10
f55871
- add a bi-arch patch for sparc/s390/x86_64
f55871
- add --enable-64-bit-bfd on sparc, s390 and ppc
f55871
f55871
* Thu Oct 10 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.4-3
f55871
- fix combreloc testcase
f55871
f55871
* Thu Oct 10 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.4-2
f55871
- fix orphan .rel and .rela section placement with -z combreloc (Alan Modra)
f55871
- skip incompatible linker scripts when searching for libraries
f55871
f55871
* Tue Oct  1 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.4-1
f55871
- update to 2.13.90.0.4
f55871
- x86-64 TLS support
f55871
- some IA-32 TLS fixes
f55871
- some backported patches from trunk
f55871
- include opcodes, ld, gas and bfd l10n too
f55871
f55871
* Thu Sep 19 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.2-3
f55871
- allow addends for IA-32 TLS @tpoff, @ntpoff and @dtpoff
f55871
- clear memory at *r_offset of dynamic relocs on PPC
f55871
- avoid ld crash if accessing non-local symbols through LE relocs
f55871
- new IA-32 TLS relocs, bugfixes and testcases
f55871
- use brl insn on IA-64 (Richard Henderson)
f55871
- fix R_IA64_PCREL21{M,F} handling (Richard Henderson)
f55871
- build in separate builddir, so that gasp tests don't fail
f55871
- include localization
f55871
f55871
* Thu Aug  8 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.2-2
f55871
- fix R_386_TPOFF32 addends (#70824)
f55871
f55871
* Sat Aug  3 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.2-1
f55871
- update to 2.13.90.0.2
f55871
  - fix ld TLS assertion failure (#70084)
f55871
  - fix readelf --debug-dump= handling to match man page and --help
f55871
    (#68997)
f55871
- fix _GLOBAL_OFFSET_TABLE gas handling (#70241)
f55871
f55871
* Wed Jul 24 2002 Jakub Jelinek <jakub@redhat.com> 2.12.90.0.15-1
f55871
- update to 2.12.90.0.15
f55871
- TLS .tbss fix
f55871
- don't use rpm %%configure macro, it is broken too often (#69366)
f55871
f55871
* Thu May 30 2002 Jakub Jelinek <jakub@redhat.com> 2.12.90.0.9-1
f55871
- update to 2.12.90.0.9
f55871
  - TLS support
f55871
- remove gasp.info from %%post/%%preun (#65400)
f55871
f55871
* Mon Apr 29 2002 Jakub Jelinek <jakub@redhat.com> 2.12.90.0.7-1
f55871
- update to 2.12.90.0.7
f55871
- run make check
f55871
f55871
* Mon Apr 29 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-12
f55871
- fix .hidden handling on SPARC (Richard Henderson)
f55871
- don't crash when linking -shared non-pic code with SHF_MERGE
f55871
- fix .eh_frame_hdr for DW_EH_PE_aligned
f55871
- correctly adjust DW_EH_PE_pcrel encoded personalities in CIEs
f55871
f55871
* Fri Apr  5 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-11
f55871
- don't emit dynamic R_SPARC_DISP* relocs against STV_HIDDEN symbols
f55871
  into shared libraries
f55871
f55871
* Thu Mar 21 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-10
f55871
- don't merge IA-64 unwind info sections together during ld -r
f55871
f55871
* Mon Mar 11 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-9
f55871
- fix DATA_SEGMENT_ALIGN on ia64/alpha/sparc/sparc64
f55871
f55871
* Fri Mar  8 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-8
f55871
- don't crash on SHN_UNDEF local dynsyms (Andrew MacLeod)
f55871
f55871
* Thu Mar  7 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-7
f55871
- fix bfd configury bug (Alan Modra)
f55871
f55871
* Tue Mar  5 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-6
f55871
- don't copy visibility when equating symbols
f55871
- fix alpha .text/.data with .previous directive bug
f55871
f55871
* Tue Mar  5 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-5
f55871
- fix SHF_MERGE crash with --gc-sections (#60369)
f55871
- C++ symbol versioning patch
f55871
f55871
* Fri Feb 22 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-4
f55871
- add DW_EH_PE_absptr -> DW_EH_PE_pcrel optimization for shared libs,
f55871
  if DW_EH_PE_absptr cannot be converted that way, don't build the
f55871
  .eh_frame_hdr search table
f55871
f55871
* Fri Feb 15 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-3
f55871
- fix ld -N broken by last patch
f55871
f55871
* Tue Feb 12 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-2
f55871
- trade one saved runtime page for data segment (=almost always not shared)
f55871
  for up to one page of disk space where possible
f55871
f55871
* Fri Feb  8 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-1
f55871
- update to 2.11.93.0.2
f55871
- use %%{ix86} instead of i386 for -z combreloc default (#59086)
f55871
f55871
* Thu Jan 31 2002 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-10
f55871
- don't create SHN_UNDEF STB_WEAK symbols unless there are any relocations
f55871
  against them
f55871
f55871
* Wed Jan 30 2002 Bill Nottingham <notting@redhat.com> 2.11.92.0.12-9.1
f55871
- rebuild (fix ia64 miscompilation)
f55871
f55871
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
f55871
- automated rebuild
f55871
f55871
* Fri Dec 28 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-8
f55871
- two further .eh_frame patch fixes
f55871
f55871
* Wed Dec 19 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-7
f55871
- as ld is currently not able to shrink input sections to zero size
f55871
  during discard_info, build a fake minimal CIE in that case
f55871
- update elf-strtab patch to what was commited
f55871
f55871
* Mon Dec 17 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-6
f55871
- one more .eh_frame patch fix
f55871
- fix alpha .eh_frame handling
f55871
- optimize elf-strtab finalize
f55871
f55871
* Sat Dec 15 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-5
f55871
- yet another fix for the .eh_frame patch
f55871
f55871
* Fri Dec 14 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-4
f55871
- Alan Modra's patch to avoid crash if there is no dynobj
f55871
f55871
* Thu Dec 13 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-3
f55871
- H.J.'s patch to avoid crash if input files are not ELF
f55871
- don't crash if a SHF_MERGE for some reason could not be merged
f55871
- fix objcopy/strip to preserve SHF_MERGE sh_entsize
f55871
- optimize .eh_frame sections, add PT_GNU_EH_FRAME support
f55871
- support anonymous version tags in version script
f55871
f55871
* Tue Nov 27 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-2
f55871
- fix IA-64 SHF_MERGE handling
f55871
f55871
* Tue Nov 27 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-1
f55871
- update to 2.11.92.0.12
f55871
  - optimize .dynstr and .shstrtab sections (#55524)
f55871
  - fix ld.1 glitch (#55459)
f55871
- turn relocs against SHF_MERGE local symbols with zero addend
f55871
  into STT_SECTION + addend
f55871
- remove man pages for programs not included (nlmconv, windres, dlltool;
f55871
  #55456, #55461)
f55871
- add BuildRequires for texinfo
f55871
f55871
* Thu Oct 25 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.7-2
f55871
- duh, fix strings on bfd objects (#55084)
f55871
f55871
* Sat Oct 20 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.7-1
f55871
- update to 2.11.92.0.7
f55871
- remove .rel{,a}.dyn from output if it is empty
f55871
f55871
* Thu Oct 11 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.5-2
f55871
- fix strings patch
f55871
- use getc_unlocked in strings to speed it up by 50% on large files
f55871
f55871
* Wed Oct 10 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.5-1
f55871
- update to 2.11.92.0.5
f55871
  - binutils localization (#45148)
f55871
  - fix typo in REPORT_BUGS_TO (#54325)
f55871
- support files bigger than 2GB in strings (#54406)
f55871
f55871
* Wed Sep 26 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-12
f55871
- on IA-64, don't mix R_IA64_IPLTLSB relocs with non-PLT relocs in
f55871
  .rela.dyn section.
f55871
f55871
* Tue Sep 25 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-11
f55871
- add iplt support for IA-64 (Richard Henderson)
f55871
- switch to new section flags for SHF_MERGE and SHF_STRINGS, put
f55871
  in compatibility code
f55871
- "s" section flag for small data sections on IA-64 and Alpha
f55871
  (Richard Henderson)
f55871
- fix sparc64 .plt[32768+] handling
f55871
- don't emit .rela.stab on sparc
f55871
f55871
* Mon Sep 10 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-10
f55871
- fix SHF_MERGE on Sparc
f55871
f55871
* Fri Aug 31 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-9
f55871
- on Alpha, copy *r_offset to R_ALPHA_RELATIVE's r_addend
f55871
f55871
* Thu Aug 30 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-8
f55871
- on IA-64, put crtend{,S}.o's .IA_64.unwind section last in
f55871
  .IA_64.unwind output section (for compatibility with 7.1 eh)
f55871
f55871
* Fri Aug 24 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-7
f55871
- put RELATIVE relocs first, not last
f55871
- enable -z combreloc by default on IA-{32,64}, Alpha, Sparc*
f55871
f55871
* Thu Aug 23 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-6
f55871
- support for -z combreloc
f55871
- remove .dynamic patch, -z combreloc patch does this better
f55871
- set STT_FUNC default symbol sizes in .endp directive on IA-64
f55871
f55871
* Mon Jul 16 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-5
f55871
- fix last patch (H.J.Lu)
f55871
f55871
* Fri Jul 13 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-4
f55871
- fix placing of orphan sections
f55871
f55871
* Sat Jun 23 2001 Jakub Jelinek <jakub@redhat.com>
f55871
- fix SHF_MERGE support on Alpha
f55871
f55871
* Fri Jun  8 2001 Jakub Jelinek <jakub@redhat.com>
f55871
- 2.11.90.0.8
f55871
  - some SHF_MERGE suport fixes
f55871
- don't build with tooldir /usrusr instead of /usr (#40937)
f55871
- reserve few .dynamic entries for prelinking
f55871
f55871
* Mon Apr 16 2001 Jakub Jelinek <jakub@redhat.com>
f55871
- 2.11.90.0.5
f55871
  - SHF_MERGE support
f55871
f55871
* Tue Apr  3 2001 Jakub Jelinek <jakub@redhat.com>
f55871
- 2.11.90.0.4
f55871
  - fix uleb128 support, so that CVS gcc bootstraps
f55871
  - some ia64 fixes
f55871
f55871
* Mon Mar 19 2001 Jakub Jelinek <jakub@redhat.com>
f55871
- add -Bgroup support from Ulrich Drepper
f55871
f55871
* Fri Mar  9 2001 Jakub Jelinek <jakub@redhat.com>
f55871
- hack - add elf_i386_glibc21 emulation
f55871
f55871
* Fri Feb 16 2001 Jakub Jelinek <jakub@redhat.com>
f55871
- 2.10.91.0.2
f55871
f55871
* Fri Feb  9 2001 Jakub Jelinek <jakub@redhat.com>
f55871
- 2.10.1.0.7
f55871
- remove ExcludeArch ia64
f55871
- back out the -oformat, -omagic and -output change for now
f55871
f55871
* Fri Dec 15 2000 Jakub Jelinek <jakub@redhat.com>
f55871
- Prereq /sbin/install-info
f55871
f55871
* Tue Nov 21 2000 Jakub Jelinek <jakub@redhat.com>
f55871
- 2.10.1.0.2
f55871
f55871
* Tue Nov 21 2000 Jakub Jelinek <jakub@redhat.com>
f55871
- add one more alpha patch
f55871
f55871
* Wed Nov 15 2000 Jakub Jelinek <jakub@redhat.com>
f55871
- fix alpha visibility as problem
f55871
- add support for Ultra-III
f55871
f55871
* Fri Sep 15 2000 Jakub Jelinek <jakub@redhat.com>
f55871
- and one more alpha patch
f55871
f55871
* Fri Sep 15 2000 Jakub Jelinek <jakub@redhat.com>
f55871
- two sparc patches
f55871
f55871
* Mon Jul 24 2000 Jakub Jelinek <jakub@redhat.com>
f55871
- 2.10.0.18
f55871
f55871
* Mon Jul 10 2000 Jakub Jelinek <jakub@redhat.com>
f55871
- 2.10.0.12
f55871
f55871
* Mon Jun 26 2000 Jakub Jelinek <jakub@redhat.com>
f55871
- 2.10.0.9
f55871
f55871
* Thu Jun 15 2000 Jakub Jelinek <jakub@redhat.com>
f55871
- fix ld -r
f55871
f55871
* Mon Jun  5 2000 Jakub Jelinek <jakub@redhat.com>
f55871
- 2.9.5.0.46
f55871
- use _mandir/_infodir/_lib
f55871
f55871
* Mon May  8 2000 Bernhard Rosenkraenzer <bero@redhat.com>
f55871
- 2.9.5.0.41
f55871
f55871
* Wed Apr 12 2000 Bernhard Rosenkraenzer <bero@redhat.com>
f55871
- 2.9.5.0.34
f55871
f55871
* Wed Mar 22 2000 Bernhard Rosenkraenzer <bero@redhat.com>
f55871
- 2.9.5.0.31
f55871
f55871
* Fri Feb 04 2000 Cristian Gafton <gafton@redhat.com>
f55871
- man pages are compressed
f55871
- apply kingdon's patch from #5031
f55871
f55871
* Wed Jan 19 2000 Jeff Johnson <jbj@redhat.com>
f55871
- Permit package to be built with a prefix other than /usr.
f55871
f55871
* Thu Jan 13 2000 Cristian Gafton <gafton@redhat.com>
f55871
- add pacth from hjl to fix the versioning problems in ld
f55871
f55871
* Tue Jan 11 2000 Bernhard Rosenkraenzer <bero@redhat.com>
f55871
- Add sparc patches from Jakub Jelinek <jakub@redhat.com>
f55871
- Add URL:
f55871
f55871
* Tue Dec 14 1999 Bernhard Rosenkraenzer <bero@redhat.com>
f55871
- 2.9.5.0.22
f55871
f55871
* Wed Nov 24 1999 Bernhard Rosenkraenzer <bero@redhat.com>
f55871
- 2.9.5.0.19
f55871
f55871
* Sun Oct 24 1999 Bernhard Rosenkraenzer <bero@redhat.com>
f55871
- 2.9.5.0.16
f55871
f55871
* Mon Sep 06 1999 Jakub Jelinek <jj@ultra.linux.cz>
f55871
- make shared non-pic libraries work on sparc with glibc 2.1.
f55871
f55871
* Fri Aug 27 1999 Jim Kingdon
f55871
- No source/spec changes, just rebuilding with egcs-1.1.2-18 because
f55871
  the older egcs was miscompling gprof.
f55871
f55871
* Mon Apr 26 1999 Cristian Gafton <gafton@redhat.com>
f55871
- back out very *stupid* sparc patch done by HJLu. People, keep out of
f55871
  things you don't understand.
f55871
- add alpha relax patch from rth
f55871
f55871
* Mon Apr 05 1999 Cristian Gafton <gafton@redhat.com>
f55871
- version  2.9.1.0.23
f55871
- patch to make texinfo documentation compile
f55871
- auto rebuild in the new build environment (release 2)
f55871
f55871
* Tue Feb 23 1999 Cristian Gafton <gafton@redhat.com>
f55871
- updated to 2.9.1.0.21
f55871
- merged with UltraPenguin
f55871
f55871
* Mon Jan 04 1999 Cristian Gafton <gafton@redhat.com>
f55871
- added ARM patch from philb
f55871
- version 2.9.1.0.19a
f55871
- added a patch to allow arm* arch to be identified as an ARM
f55871
f55871
* Thu Oct 01 1998 Cristian Gafton <gafton@redhat.com>
f55871
- updated to 2.9.1.0.14.
f55871
f55871
* Sat Sep 19 1998 Jeff Johnson <jbj@redhat.com>
f55871
- updated to 2.9.1.0.13.
f55871
f55871
* Wed Sep 09 1998 Cristian Gafton <gafton@redhat.com>
f55871
- updated to 2.9.1.0.12
f55871
f55871
* Thu Jul  2 1998 Jeff Johnson <jbj@redhat.com>
f55871
- updated to 2.9.1.0.7.
f55871
f55871
* Wed Jun 03 1998 Jeff Johnson <jbj@redhat.com>
f55871
- updated to 2.9.1.0.6.
f55871
f55871
* Tue Jun 02 1998 Erik Troan <ewt@redhat.com>
f55871
- added patch from rth to get right offsets for sections in relocateable
f55871
  objects on sparc32
f55871
f55871
* Thu May 07 1998 Prospector System <bugs@redhat.com>
f55871
- translations modified for de, fr, tr
f55871
f55871
* Tue May 05 1998 Cristian Gafton <gafton@redhat.com>
f55871
- version 2.9.1.0.4 is out; even more, it is public !
f55871
f55871
* Tue May 05 1998 Jeff Johnson <jbj@redhat.com>
f55871
- updated to 2.9.1.0.3.
f55871
f55871
* Mon Apr 20 1998 Cristian Gafton <gafton@redhat.com>
f55871
- updated to 2.9.0.3
f55871
f55871
* Tue Apr 14 1998 Cristian Gafton <gafton@redhat.com>
f55871
- upgraded to 2.9.0.2
f55871
f55871
* Sun Apr 05 1998 Cristian Gafton <gafton@redhat.com>
f55871
- updated to 2.8.1.0.29 (HJ warned me that this thing is a moving target...
f55871
  :-)
f55871
- "fixed" the damn make install command so that all tools get installed
f55871
f55871
* Thu Apr 02 1998 Cristian Gafton <gafton@redhat.com>
f55871
- upgraded again to 2.8.1.0.28 (at least on alpha now egcs will compile)
f55871
- added info packages handling
f55871
f55871
* Tue Mar 10 1998 Cristian Gafton <gafton@redhat.com>
f55871
- upgraded to 2.8.1.0.23
f55871
f55871
* Mon Mar 02 1998 Cristian Gafton <gafton@redhat.com>
f55871
- updated to 2.8.1.0.15 (required to compile the newer glibc)
f55871
- all patches are obsoleted now
f55871
f55871
* Wed Oct 22 1997 Erik Troan <ewt@redhat.com>
f55871
- added 2.8.1.0.1 patch from hj
f55871
- added patch for alpha palcode form rth