source: projects/specs/branches/6/b/binutils/binutils-vl.spec @ 10336

Revision 10336, 53.1 KB checked in by Takemikaduchi, 8 years ago (diff)

toolchain: rebuild

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