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

Revision 7851, 52.1 KB checked in by Takemikaduchi, 11 years ago (diff)

rebuild toolchain

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