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

Revision 12020, 61.2 KB checked in by tomop, 5 years ago (diff)

update toolchain

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