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

Revision 9267, 52.8 KB checked in by iwamoto, 9 years ago (diff)

binutils:fix CVE-2014-8484,85,8501,02,03,04,8737,38

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