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

Revision 5184, 51.9 KB checked in by kenta, 12 years ago (diff)

binutils: updated to 2.22

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