source: projects/specs/trunk/b/binutils/binutils-vl.spec @ 12525

Revision 12525, 61.3 KB checked in by tomop, 3 years ago (diff)

updated 10 packages

binutils-2.36.1-1

elfutils-0.183-1

gcc-10.2.1-1

gdb-10.1-1

glibc-2.33-1

isl-0.23-1

libtirpc-1.3.1-1

libtool-2.4.6-7

libxcrypt-4.4.17-1

valgrind-3.16.1-2

Line 
1# rpmbuild parameters:
2# --with debug: Build without optimizations and without splitting the debuginfo.
3# --without testsuite: Do not run the testsuite.  Default is to run it.
4# --with testsuite: Run the testsuite.  Default --with debug is not to run it.
5
6# Enable support for GCC LTO compilation.
7%define enable_lto 1
8
9# Disable the default generation of compressed debug sections.
10%define default_compress_debug 0
11
12# Default to read-only-relocations (relro) in shared binaries.
13%define default_relro 1
14
15# Disable the default generation of GNU Build notes by the assembler.
16# This has turned out to be problematic for the i686 architecture.
17# although the exact reason has not been determined.  (See BZ 1572485)
18# It also breaks building EFI binaries on AArch64, as these cannot have
19# relocations against absolute symbols.
20%define default_generate_notes 0
21
22# Enable thread support in the GOLD linker.  This is particularly
23# important if plugins to the linker intend to use threads themselves.
24# See BZ 1636479 for more details.  This option is made configurable
25# in case there is ever a need to disable thread support.
26%define enable_threading 1
27
28%define binutils_target %{_target_platform}
29%define isnative 1
30%define enable_shared 1
31
32%bcond_without docs
33
34Summary: A GNU collection of binary utilities.
35Summary(ja): GNU 版バイナリユーティリティ集
36Name: binutils
37Version: 2.36.1
38Release: 1%{?_dist_release}
39Group: programming
40Vendor:         Project Vine
41Distribution:   Vine Linux
42Packager:       kenta, shaolin, inagaki
43
44License: GPLv3+
45URL: http://sources.redhat.com/binutils
46# Source: ftp://ftp.kernel.org/pub/linux/devel/binutils/binutils-%{version}.tar.bz2
47# The ftp.kernel.org/pub/linux/devel/binutils/ page is (temporarily) unavailable
48# so we use the GNU site instead.
49# Source: ftp://ftp.kernel.org/pub/linux/devel/binutils/binutils-%{version}.tar.bz2
50Source: https://ftp.gnu.org/gnu/binutils/binutils-%{version}.tar.xz
51Source2: binutils-2.19.50.0.1-output-format.sed
52
53#----------------------------------------------------------------------------
54
55# Purpose:  Use /lib64 and /usr/lib64 instead of /lib and /usr/lib in the
56#           default library search path of 64-bit targets.
57# Lifetime: Permanent, but it should not be.  This is a bug in the libtool
58#           sources used in both binutils and gcc, (specifically the
59#           libtool.m4 file).  These are based on a version released in 2009
60#           (2.2.6?) rather than the latest version.  (Definitely fixed in
61#           libtool version 2.4.6).
62Patch01: binutils-2.20.51.0.2-libtool-lib64.patch
63
64# Purpose:  Appends a RHEL or Fedora release string to the generic binutils
65#           version string.
66# Lifetime: Permanent.  This is a RHEL/Fedora specific patch.
67Patch02: binutils-2.25-version.patch
68
69# Purpose:  Exports the demangle.h header file (associated with the libiberty
70#           sources) with the binutils-devel rpm.
71# Lifetime: Permanent.  This is a RHEL/Fedora specific patch.
72Patch03: binutils-export-demangle.h.patch
73
74# Purpose:  Disables the check in the BFD library's bfd.h header file that
75#           config.h has been included before the bfd.h header.  See BZ
76#           #845084 for more details.
77# Lifetime: Permanent - but it should not be.  The bfd.h header defines
78#           various types that are dependent upon configuration options, so
79#           the order of inclusion is important.
80# FIXME:    It would be better if the packages using the bfd.h header were
81#           fixed so that they do include the header files in the correct
82#           order.
83Patch04: binutils-2.22.52.0.4-no-config-h-check.patch
84
85# Purpose:  Include the filename concerned in readelf error messages.  This
86#           makes readelf's output more helpful when it is run on multiple
87#           input files.
88# Lifetime: Permanent.  This patch changes the format of readelf's output,
89#           making it better (IMHO) but also potentially breaking tools that
90#           depend upon readelf's current format.  Hence it remains a local
91#           patch.
92Patch05: binutils-2.29-filename-in-error-messages.patch
93
94# Purpose:  Disable an x86/x86_64 optimization that moves functions from the
95#           PLT into the GOTPLT for faster access.  This optimization is
96#           problematic for tools that want to intercept PLT entries, such
97#           as ltrace and LD_AUDIT.  See BZs 1452111 and 1333481.
98# Lifetime: Permanent.  But it should not be.
99# FIXME:    Replace with a configure time option.
100Patch06: binutils-2.29-revert-PLT-elision.patch
101
102# Purpose:  Changes readelf so that when it displays extra information about
103#           a symbol, this information is placed at the end of the line.
104# Lifetime: Permanent.
105# FIXME:    The proper fix would be to update the scripts that are expecting
106#           a fixed output from readelf.  But it seems that some of them are
107#           no longer being maintained.
108Patch07: binutils-readelf-other-sym-info.patch
109
110# Purpose:  Do not create PLT entries for AARCH64 IFUNC symbols referenced in
111#           debug sections.
112# Lifetime: Permanent.
113# FIXME:    Find related bug.  Decide on permanency.
114Patch08: binutils-2.27-aarch64-ifunc.patch
115
116# Purpose:  Stop the binutils from statically linking with libstdc++.
117# Lifetime: Permanent.
118Patch09: binutils-do-not-link-with-static-libstdc++.patch
119
120# Purpose:  Allow OS specific sections in section groups.
121# Lifetime: Fixed in 2.36 (maybe)
122Patch11: binutils-special-sections-in-groups.patch
123
124# Purpose:  Fix linker testsuite failures.
125# Lifetime: Fixed in 2.36 (maybe)
126Patch12: binutils-fix-testsuite-failures.patch
127
128# Purpose:  Stop gold from aborting when input sections with the same name
129#            have different flags.
130# Lifetime: Fixed in 2.36 (maybe)
131Patch13: binutils-gold-mismatched-section-flags.patch
132
133# Purpose:  Add a check to the GOLD linker for a corrupt input file
134#            with a fuzzed section offset.
135# Lifetime: Fixed in 2.36 (maybe)
136Patch14: binutils-CVE-2019-1010204.patch
137
138# Purpose:  Change the gold configuration script to only warn about
139#            unsupported targets.  This allows the binutils to be built with
140#            BPF support enabled.
141# Lifetime: Permanent.
142Patch15: binutils-gold-warn-unsupported.patch
143
144# Purpose:  Fix LTO problems running config mini-builds.
145# Lifetime: Should be fixed in 2.36.
146Patch17: binutils-config.patch
147
148# Purpose:  Fix compile time warning messages building with gcc-10.
149# Lifetime: Should be fixed in 2.36.
150Patch18: binutils-warnings.patch
151
152# Purpose:  Fix compile time warning messages building with gcc-10. (part 2).
153# Lifetime: Should be fixed in 2.36.
154Patch19: binutils-gcc-10-fixes.patch
155
156# Purpose:  Use the "unsigned long long" type for pointers on hosts where
157#           long is a 32-bit type but pointers are a 64-bit type.  Necessary
158#           because users expect to be able to install both the i686- and
159#           x86_64 versions of binutils-devel on the same machine, so they
160#           need to identical versions of the bfd.h header file.
161# Lifetime: Permanent.
162Patch30: binutils-use-long-long.patch
163
164# Purpose:  Fix FAIL results in gas and ld testsuites.
165# Lifetime: Fixed in 2.36
166Patch34: binutils-testsuite-failures.patch
167
168#----------------------------------------------------------------------------
169
170Patch1001: binutils-2.26-uio-vine.patch
171
172%if %{?_dist_release} > vl6
173%define gold_arches %ix86 x86_64
174%endif
175
176%if 0%{?_with_debug:1}
177# Define this if you want to skip the strip step and preserve debug info.
178# Useful for testing.
179%define __debug_install_post : > %{_builddir}/%{?buildsubdir}/debugfiles.list
180%define debug_package %{nil}
181%define run_testsuite 0%{?_with_testsuite:1}
182%else
183%define run_testsuite 0%{!?_without_testsuite:1}
184%endif
185
186Buildroot: %{_tmppath}/%{name}-%{version}-root
187BuildRequires: texinfo >= 4.0, gettext, flex, bison, zlib-devel
188# Required for: ld-bootstrap/bootstrap.exp bootstrap with --static
189# It should not be required for: ld-elf/elf.exp static {preinit,init,fini} array
190%if %{run_testsuite}
191BuildRequires: dejagnu, zlib-static, glibc-devel, sharutils
192#BuildRequires: dejagnu, zlib-static, glibc-static, sharutils
193%endif
194Conflicts: gcc-c++ < 4.0.0
195Requires(post): /sbin/install-info
196Requires(preun): /sbin/install-info
197%ifarch ia64
198Obsoletes: gnupro
199%endif
200
201# The higher of these two numbers determines the default ld.
202%{!?ld_bfd_priority: %global ld_bfd_priority    50}
203%{!?ld_gold_priority:%global ld_gold_priority   30}
204
205%ifarch %gold_arches
206Requires(post): coreutils
207Requires(post): alternatives
208Requires(preun): alternatives
209%endif
210
211# On ARM EABI systems, we do want -gnueabi to be part of the
212# target triple.
213%ifnarch %{arm}
214%define _gnu %{nil}
215%endif
216
217%description
218Binutils is a collection of binary utilities, including ar (for
219creating, modifying and extracting from archives), as (a family of GNU
220assemblers), gprof (for displaying call graph profile data), ld (the
221GNU linker), nm (for listing symbols from object files), objcopy (for
222copying and translating object files), objdump (for displaying
223information from object files), ranlib (for generating an index for
224the contents of an archive), size (for listing the section sizes of an
225object or archive file), strings (for listing printable strings from
226files), strip (for discarding symbols), and addr2line (for converting
227addresses to file and line).
228
229%description -l ja
230Binutils はバイナリユーティリティ集です。 ar (アーカイブの作成、修正、
231取り出しを行う)、as (GNU アセンブラファミリ)、gprof (グラフプロファイル
232データの表示)、ld (GNU リンカ)、nm (オブジェクトファイルのシンボル一覧を
233表示)、objcopy (オブジェクトファイルのコピー,変換を行う)、
234objdump (オブジェクトファイルの情報を表示する)、ranlib (アーカイブの内容
235一覧を作成)、size (オブジェクトやアーカイブのセクションサイズを表示)、
236strings (ファイルから表示可能な文字列を表示する)、strip (シンボルを
237削除する)、addr2line (アドレスをファイル等に変換する) などが含まれています。
238
239
240%package devel
241Summary: BFD and opcodes static libraries and header files
242Group: programming
243Conflicts: binutils < 2.17.50.0.3-4
244Requires(post): /sbin/install-info
245Requires(preun): /sbin/install-info
246Requires: zlib-devel
247
248%description devel
249This package contains BFD and opcodes static libraries and associated
250header files.  Only *.a libraries are included, because BFD doesn't
251have a stable ABI.  Developers starting new projects are strongly encouraged
252to consider using libelf instead of BFD.
253
254
255%debug_package
256
257
258%prep
259%setup -q -n binutils-%{version}
260%autopatch -p1
261
262# We cannot run autotools as there is an exact requirement of autoconf-2.59.
263
264# On ppc64 and aarch64, we might use 64KiB pages
265sed -i -e '/#define.*ELF_COMMONPAGESIZE/s/0x1000$/0x10000/' bfd/elf*ppc.c
266sed -i -e '/#define.*ELF_COMMONPAGESIZE/s/0x1000$/0x10000/' bfd/elf*aarch64.c
267sed -i -e '/common_pagesize/s/4 /64 /' gold/powerpc.cc
268sed -i -e '/pagesize/s/0x1000,/0x10000,/' gold/aarch64.cc
269# LTP sucks
270perl -pi -e 's/i\[3-7\]86/i[34567]86/g' */conf*
271sed -i -e 's/%''{release}/%{release}/g' bfd/Makefile{.am,.in}
272sed -i -e '/^libopcodes_la_\(DEPENDENCIES\|LIBADD\)/s,$, ../bfd/libbfd.la,' opcodes/Makefile.{am,in}
273# Build libbfd.so and libopcodes.so with -Bsymbolic-functions if possible.
274if gcc %{optflags} -v --help 2>&1 | grep -q -- -Bsymbolic-functions; then
275sed -i -e 's/^libbfd_la_LDFLAGS = /&-Wl,-Bsymbolic-functions /' bfd/Makefile.{am,in}
276sed -i -e 's/^libopcodes_la_LDFLAGS = /&-Wl,-Bsymbolic-functions /' opcodes/Makefile.{am,in}
277fi
278# $PACKAGE is used for the gettext catalog name.
279sed -i -e 's/^ PACKAGE=/ PACKAGE=%{?cross}/' */configure
280# Undo the name change to run the testsuite.
281for tool in binutils gas ld
282do
283  sed -i -e "2aDEJATOOL = $tool" $tool/Makefile.am
284  sed -i -e "s/^DEJATOOL = .*/DEJATOOL = $tool/" $tool/Makefile.in
285done
286touch */configure
287# Touch the .info files so that they are newer then the .texi files and
288# hence do not need to be rebuilt.  This eliminates the need for makeinfo.
289# The -print is there just to confirm that the command is working.
290%if %{without docs}
291  find . -name *.info -print -exec touch {} \;
292%endif
293
294
295%build
296echo target is %{binutils_target}
297export CFLAGS="$RPM_OPT_FLAGS"
298CARGS=
299
300case %{binutils_target} in i?86*|sparc*|ppc*|s390*|sh*|arm*|aarch64*)
301  CARGS="$CARGS --enable-64-bit-bfd"
302  ;;
303esac
304
305case %{binutils_target} in x86_64*|i?86*|arm*|aarch64*)
306  CARGS="$CARGS --enable-targets=x86_64-pep"
307  ;;
308esac
309
310%if %{default_relro}
311  CARGS="$CARGS --enable-relro=yes"
312%else
313  CARGS="$CARGS --enable-relro=no"
314%endif
315
316%if 0%{?_with_debug:1}
317CFLAGS="$CFLAGS -O0 -ggdb2"
318%define enable_shared 0
319%endif
320
321# We could optimize the cross builds size by --enable-shared but the produced
322# binaries may be less convenient in the embedded environment.
323%configure \
324  --build=%{_target_platform} --host=%{_target_platform} \
325  --target=%{binutils_target} \
326%ifarch %gold_arches
327  --enable-gold=default \
328%else
329  --enable-gold=no \
330%endif
331  --enable-ld \
332%if %{isnative}
333  --with-sysroot=/ \
334%else
335  --enable-targets=%{_host} \
336  --with-sysroot=%{_prefix}/%{binutils_target}/sys-root \
337  --program-prefix=%{cross} \
338%endif
339%if %{enable_shared}
340  --enable-shared \
341%else
342  --disable-shared \
343%endif
344%if %{enable_lto}
345  --enable-lto \
346%endif
347%if %{default_compress_debug}
348  --enable-compressed-debug-sections=all \
349%else
350  --enable-compressed-debug-sections=none \
351%endif
352%if %{default_generate_notes}
353  --enable-generate-build-notes=yes \
354%else
355  --enable-generate-build-notes=no \
356%endif
357%if %{enable_threading}
358  --enable-threads=yes \
359%else
360  --enable-threads=no \
361%endif
362  $CARGS \
363  --enable-plugins \
364  --disable-werror \
365  --with-bugurl=http://bugzilla.redhat.com/bugzilla/
366
367%if %{with docs}
368make %{_smp_mflags} tooldir=%{_prefix} all
369make %{_smp_mflags} tooldir=%{_prefix} info
370%else
371%make_build %{_smp_mflags} tooldir=%{_prefix} MAKEINFO=true all
372%endif
373
374# Do not use %%check as it is run after %%install where libbfd.so is rebuild
375# with -fvisibility=hidden no longer being usable in its shared form.
376%if !%{run_testsuite}
377echo ====================TESTSUITE DISABLED=========================
378%else
379make -k check < /dev/null || :
380echo ====================TESTING=========================
381cat {gas/testsuite/gas,ld/ld,binutils/binutils}.sum
382if [ -f gold/test-suite.log ]; then
383    cat gold/test-suite.log
384fi
385if [ -f gold/testsuite/test-suite.log ]; then
386    cat gold/testsuite/*.log
387fi
388echo ====================TESTING END=====================
389for file in {gas/testsuite/gas,ld/ld,binutils/binutils}.{sum,log}
390do
391  ln $file binutils-%{_target_platform}-$(basename $file) || :
392done
393tar cjf binutils-%{_target_platform}.tar.xz  binutils-%{_target_platform}-*.{sum,log}
394uuencode binutils-%{_target_platform}.tar.xz binutils-%{_target_platform}.tar.xz
395rm -f binutils-%{_target_platform}.tar.xz    binutils-%{_target_platform}-*.{sum,log}
396if [ -f gold/testsuite/test-suite.log ]; then
397  tar cjf  binutils-%{_target_platform}-gold.log.tar.xz gold/testsuite/*.log
398  uuencode binutils-%{_target_platform}-gold.log.tar.xz binutils-%{_target_platform}-gold.log.tar.xz
399  rm -f    binutils-%{_target_platform}-gold.log.tar.xz
400fi
401%endif
402
403%install
404rm -rf $RPM_BUILD_ROOT
405%if %{with docs}
406%make_install DESTDIR=%{buildroot}
407%else
408%make_install DESTDIR=%{buildroot} MAKEINFO=true
409%endif
410
411%if %{isnative}
412%if %{with docs}
413make prefix=%{buildroot}%{_prefix} infodir=%{buildroot}%{_infodir} install-info
414%endif
415
416# Rebuild libiberty.a with -fPIC.
417# Future: Remove it together with its header file, projects should bundle it.
418make -C libiberty clean
419make CFLAGS="-g -fPIC $RPM_OPT_FLAGS" -C libiberty
420
421# Rebuild libbfd.a with -fPIC.
422# Without the hidden visibility the 3rd party shared libraries would export
423# the bfd non-stable ABI.
424make -C bfd clean
425make CFLAGS="-g -fPIC $RPM_OPT_FLAGS -fvisibility=hidden" -C bfd
426
427# Rebuild libopcodes.a with -fPIC.
428make -C opcodes clean
429make CFLAGS="-g -fPIC $RPM_OPT_FLAGS" -C opcodes
430
431install -m 644 bfd/libbfd.a $RPM_BUILD_ROOT%{_libdir}
432install -m 644 libiberty/libiberty.a $RPM_BUILD_ROOT%{_libdir}
433install -m 644 include/libiberty.h $RPM_BUILD_ROOT%{_prefix}/include
434install -m 644 opcodes/libopcodes.a %{buildroot}%{_libdir}
435# Remove Windows/Novell only man pages
436rm -f %{buildroot}%{_mandir}/man1/{dlltool,nlmconv,windres,windmc}*
437%if %{without docs}
438rm -f %{buildroot}%{_mandir}/man1/{addr2line,ar,as,c++filt,elfedit,gprof,ld,nm,objcopy,objdump,ranlib,readelf,size,strings,strip}*
439rm -f %{buildroot}%{_infodir}/{as,bfd,binutils,gprof,ld}*
440%endif
441
442%if %{enable_shared}
443chmod +x $RPM_BUILD_ROOT%{_libdir}/lib*.so*
444%endif
445
446# Prevent programs from linking against libbfd and libopcodes
447# dynamically, as they are change far too often.
448rm -f $RPM_BUILD_ROOT%{_libdir}/lib{bfd,opcodes}.so
449
450# Remove libtool files, which reference the .so libs
451rm -f $RPM_BUILD_ROOT%{_libdir}/lib{bfd,ctf,ctf-nobfd,opcodes}.la
452
453# Sanity check --enable-64-bit-bfd really works.
454grep '^#define BFD_ARCH_SIZE 64$' %{buildroot}%{_prefix}/include/bfd.h
455# Fix multilib conflicts of generated values by __WORDSIZE-based expressions.
456%ifarch %{ix86} x86_64 ppc %{power64} s390 s390x sh3 sh4 sparc sparc64 arm
457sed -i -e '/^#include "ansidecl.h"/{p;s~^.*$~#include <bits/wordsize.h>~;}' \
458    -e 's/^#define BFD_DEFAULT_TARGET_SIZE \(32\|64\) *$/#define BFD_DEFAULT_TARGET_SIZE __WORDSIZE/' \
459    -e 's/^#define BFD_HOST_64BIT_LONG [01] *$/#define BFD_HOST_64BIT_LONG (__WORDSIZE == 64)/' \
460    -e 's/^#define BFD_HOST_64_BIT \(long \)\?long *$/#if __WORDSIZE == 32\
461#define BFD_HOST_64_BIT long long\
462#else\
463#define BFD_HOST_64_BIT long\
464#endif/' \
465    -e 's/^#define BFD_HOST_U_64_BIT unsigned \(long \)\?long *$/#define BFD_HOST_U_64_BIT unsigned BFD_HOST_64_BIT/' \
466    %{buildroot}%{_prefix}/include/bfd.h
467%endif
468touch -r bfd/bfd-in2.h %{buildroot}%{_prefix}/include/bfd.h
469
470# Generate .so linker scripts for dependencies; imported from glibc/Makerules:
471
472# This fragment of linker script gives the OUTPUT_FORMAT statement
473# for the configuration we are building.
474OUTPUT_FORMAT="\
475/* Ensure this .so library will not be used by a link for a different format
476   on a multi-architecture system.  */
477$(gcc $CFLAGS $LDFLAGS -shared -x c /dev/null -o /dev/null -Wl,--verbose -v 2>&1 | sed -n -f "%{SOURCE2}")"
478
479tee $RPM_BUILD_ROOT%{_libdir}/libbfd.so <<EOH
480/* GNU ld script */
481
482$OUTPUT_FORMAT
483
484/* The libz dependency is unexpected by legacy build scripts.  */
485/* The libdl dependency is for plugin support.  (BZ 889134)  */
486INPUT ( %{_libdir}/libbfd.a -liberty -lz -ldl )
487EOH
488
489tee %{buildroot}%{_libdir}/libopcodes.so <<EOH
490/* GNU ld script */
491
492$OUTPUT_FORMAT
493
494INPUT ( %{_libdir}/libopcodes.a -lbfd )
495EOH
496%endif # !isnative
497
498# This one comes from gcc
499rm -f $RPM_BUILD_ROOT%{_infodir}/dir
500rm -rf $RPM_BUILD_ROOT%{_prefix}/%{binutils_target}
501
502%find_lang binutils
503%find_lang opcodes
504%find_lang bfd
505%find_lang gas
506%find_lang gprof
507cat opcodes.lang >> binutils.lang
508cat bfd.lang >> binutils.lang
509cat gas.lang >> binutils.lang
510cat gprof.lang >> binutils.lang
511
512if [ -x ld/ld-new ]; then
513  %find_lang ld
514  cat ld.lang >> binutils.lang
515fi
516if [ -x gold/ld-new ]; then
517  %find_lang gold
518  cat gold.lang >> binutils.lang
519fi
520
521/bin/ls %{buildroot}%{_bindir} | sed -e 's|^|%{_bindir}/|' -e '/\/ld$/d' > binutils.list
522
523%clean
524rm -rf $RPM_BUILD_ROOT
525
526
527%post
528%ifarch %gold_arches
529%__rm -f %{_bindir}/ld
530  /sbin/alternatives --install %{_bindir}/ld ld \
531  %{_bindir}/ld.bfd %{ld_bfd_priority}
532  /sbin/alternatives --install %{_bindir}/ld ld \
533  %{_bindir}/ld.gold %{ld_gold_priority}
534  /sbin/alternatives --auto ld
535%endif
536
537/sbin/ldconfig
538if [ -e %{_infodir}/binutils.info.gz ]
539then
540  /sbin/install-info --info-dir=%{_infodir} %{_infodir}/as.info.gz
541  /sbin/install-info --info-dir=%{_infodir} %{_infodir}/binutils.info.gz
542  /sbin/install-info --info-dir=%{_infodir} %{_infodir}/gprof.info.gz
543  /sbin/install-info --info-dir=%{_infodir} %{_infodir}/ld.info.gz
544fi
545
546%preun
547%ifarch %gold_arches
548if [ $1 = 0 ]; then
549  /sbi/alternatives --remove ld %{_bindir}/ld.gold
550  /sbin/alternatives --remove ld %{_bindir}/ld.bfd
551fi
552%endif
553
554if [ $1 = 0 ] ;then
555  if [ -e %{_infodir}/binutils.info.gz ]
556  then
557      /sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/as.info.gz
558      /sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/binutils.info.gz
559      /sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/gprof.info.gz
560      /sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/ld.info.gz
561  fi
562fi
563
564%postun -p /sbin/ldconfig
565
566%post devel
567if [ -e %{_infodir}/bfd.info.gz ]
568then
569    /sbin/install-info --info-dir=%{_infodir} %{_infodir}/bfd.info.gz
570fi
571
572%preun devel
573if [ $1 = 0 ] ;then
574  if [ -e %{_infodir}/bfd.info.gz ]
575  then
576      /sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/bfd.info.gz
577  fi
578fi
579
580
581%files -f binutils.lang -f binutils.list
582%license COPYING COPYING3 COPYING3.LIB COPYING.LIB
583%defattr(-,root,root,-)
584%doc README
585%ifarch %gold_arches
586%ghost %{_bindir}/ld
587%else
588%{_bindir}/ld
589%endif
590%{_mandir}/man1/*
591%if %{enable_shared}
592%{_libdir}/lib*.so
593%{_libdir}/libctf*.so.*
594%exclude %{_libdir}/libbfd.so
595%exclude %{_libdir}/libopcodes.so
596%dir %{_libdir}/bfd-plugins
597%{_libdir}/bfd-plugins/*.so
598%endif
599%{_infodir}/[^b]*info*
600%{_infodir}/binutils*info*
601
602%files devel
603%defattr(-,root,root)
604%{_prefix}/include/*
605%{_libdir}/libbfd.so
606%{_libdir}/libopcodes.so
607%{_libdir}/lib*.a
608%{_infodir}/bfd*info*
609
610
611%changelog
612* Tue Feb 09 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 2.36.1-1
613- updated to 2.34.
614- dropped Patch10, 11 and 16.
615- renumbered patches.
616- imported Patch15-34 from rawhide.
617- added Patch0.
618- updated Patch6.
619
620* Thu Mar 19 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 2.34-1
621- updated to 2.34.
622- dropped Patch14-20, 22-26 and 28-29.
623- renumbered patches.
624- imported Patch16 from rawhide.
625
626* Sun Sep 22 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 2.32-1
627- updated to 2.32.
628- dropped Patch11, 13-22, 24 and 25: fixed in upstream.
629- renumbered patches.
630- imported Patch14-29 from rawhide.
631
632* Tue Jan 15 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 2.31.1-1
633- updated to 2.31.1.
634- dropped Patch1-9.
635- imported Patch01-25 from rawhide.
636
637* Sun Jun 26 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 2.26-4
638- rebuild with gcc-5.4.0
639
640* Tue May 24 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 2.26-3
641- rebuilt only.
642
643* Sun May 22 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 2.26-2
644- added Patch09 (binutils-2.26-symbol-version.patch).
645
646* Sat May 07 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 2.26-1
647- update to 2.26
648- update Patch04 (binutils-2.26-version.patch)
649- update Patch05 (binutils-2.26-set-long-long.patch)
650- remove Patch06 (binutils-2.23.2-build-id.patch)
651- update Patch07 (binutils-2.26-copy-osabi.patch)
652- update Patch08 (binutils-2.26-sec-merge-emit.patch)
653- add Patch1001: binutils-2.26-uio-vine.patch
654
655* Sun Dec 13 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 2.23.2-2
656- rebuild with VineSeed environment
657
658* Mon Nov 04 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 2.23.2-1
659- update to 2.23.2
660- remove Patch02 (binutils-2.20.51.0.12-ppc64-pie.patch)
661- update Patch06 (binutils-2.23.2-build-id.patch)
662
663* Tue Oct 01 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 2.22-3
664- rebuild with gcc-4.8.1
665
666* Sat Jan 14 2012 NAKAMURA Kenta <kenta@vinelinux.org> - 2.22-2
667- enabled linker plugins support
668
669* Fri Nov 25 2011 NAKAMURA Kenta <kenta@vinelinux.org> - 2.22-1
670- updated to 2.22 (gnu.org)
671- updated Patch06: build-id patch
672- dropped Patch09: gold-plugins patch
673
674* Sun Apr 03 2011 NAKAMURA Kenta <kenta@vinelinux.org> - 2.20.51.0.12-1
675- updated to 2.20.51.0.12
676- updated --build-id patch.
677- dropped redundant patches:
678  binutils-2.20.51.0.2-envvar-revert.patch,
679  binutils-2.20.51.0.2-add-needed.patch,
680  binutils-2.20.51.0.2-ifunc-ld-s.patch,
681  binutils-2.20.51.0.2-lwp.patch,
682  binutils-2.20.51.0.2-gas-expr.patch,
683  binutils-2.20.51.0.2-ppc-hidden-plt-relocs.patch.
684
685* Tue Apr  6 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.20.51.0.2-5
686- rebuilt with gcc-4.4.3-4
687
688* Mon Feb  8 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.20.51.0.2-4
689- rebuilt with gcc-4.4.3-3
690
691* Mon Feb  1 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.20.51.0.2-3
692- add Patch12 and Patch13 for PR 10856 and 11088 respectively
693
694* Mon Jan 25 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 2.20.51.0.2-2
695- rebuilt with gcc-4.4.3
696
697* Sun Nov  8 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 2.20.51.0.2-1
698- updated to 2.20.51.0.2
699
700* Wed Sep 24 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.18.50.0.6-1
701- updated to 2.18.50.0.6
702
703* Wed Jul 09 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.17.50.0.18-3
704- new versioning policy
705- rebuild with gcc-4.1.2-18
706
707* Sun Feb 10 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.17.50.0.18-1vl2
708- rebuilt with glibc-2.7-2vl3 and gcc-4.1.2-0vl17
709
710* Wed Feb 06 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.17.50.0.18-1vl1
711- updated to 2.17.50.0.18
712
713  - Thu Aug 16 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.18-1
714  - update to 2.17.50.0.18
715    - GPLv3+
716    - preserve .note.gnu.build-id in objcopy --only-keep-debug (#251935)
717    - fix sparc64/alpha broken by --build-id patch (#252936)
718  - update License tag
719  - fix ld crash with --build-id and non-ELF output format (Alan Modra, BZ#4923)
720
721  - Tue Jul 31 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.17-7
722  - fix ppc32 secure PLT detection (Alan Modra)
723
724  - Wed Jul 25 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.17-6
725  - rebuilt to make sure even libbfd.so and libopcodes.so aren't
726  broken by #249435
727
728  - Tue Jul 24 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.17-5
729  - add .note.gnu.build-id into default linker script (#249435)
730
731  - Tue Jul 24 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.17-4
732  - don't kill the %%{_gnu} part of target name on arm
733    (Lennert Buytenhek, #243516)
734  - create just one PT_NOTE segment header for all consecutive SHT_NOTE
735    sections
736
737  - Wed Jul 18 2007 Roland McGrath <roland@redhat.com> 2.17.50.0.17-3
738  - fix for ld --build-id
739
740  - Sun Jul 15 2007 Roland McGrath <roland@redhat.com> 2.17.50.0.17-2
741  - ld --build-id support
742
743  - Wed Jun 27 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.17-1
744  - update to 2.17.50.0.17
745
746  - Tue Jun 12 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.16-1
747  - update to 2.17.50.0.16
748
749  - Sat Apr 14 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.12-4
750  - fix linking non-ELF input objects into ELF output (#235747)
751
752  - Wed Mar 14 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.12-3
753  - don't require matching ELF_OSABI for target vecs with ELFOSABI_NONE,
754    only prefer specific osabi target vecs over the generic ones
755    (H.J.Lu, #230964, BZ#3826)
756  - build libbfd.so and libopcodes.so with -Bsymbolic-functions
757
758  - Fri Mar  2 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.12-2
759  - ignore install-info errors from scriptlets (#223678)
760
761  - Thu Mar  1 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.12-1
762  - update to 2.17.50.0.12
763  - revert the misdesigned LD_SYMBOLIC{,_FUNCTIONS} env var support,
764    only support -Bsymbolic/-Bsymbolic-functions/--dynamic-list*
765
766  - Mon Jan  8 2007 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.9-1
767  - update to 2.17.50.0.9
768  - fix tekhex reader
769
770  - Sat Dec 23 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.8-2
771  - fix --as-needed on ppc64 (#219629)
772
773  - Sun Dec  3 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.8-1
774  - update to 2.17.50.0.8
775  - initialize frch_cfi_data (BZ#3607)
776
777  - Fri Dec  1 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.7-1
778  - update to 2.17.50.0.7
779    - .cfi_personality and .cfi_lsda directives, per subsection .cfi_*
780      directives, better .eh_frame CIE merging
781
782  - Thu Nov  9 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.6-3
783  - fix popcnt instruction assembly and disassembly on amd64 (#214767)
784
785* Mon Jan 07 2008 Shu KONNO <owa@bg.wakwak.com> 2.17.50.0.6-2vl5
786- dropt unnecessary changes of 2.17.50.0.6-2vl4
787
788* Fri Jan 04 2008 Shu KONNO <owa@bg.wakwak.com> 2.17.50.0.6-2vl4
789- added -fPIC to make (if x86_64)
790
791* Sat Jul 28 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.17.50.0.6-2vl3
792- rebuild with gcc-4.1.2-0vl12
793- changed devel package Group to Development/Libraries
794
795* Sun May 13 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.17.50.0.6-2vl2
796- rebuild with gcc-4.1.2-0vl7 (expecially for ppc)
797
798* Sun May 13 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.17.50.0.6-2vl1
799- updated to 2.17.50.0.6
800
801  - Thu Dec 21 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.6-2.fc6
802  - update to 2.17.50.0.6
803    - fix for section relative linker script defined symbols in
804      empty sections (#212032, BZ#3267)
805    - fix handling of DW_CFA_set_loc in .eh_frame optimizations
806    - fix R_PPC_{PLT,GOT{,_TLSGD,_TLSLD,_TPREL,_DTPREL}}16_HA relocation
807      handling with weak undefined symbols (Alan Modra, #211094)
808    - fix --cref (#212099)
809    - fix --emit-relocs on ppc64 (#211991)
810  - fix popcnt instruction assembly and disassembly on amd64 (#214767)
811
812* Sat May 12 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.17.50.0.3-6vl2
813- rebuilt with gcc-4.1.2-0vl6 and glibc-2.5-12vl1
814
815* Sun May 06 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.17.50.0.3-6vl1
816- rebuild
817
818* Tue Apr 03 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.17.50.0.3-6vl0
819- initial build for VineSeed based on FC 2.17.50.0.3-6
820
821* Tue Sep 12 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.3-6
822- fix multilib conflict in %{_prefix}/include/bfd.h
823
824* Tue Sep 12 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.3-5
825- fix efi-app-ia64 magic number (#206002, BZ#3171)
826
827* Tue Sep  5 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.3-4
828- link libopcodes*.so against libbfd*.so (#202327)
829- split *.a and header files into binutils-devel
830
831* Fri Aug 18 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.3-3
832- on ppc and ppc64 increase default -z commonpagesize to 64K (#203001)
833
834* Fri Jul 28 2006 Alexandre Oliva <aoliva@redhat.com> 2.17.50.0.3-2
835- do not infer x86 arch implicitly based on instruction in the input
836  (#200330)
837
838* Mon Jul 17 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.3-1
839- update to 2.17.50.0.3
840
841* Fri Jul 14 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.2-8
842- add support for new AMDFAM10 instructions (#198281, IT#97662)
843- add -march=/-mtune= gas support on x86/x86-64
844- x86/x86-64 nop insn improvements
845- fix DT_GNU_HASH shift count value computation
846
847* Tue Jul 11 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.2-7
848- add DT_GNU_HASH support (--hash-style=gnu and --hash-style=both
849  ld options)
850
851* Thu Jun 29 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.2-4
852- fix i?86 TLS GD->IE transition in executables (#196157, BZ#2513)
853
854* Mon Jun 19 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.2-3
855- fix two places in ld that misbehaved with MALLOC_PERTURB_=N
856- fix .tls_common handling in relocatable linking
857
858* Mon Jun  5 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.2-2
859- fix --as-needed (Alan Modra, #193689, BZ#2721)
860
861* Thu Jun  1 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.2-1
862- update to 2.17.50.0.2
863- update from CVS to 20060601
864- speed up the ELF linker by caching the result of kept section check
865  (H.J. Lu)
866
867* Tue May  9 2006 Jakub Jelinek <jakub@redhat.com> 2.17.50.0.1-1
868- update to 2.17.50.0.1
869
870* Fri Mar 31 2006 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.6-6
871- fix ld error message formatting, so that collect2 parser can
872  parse it again for g++ -frepo (#187142)
873
874* Thu Mar  9 2006 Alexandre Oliva <aoliva@redhat.com> 2.16.91.0.6-4
875- fix relaxation of TLS GD to LE on PPC (#184590)
876
877* Fri Mar  3 2006 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.6-3
878- support DW_CFA_val_{offset,offset_sf,expression} in readelf/objdump
879
880* Tue Feb 28 2006 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.6-2
881- add MNI support on i?86/x86_64 (#183080)
882- support S signal frame augmentation flag in .eh_frame,
883  add .cfi_signal_frame support (#175951, PR other/26208, BZ#300)
884
885* Tue Feb 14 2006 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.6-1
886- update to 2.16.91.0.6
887  - fix ppc64 --gc-sections
888  - disassembler fixes for x86_64 cr/debug regs
889  - fix linker search order for DT_NEEDED libs
890
891* Mon Jan 02 2006 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.5-1
892- update to 2.16.91.0.5
893- don't error about .toc1 references to discarded sectiosn on ppc64
894  (#175944)
895
896* Wed Dec 14 2005 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.3-2
897- put .gnu.linkonce.d.rel.ro.* sections into relro region
898
899* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
900- rebuilt
901
902* Fri Nov 11 2005 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.3-1
903- update to 2.16.91.0.3
904- add .weakref support (Alexandre Oliva, #115157, #165728)
905
906* Thu Aug 18 2005 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.2-4
907- install-info also configure.info
908- update standards.texi from gnulib (#165530)
909
910* Tue Aug 16 2005 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.2-3
911- update to 20050816 CVS
912- better fix for ld-cdtest
913- fix symbol version script parsing
914
915* Fri Jul 29 2005 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.2-2
916- don't complain about relocs to discarded sections in ppc32
917  .got2 sections (Alan Modra, PR target/17828)
918
919* Fri Jul 22 2005 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.2-1
920- update to 2.16.91.0.2
921
922* Thu Jul 21 2005 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.1-3
923- fix buffer overflow in readelf ia64 unwind printing code
924- use vsnprintf rather than vsprintf in gas diagnostics (Tavis Ormandy)
925- fix ld-cdtest when CFLAGS contains -fexceptions
926
927* Wed Jul 20 2005 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.1-2
928- update to 20050720 CVS
929
930* Mon Jul 11 2005 Jakub Jelinek <jakub@redhat.com> 2.16.91.0.1-1
931- update to 2.16.91.0.1 plus 20050708 CVS
932
933* Wed Jun 15 2005 Jakub Jelinek <jakub@redhat.com> 2.16.90.0.3-1
934- update to 2.16.90.0.3
935- update to 20050615 CVS
936  - ppc32 secure PLT support (Alan Modra)
937- further bfd/readelf robustification
938
939* Sat Jun 11 2005 Jakub Jelinek <jakub@redhat.com> 2.15.94.0.2.2-4
940- further bfd robustification (CAN-2005-1704, #158680)
941
942* Fri Jun 10 2005 Jakub Jelinek <jakub@redhat.com> 2.15.94.0.2.2-3
943- further objdump and readelf robustification (CAN-2005-1704, #158680)
944
945* Wed May 25 2005 Jakub Jelinek <jakub@redhat.com> 2.15.94.0.2.2-2
946- bfd and readelf robustification (CAN-2005-1704, #158680)
947
948* Tue Mar 29 2005 Jakub Jelinek <jakub@redhat.com> 2.15.94.0.2.2-1
949- update to 2.15.94.0.2.2
950- speed up walk_wild_section (Robert O'Callahan)
951
952* Mon Mar  7 2005 Jakub Jelinek <jakub@redhat.com> 2.15.94.0.2-4
953- rebuilt with GCC 4
954
955* Mon Feb 28 2005 Jakub Jelinek <jakub@redhat.com> 2.15.94.0.2-3
956- fix buffer overflows in readelf (#149506)
957- move c++filt to binutils from gcc-c++, conflict with gcc-c++ < 4.0 (#86333)
958
959* Thu Feb 10 2005 Jakub Jelinek <jakub@redhat.com> 2.15.94.0.2-1
960- update to 2.15.94.0.2
961- fix .note.GNU-stack/PT_GNU_STACK computation in linker on ppc64 (#147296)
962- fix stripping of binaries/libraries that have empty sections right before
963  .dynamic section (with the same starting address; #144038)
964- handle AS_NEEDED (...) in linker script INPUT/GROUP
965
966* Tue Dec 14 2004 Jakub Jelinek <jakub@redhat.com> 2.15.92.0.2-11
967- fix a longstanding -z relro bug
968
969* Mon Dec 13 2004 Jakub Jelinek <jakub@redhat.com> 2.15.92.0.2-10
970- avoid unnecessary gap with -z relro showing on i686 libc.so
971- ppc64 --emit-relocs fix (Alan Modra)
972- don't crash if STT_SECTION symbol has incorrect st_shndx (e.g. SHN_ABS,
973  as created by nasm; #142181)
974- don't try to make absptr LSDAs relative if they don't have relocations
975  against them (Alan Modra, #141162)
976
977* Wed Oct 27 2004 Jakub Jelinek <jakub@redhat.com> 2.15.92.0.2-5.EL4
978- fix ar xo (#104344)
979
980* Wed Oct 20 2004 Jakub Jelinek <jakub@redhat.com> 2.15.92.0.2-5
981- fix --just-symbols on ppc64 (Alan Modra, #135498)
982
983* Fri Oct 15 2004 Jakub Jelinek <jakub@redhat.com> 2.15.92.0.2-4
984- fix code detecting matching linkonce and single member comdat
985  group sections (#133078)
986
987* Mon Oct 11 2004 Jakub Jelinek <jakub@redhat.com> 2.15.92.0.2-3
988- revert Sep 09 change to make ppc L second argument e.g. for tlbie
989  non-optional
990- fix stripping of prelinked binaries and libraries (#133734)
991- allow strings(1) on 32-bit arches to be used again with > 2GB
992  files (#133555)
993
994* Mon Oct  4 2004 Jakub Jelinek <jakub@redhat.com> 2.15.92.0.2-2
995- update to 2.15.92.0.2
996- change ld's ld.so.conf parser to match ldconfig's (#129340)
997
998* Mon Sep 20 2004 Jakub Jelinek <jakub@redhat.com> 2.15.91.0.2-9
999- avoid almost 1MB (sparse) gaps in the middle of -z relro
1000  libraries on x86-64 (Andreas Schwab)
1001- fix -z relro to make sure end of PT_GNU_RELRO segment is always
1002  COMMONPAGESIZE aligned
1003
1004* Mon Aug 16 2004 Jakub Jelinek <jakub@redhat.com> 2.15.91.0.2-8
1005- fix linker segfaults on input objects with SHF_LINK_ORDER with
1006  incorrect sh_link (H.J.Lu, Nick Clifton, #130198, BZ #290)
1007
1008* Mon Aug 16 2004 Jakub Jelinek <jakub@redhat.com> 2.15.91.0.2-7
1009- resolve all undefined ppc64 .* syms to the function bodies through
1010  .opd, not just those used in brach instructions (Alan Modra)
1011
1012* Mon Aug 16 2004 Jakub Jelinek <jakub@redhat.com> 2.15.91.0.2-6
1013- fix ppc64 ld --dotsyms (Alan Modra)
1014
1015* Mon Aug 16 2004 Jakub Jelinek <jakub@redhat.com> 2.15.91.0.2-5
1016- various ppc64 make check fixes when using non-dot-syms gcc (Alan Modra)
1017- fix --gc-sections
1018- on ia64 create empty .gnu.linkonce.ia64unw*.* sections for
1019  .gnu.linkonce.t.* function doesn't need unwind info
1020
1021* Mon Aug 16 2004 Jakub Jelinek <jakub@redhat.com> 2.15.91.0.2-4
1022- kill ppc64 dot symbols (Alan Modra)
1023- objdump -d support for objects without dot symbols
1024- support for overlapping ppc64 .opd entries
1025
1026* Mon Aug 9 2004 Jakub Jelinek <jakub@redhat.com> 2.15.91.0.2-3
1027- fix a newly introduced linker crash on x86-64
1028
1029* Sun Aug 8 2004 Alan Cox <alan@redhat.com> 2.15.91.0.2-2
1030- BuildRequire bison and macroise buildroot - from Steve Grubb
1031
1032* Fri Jul 30 2004 Jakub Jelinek <jakub@redhat.com> 2.15.91.0.2-1
1033- update to 2.15.91.0.2
1034- BuildRequire flex (#117763)
1035
1036* Wed May 19 2004 Jakub Jelinek <jakub@redhat.com> 2.15.90.0.3-7
1037- use lib64 instead of lib directories on ia64 if %%{_lib} is
1038  set to lib64 by rpm
1039
1040* Sat May 15 2004 Jakub Jelinek <jakub@redhat.com> 2.15.90.0.3-6
1041- fix a bug introduced in the ++/-- rejection patch
1042  from 2.15.90.0.3 (Alan Modra)
1043
1044* Tue May  4 2004 Jakub Jelinek <jakub@redhat.com> 2.15.90.0.3-5
1045- fix s390{,x} .{,b,p2}align handling
1046- ppc/ppc64 testsuite fix
1047
1048* Mon May  3 2004 Jakub Jelinek <jakub@redhat.com> 2.15.90.0.3-4
1049- -z relro ppc/ppc64/ia64 fixes
1050- change x86-64 .plt symbol st_size handling to match ia32
1051- prettify objdump -d output
1052
1053* Tue Apr 20 2004 Jakub Jelinek <jakub@redhat.com> 2.15.90.0.3-3
1054- several SPARC fixes
1055
1056* Sun Apr 18 2004 Jakub Jelinek <jakub@redhat.com> 2.15.90.0.3-2
1057- yet another fix for .tbss handling
1058
1059* Fri Apr 16 2004 Jakub Jelinek <jakub@redhat.com> 2.15.90.0.3-1
1060- update to 2.15.90.0.3
1061
1062* Fri Mar 26 2004 Jakub Jelinek <jakub@redhat.com> 2.15.90.0.1.1-2
1063- update to 20040326 CVS
1064  - fix ppc64 weak .opd symbol handling (Alan Modra, #119086)
1065- fix .tbss handling bug introduced
1066
1067* Fri Mar 26 2004 Jakub Jelinek <jakub@redhat.com> 2.15.90.0.1.1-1
1068- update to 2.15.90.0.1.1
1069
1070* Sat Feb 21 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.8-8
1071- with -z now without --enable-new-dtags create DT_BIND_NOW
1072  dynamic entry in addition to DT_FLAGS_1 with DF_1_NOW bit set
1073
1074* Fri Feb 20 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.8-7
1075- fix -pie on ppc32
1076
1077* Fri Feb 20 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.8-6
1078- clear .plt sh_entsize on sparc32
1079- put whole .got into relro area with -z now -z relro
1080
1081* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
1082- rebuilt
1083
1084* Thu Jan 22 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.8-4
1085- fix -pie on IA64
1086
1087* Mon Jan 19 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.8-3
1088- fix testcases on s390 and s390x
1089
1090* Fri Jan 16 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.8-2
1091- fix testcases on AMD64
1092- fix .got's sh_entsize on IA32/AMD64
1093- set COMMONPAGESIZE on s390/s390x
1094- set COMMONPAGESIZE on ppc32 (Alan Modra)
1095
1096* Fri Jan 16 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.8-1
1097- update to 2.14.90.0.8
1098
1099* Tue Jan 13 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.7-4
1100- fix -z relro on 64-bit arches
1101
1102* Mon Jan 12 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.7-3
1103- fix some bugs in -z relro support
1104
1105* Fri Jan  9 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.7-2
1106- -z relro support, reordering of RW sections
1107
1108* Fri Jan  9 2004 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.7-1
1109- update to 2.14.90.0.7
1110
1111* Mon Nov 24 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.6-4
1112- fix assembly parsing of foo=(.-bar)/4 (Alan Modra)
1113- fix IA-64 assembly parsing of (p7) hint @pause
1114
1115* Tue Sep 30 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.6-3
1116- don't abort on some linker warnings/errors on IA-64
1117
1118* Sat Sep 20 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.6-2
1119- fix up merge2.s to use .p2align instead of .align
1120
1121* Sat Sep 20 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.6-1
1122- update to 2.14.90.0.6
1123- speed up string merging (Lars Knoll, Michael Matz, Alan Modra)
1124- speed up IA-64 local symbol handling during linking
1125
1126* Fri Sep  5 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.5-7
1127- avoid ld -s segfaults introduced in 2.14.90.0.5-5 (Dmitry V. Levin,
1128  #103180)
1129
1130* Fri Aug 29 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.5-6
1131- build old demangler into libiberty.a (#102268)
1132- SPARC .cfi* support
1133
1134* Tue Aug  5 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.5-5
1135- fix orphan section placement
1136
1137* Tue Jul 29 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.5-4
1138- fix ppc64 elfvsb linker tests
1139- some more 64-bit cleanliness fixes, give ppc64 fdesc symbols
1140  type and size (Alan Modra)
1141
1142* Tue Jul 29 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.5-3
1143- fix 64-bit unclean code in ppc-opc.c
1144
1145* Mon Jul 28 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.5-2
1146- fix 64-bit unclean code in tc-ppc.c
1147
1148* Mon Jul 28 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.5-1
1149- update to 2.14.90.0.5
1150- fix ld -r on ppc64 (Alan Modra)
1151
1152* Fri Jul 18 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-23
1153- rebuilt
1154
1155* Thu Jul 17 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-22
1156- fix elfNN_ia64_dynamic_symbol_p (Richard Henderson, #86661)
1157- don't access memory beyond what was allocated in readelf
1158  (Richard Henderson)
1159
1160* Thu Jul 10 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-21
1161- add .cfi_* support on ppc{,64} and s390{,x}
1162
1163* Tue Jul  8 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-20
1164- remove lib{bfd,opcodes}.la (#98190)
1165
1166* Mon Jul  7 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-19
1167- fix -pie support on amd64, s390, s390x and ppc64
1168- issue relocation overflow errors for s390/s390x -fpic code when
1169  accessing .got slots above 4096 bytes from .got start
1170
1171* Thu Jul  3 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-18
1172- rebuilt
1173
1174* Thu Jul  3 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-17
1175- fix ia64 -pie support
1176- require no undefined non-weak symbols in PIEs like required for normal
1177  binaries
1178
1179* Wed Jul  2 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-16
1180- fix readelf -d on IA-64
1181- build libiberty.a with -fPIC, so that it can be lined into shared
1182  libraries
1183
1184* Wed Jun 25 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-15
1185- rebuilt
1186
1187* Wed Jun 25 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-14
1188- added support for Intel Prescott instructions
1189- fix hint@pause for ia64
1190- add workaround for LTP sillyness (#97934)
1191
1192* Wed Jun 18 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-13
1193- update CFI stuff to 2003-06-18
1194- make sure .eh_frame is aligned to 8 bytes on 64-bit arches,
1195  remove padding within one .eh_frame section
1196
1197* Tue Jun 17 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-12
1198- rebuilt
1199
1200* Tue Jun 17 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-11
1201- one more fix for the same patch
1202
1203* Tue Jun 17 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-10
1204- fix previous patch
1205
1206* Mon Jun 16 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-9
1207- ensure R_PPC64_{RELATIVE,ADDR64} have *r_offset == r_addend
1208  and the other relocs have *r_offset == 0
1209
1210* Tue Jun 10 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-8
1211- remove some unnecessary provides in ppc64 linker script
1212  which were causing e.g. empty .ctors/.dtors section creation
1213
1214* Fri Jun  6 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-7
1215- some CFI updates/fixes
1216- don't create dynamic relocations against symbols defined in PIE
1217  exported from its .dynsym
1218
1219* Wed Jun  4 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-6
1220- update gas to 20030604
1221- PT_GNU_STACK support
1222
1223* Mon Jun  2 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-5
1224- buildrequire gettext (#91838)
1225
1226* Sat May 31 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-4
1227- fix shared libraries with >= 8192 .plt slots on ppc32
1228
1229* Thu May 29 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-3
1230- rebuilt
1231
1232* Thu May 29 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-2
1233- rename ld --dynamic option to --pic-executable or --pie
1234- fix ld --help output
1235- document --pie/--pic-executable in ld.info and ld.1
1236
1237* Wed May 28 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.4-1
1238- update to 2.14.90.0.4-1
1239- gas CFI updates (Richard Henderson)
1240- dynamic executables (Ulrich Drepper)
1241
1242* Tue May 20 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.2-2
1243- fix ELF visibility handling
1244- tidy plt entries on IA-32, ppc and ppc64
1245
1246* Mon May 19 2003 Jakub Jelinek <jakub@redhat.com> 2.14.90.0.2-1
1247- update to 2.14.90.0.2-1
1248
1249* Tue May 13 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.20-8
1250- fix bfd_elf_hash on 64-bit arches (Andrew Haley)
1251
1252* Wed Apr 30 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.20-7
1253- rebuilt
1254
1255* Mon Apr 14 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.20-6
1256- optimize DW_CFA_advance_loc4 in gas even if there is 'z' augmentation
1257  with size 0 in FDE
1258
1259* Fri Apr 11 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.20-5
1260- fix SPARC build
1261
1262* Thu Apr  3 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.20-4
1263- fix ppc32 plt reference counting
1264- don't include %{_prefix}/%{_lib}/debug in the non-debuginfo package
1265  (#87729)
1266
1267* Mon Mar 31 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.20-3
1268- make elf64ppc target native extra on ppc and elf32ppc native extra
1269  on ppc64.
1270
1271* Fri Mar 28 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.20-2
1272- fix TLS on IA-64 with ld relaxation
1273
1274* Sat Mar 22 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.20-1
1275- update to 2.13.90.0.20
1276
1277* Mon Feb 24 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.18-9
1278- rebuilt
1279
1280* Mon Feb 24 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.18-8
1281- don't strip binaries in %%install, so that there is non-empty
1282  debuginfo
1283
1284* Mon Feb 24 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.18-7
1285- don't optimize .eh_frame during ld -r
1286
1287* Thu Feb 13 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.18-6
1288- don't clear elf_link_hash_flags in the .symver patch
1289- only use TC_FORCE_RELOCATION in s390's TC_FORCE_RELOCATION_SUB_SAME
1290  (Alan Modra)
1291
1292* Mon Feb 10 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.18-5
1293- fix the previous .symver change
1294- remove libbfd.so and libopcodes.so symlinks, so that other packages
1295  link statically, not dynamically against libbfd and libopcodes
1296  whose ABI is everything but stable
1297
1298* Mon Feb 10 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.18-4
1299- do .symver x, x@FOO handling earlier
1300- support .file and .loc on s390*
1301
1302* Mon Feb 10 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.18-3
1303- handle .symver x, x@FOO in ld such that relocs against x become
1304  dynamic relocations against x@FOO (#83325)
1305- two PPC64 TLS patches (Alan Modra)
1306
1307* Sun Feb 09 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.18-2
1308- fix SEARCH_DIR on x86_64/s390x
1309- fix Alpha --relax
1310- create DT_RELA{,SZ,ENT} on s390 even if there is just .rela.plt
1311  and no .rela.dyn section
1312- support IA-32 on IA-64 (#83752)
1313- .eh_frame_hdr fix (Andreas Schwab)
1314
1315* Thu Feb 06 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.18-1
1316- update to 2.13.90.0.18 + 20030121->20030206 CVS diff
1317
1318* Tue Feb 04 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.16-8
1319- alpha TLS fixes
1320- use .debug_line directory table to make the section tiny bit smaller
1321- libtool fix from Jens Petersen
1322
1323* Sun Feb 02 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.16-7
1324- sparc32 TLS
1325
1326* Fri Jan 24 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.16-6
1327- s390{,x} TLS and two other mainframe patches
1328
1329* Fri Jan 17 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.16-5
1330- fix IA-64 TLS IE in shared libs
1331- .{preinit,init,fini}_array compat hack from Alexandre Oliva
1332
1333* Thu Jan 16 2003 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.16-4
1334- IA-64 TLS fixes
1335- fix .plt sh_entsize on Alpha
1336- build with %%_smp_mflags
1337
1338* Sat Nov 30 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.16-3
1339- fix strip on TLS binaries and libraries
1340
1341* Fri Nov 29 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.16-2
1342- fix IA-64 ld bootstrap
1343
1344* Thu Nov 28 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.16-1
1345- update to 2.13.90.0.16
1346- STT_TLS SHN_UNDEF fix
1347
1348* Wed Nov 27 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.10-4
1349- pad .rodata.cstNN sections at the end if they aren't sized to multiple
1350  of sh_entsize
1351- temporary patch to make .eh_frame and .gcc_except_table sections
1352  readonly if possible (should be removed when AUTO_PLACE is implemented)
1353- fix .PPC.EMB.apuinfo section flags
1354
1355* Wed Oct 23 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.10-3
1356- fix names and content of alpha non-alloced .rela.* sections (#76583)
1357- delete unpackaged files from the buildroot
1358
1359* Tue Oct 15 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.10-2
1360- enable s390x resp. s390 emulation in linker too
1361
1362* Mon Oct 14 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.10-1
1363- update to 2.13.90.0.10
1364- add a bi-arch patch for sparc/s390/x86_64
1365- add --enable-64-bit-bfd on sparc, s390 and ppc
1366
1367* Thu Oct 10 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.4-3
1368- fix combreloc testcase
1369
1370* Thu Oct 10 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.4-2
1371- fix orphan .rel and .rela section placement with -z combreloc (Alan Modra)
1372- skip incompatible linker scripts when searching for libraries
1373
1374* Tue Oct  1 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.4-1
1375- update to 2.13.90.0.4
1376- x86-64 TLS support
1377- some IA-32 TLS fixes
1378- some backported patches from trunk
1379- include opcodes, ld, gas and bfd l10n too
1380
1381* Thu Sep 19 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.2-3
1382- allow addends for IA-32 TLS @tpoff, @ntpoff and @dtpoff
1383- clear memory at *r_offset of dynamic relocs on PPC
1384- avoid ld crash if accessing non-local symbols through LE relocs
1385- new IA-32 TLS relocs, bugfixes and testcases
1386- use brl insn on IA-64 (Richard Henderson)
1387- fix R_IA64_PCREL21{M,F} handling (Richard Henderson)
1388- build in separate builddir, so that gasp tests don't fail
1389- include localization
1390
1391* Thu Aug  8 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.2-2
1392- fix R_386_TPOFF32 addends (#70824)
1393
1394* Sat Aug  3 2002 Jakub Jelinek <jakub@redhat.com> 2.13.90.0.2-1
1395- update to 2.13.90.0.2
1396  - fix ld TLS assertion failure (#70084)
1397  - fix readelf --debug-dump= handling to match man page and --help
1398    (#68997)
1399- fix _GLOBAL_OFFSET_TABLE gas handling (#70241)
1400
1401* Wed Jul 24 2002 Jakub Jelinek <jakub@redhat.com> 2.12.90.0.15-1
1402- update to 2.12.90.0.15
1403- TLS .tbss fix
1404- don't use rpm %%configure macro, it is broken too often (#69366)
1405
1406* Thu May 30 2002 Jakub Jelinek <jakub@redhat.com> 2.12.90.0.9-1
1407- update to 2.12.90.0.9
1408  - TLS support
1409- remove gasp.info from %%post/%%preun (#65400)
1410
1411* Mon Apr 29 2002 Jakub Jelinek <jakub@redhat.com> 2.12.90.0.7-1
1412- update to 2.12.90.0.7
1413- run make check
1414
1415* Mon Apr 29 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-12
1416- fix .hidden handling on SPARC (Richard Henderson)
1417- don't crash when linking -shared non-pic code with SHF_MERGE
1418- fix .eh_frame_hdr for DW_EH_PE_aligned
1419- correctly adjust DW_EH_PE_pcrel encoded personalities in CIEs
1420
1421* Fri Apr  5 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-11
1422- don't emit dynamic R_SPARC_DISP* relocs against STV_HIDDEN symbols
1423  into shared libraries
1424
1425* Thu Mar 21 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-10
1426- don't merge IA-64 unwind info sections together during ld -r
1427
1428* Mon Mar 11 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-9
1429- fix DATA_SEGMENT_ALIGN on ia64/alpha/sparc/sparc64
1430
1431* Fri Mar  8 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-8
1432- don't crash on SHN_UNDEF local dynsyms (Andrew MacLeod)
1433
1434* Thu Mar  7 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-7
1435- fix bfd configury bug (Alan Modra)
1436
1437* Tue Mar  5 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-6
1438- don't copy visibility when equating symbols
1439- fix alpha .text/.data with .previous directive bug
1440
1441* Tue Mar  5 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-5
1442- fix SHF_MERGE crash with --gc-sections (#60369)
1443- C++ symbol versioning patch
1444
1445* Fri Feb 22 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-4
1446- add DW_EH_PE_absptr -> DW_EH_PE_pcrel optimization for shared libs,
1447  if DW_EH_PE_absptr cannot be converted that way, don't build the
1448  .eh_frame_hdr search table
1449
1450* Fri Feb 15 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-3
1451- fix ld -N broken by last patch
1452
1453* Tue Feb 12 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-2
1454- trade one saved runtime page for data segment (=almost always not shared)
1455  for up to one page of disk space where possible
1456
1457* Fri Feb  8 2002 Jakub Jelinek <jakub@redhat.com> 2.11.93.0.2-1
1458- update to 2.11.93.0.2
1459- use %%{ix86} instead of i386 for -z combreloc default (#59086)
1460
1461* Thu Jan 31 2002 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-10
1462- don't create SHN_UNDEF STB_WEAK symbols unless there are any relocations
1463  against them
1464
1465* Wed Jan 30 2002 Bill Nottingham <notting@redhat.com> 2.11.92.0.12-9.1
1466- rebuild (fix ia64 miscompilation)
1467
1468* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
1469- automated rebuild
1470
1471* Fri Dec 28 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-8
1472- two further .eh_frame patch fixes
1473
1474* Wed Dec 19 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-7
1475- as ld is currently not able to shrink input sections to zero size
1476  during discard_info, build a fake minimal CIE in that case
1477- update elf-strtab patch to what was commited
1478
1479* Mon Dec 17 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-6
1480- one more .eh_frame patch fix
1481- fix alpha .eh_frame handling
1482- optimize elf-strtab finalize
1483
1484* Sat Dec 15 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-5
1485- yet another fix for the .eh_frame patch
1486
1487* Fri Dec 14 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-4
1488- Alan Modra's patch to avoid crash if there is no dynobj
1489
1490* Thu Dec 13 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-3
1491- H.J.'s patch to avoid crash if input files are not ELF
1492- don't crash if a SHF_MERGE for some reason could not be merged
1493- fix objcopy/strip to preserve SHF_MERGE sh_entsize
1494- optimize .eh_frame sections, add PT_GNU_EH_FRAME support
1495- support anonymous version tags in version script
1496
1497* Tue Nov 27 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-2
1498- fix IA-64 SHF_MERGE handling
1499
1500* Tue Nov 27 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.12-1
1501- update to 2.11.92.0.12
1502  - optimize .dynstr and .shstrtab sections (#55524)
1503  - fix ld.1 glitch (#55459)
1504- turn relocs against SHF_MERGE local symbols with zero addend
1505  into STT_SECTION + addend
1506- remove man pages for programs not included (nlmconv, windres, dlltool;
1507  #55456, #55461)
1508- add BuildRequires for texinfo
1509
1510* Thu Oct 25 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.7-2
1511- duh, fix strings on bfd objects (#55084)
1512
1513* Sat Oct 20 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.7-1
1514- update to 2.11.92.0.7
1515- remove .rel{,a}.dyn from output if it is empty
1516
1517* Thu Oct 11 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.5-2
1518- fix strings patch
1519- use getc_unlocked in strings to speed it up by 50% on large files
1520
1521* Wed Oct 10 2001 Jakub Jelinek <jakub@redhat.com> 2.11.92.0.5-1
1522- update to 2.11.92.0.5
1523  - binutils localization (#45148)
1524  - fix typo in REPORT_BUGS_TO (#54325)
1525- support files bigger than 2GB in strings (#54406)
1526
1527* Wed Sep 26 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-12
1528- on IA-64, don't mix R_IA64_IPLTLSB relocs with non-PLT relocs in
1529  .rela.dyn section.
1530
1531* Tue Sep 25 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-11
1532- add iplt support for IA-64 (Richard Henderson)
1533- switch to new section flags for SHF_MERGE and SHF_STRINGS, put
1534  in compatibility code
1535- "s" section flag for small data sections on IA-64 and Alpha
1536  (Richard Henderson)
1537- fix sparc64 .plt[32768+] handling
1538- don't emit .rela.stab on sparc
1539
1540* Mon Sep 10 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-10
1541- fix SHF_MERGE on Sparc
1542
1543* Fri Aug 31 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-9
1544- on Alpha, copy *r_offset to R_ALPHA_RELATIVE's r_addend
1545
1546* Thu Aug 30 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-8
1547- on IA-64, put crtend{,S}.o's .IA_64.unwind section last in
1548  .IA_64.unwind output section (for compatibility with 7.1 eh)
1549
1550* Fri Aug 24 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-7
1551- put RELATIVE relocs first, not last
1552- enable -z combreloc by default on IA-{32,64}, Alpha, Sparc*
1553
1554* Thu Aug 23 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-6
1555- support for -z combreloc
1556- remove .dynamic patch, -z combreloc patch does this better
1557- set STT_FUNC default symbol sizes in .endp directive on IA-64
1558
1559* Mon Jul 16 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-5
1560- fix last patch (H.J.Lu)
1561
1562* Fri Jul 13 2001 Jakub Jelinek <jakub@redhat.com> 2.11.90.0.8-4
1563- fix placing of orphan sections
1564
1565* Sat Jun 23 2001 Jakub Jelinek <jakub@redhat.com>
1566- fix SHF_MERGE support on Alpha
1567
1568* Fri Jun  8 2001 Jakub Jelinek <jakub@redhat.com>
1569- 2.11.90.0.8
1570  - some SHF_MERGE suport fixes
1571- don't build with tooldir /usrusr instead of /usr (#40937)
1572- reserve few .dynamic entries for prelinking
1573
1574* Mon Apr 16 2001 Jakub Jelinek <jakub@redhat.com>
1575- 2.11.90.0.5
1576  - SHF_MERGE support
1577
1578* Tue Apr  3 2001 Jakub Jelinek <jakub@redhat.com>
1579- 2.11.90.0.4
1580  - fix uleb128 support, so that CVS gcc bootstraps
1581  - some ia64 fixes
1582
1583* Mon Mar 19 2001 Jakub Jelinek <jakub@redhat.com>
1584- add -Bgroup support from Ulrich Drepper
1585
1586* Fri Mar  9 2001 Jakub Jelinek <jakub@redhat.com>
1587- hack - add elf_i386_glibc21 emulation
1588
1589* Fri Feb 16 2001 Jakub Jelinek <jakub@redhat.com>
1590- 2.10.91.0.2
1591
1592* Fri Feb  9 2001 Jakub Jelinek <jakub@redhat.com>
1593- 2.10.1.0.7
1594- remove ExcludeArch ia64
1595- back out the -oformat, -omagic and -output change for now
1596
1597* Fri Dec 15 2000 Jakub Jelinek <jakub@redhat.com>
1598- Prereq /sbin/install-info
1599
1600* Tue Nov 21 2000 Jakub Jelinek <jakub@redhat.com>
1601- 2.10.1.0.2
1602
1603* Tue Nov 21 2000 Jakub Jelinek <jakub@redhat.com>
1604- add one more alpha patch
1605
1606* Wed Nov 15 2000 Jakub Jelinek <jakub@redhat.com>
1607- fix alpha visibility as problem
1608- add support for Ultra-III
1609
1610* Fri Sep 15 2000 Jakub Jelinek <jakub@redhat.com>
1611- and one more alpha patch
1612
1613* Fri Sep 15 2000 Jakub Jelinek <jakub@redhat.com>
1614- two sparc patches
1615
1616* Mon Jul 24 2000 Jakub Jelinek <jakub@redhat.com>
1617- 2.10.0.18
1618
1619* Mon Jul 10 2000 Jakub Jelinek <jakub@redhat.com>
1620- 2.10.0.12
1621
1622* Mon Jun 26 2000 Jakub Jelinek <jakub@redhat.com>
1623- 2.10.0.9
1624
1625* Thu Jun 15 2000 Jakub Jelinek <jakub@redhat.com>
1626- fix ld -r
1627
1628* Mon Jun  5 2000 Jakub Jelinek <jakub@redhat.com>
1629- 2.9.5.0.46
1630- use _mandir/_infodir/_lib
1631
1632* Mon May  8 2000 Bernhard Rosenkraenzer <bero@redhat.com>
1633- 2.9.5.0.41
1634
1635* Wed Apr 12 2000 Bernhard Rosenkraenzer <bero@redhat.com>
1636- 2.9.5.0.34
1637
1638* Wed Mar 22 2000 Bernhard Rosenkraenzer <bero@redhat.com>
1639- 2.9.5.0.31
1640
1641* Fri Feb 04 2000 Cristian Gafton <gafton@redhat.com>
1642- man pages are compressed
1643- apply kingdon's patch from #5031
1644
1645* Wed Jan 19 2000 Jeff Johnson <jbj@redhat.com>
1646- Permit package to be built with a prefix other than /usr.
1647
1648* Thu Jan 13 2000 Cristian Gafton <gafton@redhat.com>
1649- add pacth from hjl to fix the versioning problems in ld
1650
1651* Tue Jan 11 2000 Bernhard Rosenkraenzer <bero@redhat.com>
1652- Add sparc patches from Jakub Jelinek <jakub@redhat.com>
1653- Add URL:
1654
1655* Tue Dec 14 1999 Bernhard Rosenkraenzer <bero@redhat.com>
1656- 2.9.5.0.22
1657
1658* Wed Nov 24 1999 Bernhard Rosenkraenzer <bero@redhat.com>
1659- 2.9.5.0.19
1660
1661* Sun Oct 24 1999 Bernhard Rosenkraenzer <bero@redhat.com>
1662- 2.9.5.0.16
1663
1664* Mon Sep 06 1999 Jakub Jelinek <jj@ultra.linux.cz>
1665- make shared non-pic libraries work on sparc with glibc 2.1.
1666
1667* Fri Aug 27 1999 Jim Kingdon
1668- No source/spec changes, just rebuilding with egcs-1.1.2-18 because
1669  the older egcs was miscompling gprof.
1670
1671* Mon Apr 26 1999 Cristian Gafton <gafton@redhat.com>
1672- back out very *stupid* sparc patch done by HJLu. People, keep out of
1673  things you don't understand.
1674- add alpha relax patch from rth
1675
1676* Mon Apr 05 1999 Cristian Gafton <gafton@redhat.com>
1677- version  2.9.1.0.23
1678- patch to make texinfo documentation compile
1679- auto rebuild in the new build environment (release 2)
1680
1681* Tue Feb 23 1999 Cristian Gafton <gafton@redhat.com>
1682- updated to 2.9.1.0.21
1683- merged with UltraPenguin
1684
1685* Mon Jan 04 1999 Cristian Gafton <gafton@redhat.com>
1686- added ARM patch from philb
1687- version 2.9.1.0.19a
1688- added a patch to allow arm* arch to be identified as an ARM
1689
1690* Thu Oct 01 1998 Cristian Gafton <gafton@redhat.com>
1691- updated to 2.9.1.0.14.
1692
1693* Sat Sep 19 1998 Jeff Johnson <jbj@redhat.com>
1694- updated to 2.9.1.0.13.
1695
1696* Wed Sep 09 1998 Cristian Gafton <gafton@redhat.com>
1697- updated to 2.9.1.0.12
1698
1699* Thu Jul  2 1998 Jeff Johnson <jbj@redhat.com>
1700- updated to 2.9.1.0.7.
1701
1702* Wed Jun 03 1998 Jeff Johnson <jbj@redhat.com>
1703- updated to 2.9.1.0.6.
1704
1705* Tue Jun 02 1998 Erik Troan <ewt@redhat.com>
1706- added patch from rth to get right offsets for sections in relocateable
1707  objects on sparc32
1708
1709* Thu May 07 1998 Prospector System <bugs@redhat.com>
1710- translations modified for de, fr, tr
1711
1712* Tue May 05 1998 Cristian Gafton <gafton@redhat.com>
1713- version 2.9.1.0.4 is out; even more, it is public !
1714
1715* Tue May 05 1998 Jeff Johnson <jbj@redhat.com>
1716- updated to 2.9.1.0.3.
1717
1718* Mon Apr 20 1998 Cristian Gafton <gafton@redhat.com>
1719- updated to 2.9.0.3
1720
1721* Tue Apr 14 1998 Cristian Gafton <gafton@redhat.com>
1722- upgraded to 2.9.0.2
1723
1724* Sun Apr 05 1998 Cristian Gafton <gafton@redhat.com>
1725- updated to 2.8.1.0.29 (HJ warned me that this thing is a moving target...
1726  :-)
1727- "fixed" the damn make install command so that all tools get installed
1728
1729* Thu Apr 02 1998 Cristian Gafton <gafton@redhat.com>
1730- upgraded again to 2.8.1.0.28 (at least on alpha now egcs will compile)
1731- added info packages handling
1732
1733* Tue Mar 10 1998 Cristian Gafton <gafton@redhat.com>
1734- upgraded to 2.8.1.0.23
1735
1736* Mon Mar 02 1998 Cristian Gafton <gafton@redhat.com>
1737- updated to 2.8.1.0.15 (required to compile the newer glibc)
1738- all patches are obsoleted now
1739
1740* Wed Oct 22 1997 Erik Troan <ewt@redhat.com>
1741- added 2.8.1.0.1 patch from hj
1742- added patch for alpha palcode form rth
Note: See TracBrowser for help on using the repository browser.