source: projects/specs/tags/6_0_REL/b/binutils/binutils-vl.spec @ 3269

Revision 3269, 51.3 KB checked in by kenta, 13 years ago (diff)

updated binutils to 2.20.51.0.12

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