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

Revision 9869, 52.3 KB checked in by Takemikaduchi, 8 years ago (diff)

toolchain: rebuild
others: new upstream release

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