-
Notifications
You must be signed in to change notification settings - Fork 3
/
ChangeLog
8589 lines (5218 loc) · 272 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2002-04-15 Mark Mitchell <mark@codesourcery.com>
* MAINTAINERS: Remove chill maintainers.
* Makefile.in (CHILLFLAGS): Remove.
(CHILL_LIB): Remove.
(TARGET_CONFIGDIRS): Remove libchill.
(CHILL_FOR_TARGET): Remove.
(BASE_FLAGS_TO_PASS): Don't pass CHILLFLAGS, CHILL_FOR_TARGET, or
CHILL_LIB.
(CONFIGURE_TARGET_MODULES): Remove configure-target-libchill.
(CHECK_TARGET_MODULES): Likewise.
(INSTALL_TARGET_MODULES): Likewise.
(CLEAN_TARGET_MODULES): Likewise.
(configure-target-libchill): Remove.
(all-target-libchill): Remove.
* configure.in (target_libs): Remove target-libchill.
Do not compute CHILL_FOR_TARGET.
* libchill: Remove directory.
2002-04-11 DJ Delorie <dj@redhat.com>
* Makefile.in, configure.in: Sync with binutils, entries
follow...
2002-04-07 Andrew Cagney <ac131313@redhat.com>
* Makefile.in (do-tar-bz2): Delete rule. Replace with ...
(do-tar, do-bz2): New rules.
(taz): Update. Replace do-tar-bz2 with do-tar and do-bz2.
(gdb-tar): New rule.
(gdb-taz): Rewrite. Use gdb-tar and do-bz2.
(insight_dejagnu.tar): New rule.
(insight.tar): New rule.
(gdb+dejagnu.tar): New rule.
(gdb.tar): New rule.
2002-02-01 Mo DeJong <supermo@bayarea.net>
* Makefile.in: Add all-tix to deps for all-snavigator
so that tix is built when building snavigator.
2002-01-11 Steve Ellcey <sje@cup.hp.com>
* configure.in (ia64*-*-hpux*): New target for IA64 HP-UX,
ld and gdb are not supported.
2002-01-07 Mark Salter <msalter@redhat.com>
* configure.in: Remove target-bsp and target-cygmon from arm builds.
Allow target-libgloss to be built for arm, strongarm, and xscale.
2001-12-13 Thomas Fitzsimmons <fitzsim@redhat.com>
* configure.in (FLAGS_FOR_TARGET): Remove -nostdinc and -isystem
options for i[3456]86-pc-linux* native builds.
2001-11-20 Nick Clifton <nickc@cambridge.redhat.com>
* Makefile.in (do-proto-toplev): Use msgfmt to generate .gmo
files from .po files for a distribution.
2001-09-03 Jeff Holcomb <jeffh@redhat.com>
* configure.in: Enable libstdc++-v3 for h8300 targets.
2001-06-19 Alan Modra <amodra@bigpond.net.au>
* Makefile.in (VER): If AM_INIT_AUTOMAKE uses BFD_VERSION, get
version from bfd/.
Fri Jun 8 11:14:02 2001 Andrew Cagney <cagney@b1.cygnus.com>
* Makefile.in (VER): When present, extract the version number from
the file version.in.
2001-05-24 Tom Rix <trix@redhat.com>
* configure.in : enable ld for aix
2001-02-09 Martin Schwidefsky <schwidefsky@de.ibm.com>
* config.guess: Add linux target for S/390.
2000-11-07 Philip Blundell <pb@futuretv.com>
* Makefile.in (ETC_SUPPORT): Also add configbuild.* and configdev.*.
2000-11-03 Philip Blundell <pb@futuretv.com>
* Makefile.in (ETC_SUPPORT): Add configure.texi and associated info
files.
2001-01-15 Ben Elliston <bje@redhat.com>
* configure.in (host_tools): Add sid.
Always configure cgen.
2000-11-24 Nick Clifton <nickc@redhat.com>
* configure.in (c4x, c5x, tic54x): Move after ARM targets.
2000-08-20 Doug Evans <dje@casey.transmeta.com>
* Makefile.in (ALL_MODULES): Add all-cgen.
(CROSS_CHECK_MODULES,INSTALL_MODULES,CLEAN_MODULES): Similarily.
(all-cgen): New target.
(all-opcodes,all-sim): Depend on all-cgen.
* configure.in (host_tools): Add cgen.
Only configure cgen if --enable-cgen-maint.
2002-04-09 Loren J. Rittle <ljrittle@acm.org>
* configure.in: Add *-*-freebsd* configurations.
2002-04-08 Tom Tromey <tromey@redhat.com>
* configure.in: Add FLAGS_FOR_TARGET to GCJ_FOR_TARGET.
Fixes PR libgcj/6068.
2002-03-30 Krister Walfridsson <cato@df.lth.se>
* configure.in (i*86-*-netbsdelf*): Don't disable libgcj.
2002-03-27 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* configure.in (alpha*-dec-osf*): Enable libgcj.
2003-03-27 Matthew Gingell <gingell@gnat.com>
* MAINTAINERS (Write After Approval): Add myself.
2002-03-24 Nick Clifton <nickc@cambridge.redhat.com>
Fix for: PR bootstrap/3591, target/5676
* configure.in (mcore-pe): Disable the configuration of
libstdc++-v3 since exceptions are not supported.
2002-03-20 Anthony Green <green@redhat.com>
* configure.in: Enable libgcj for xscale-elf target.
Tue Mar 19 09:05:08 2002 J"orn Rennecke <joern.rennecke@superh.com>
* MAINTAINERS: Update my email address.
2002-03-16 Alexandre Oliva <aoliva@redhat.com>
* ltmain.sh (relink_command): Fix typo in previous change.
2002-03-15 Alexandre Oliva <aoliva@redhat.com>
* ltmain.sh (taglist): Initialized. Don't let `CC' tag out of it.
(relink_command): Added --tag flags.
(mode=install): If relinking fails; error out.
2002-03-12 Richard Henderson <rth@redhat.com>
* Makefile.in (NOTPARALLEL): New. Use it instead of explicit
.NOTPARALLEL tag.
(do-check): Rename from check.
(check): Allow parallel check.
2002-03-12 Bob Wilson <bob.wilson@acm.org>
* MAINTAINERS: Add myself as maintainer for xtensa port.
Fix alphabetical order in CPU port maintainer list.
Remove myself from Write After Approval list.
2002-03-11 Richard Henderson <rth@redhat.com>
* Makefile.in (.NOTPARALLEL): Add fake tag.
2002-03-07 H.J. Lu (hjl@gnu.org)
* configure.in: Enable gprof for mips*-*-linux*.
2002-03-05 Danny Smith <dannysmith@users.sourceforge.net>
* MAINTAINERS (Write After Approval): Add myself.
2002-02-28 Alexandre Oliva <aoliva@redhat.com>
* configure.in (libstdcxx_flags): Don't add libstdc++-v3 flags for
libjava.
(CXX_FOR_TARGET): Explain why -shared-libgcc here.
2002-02-23 Alexandre Oliva <aoliva@redhat.com>
* Makefile.in (MAKEINFO): Don't assume makeinfo will be built just
because its Makefile is there; test for the executable instead.
2002-02-22 Alexandre Oliva <aoliva@redhat.com>
* configure.in (CXX_FOR_TARGET): Add -shared-libgcc for
libstdc++-v3 and libjava.
2002-02-11 Adam Megacz <adam@xwt.org>
* gcc/Makefile.in: Removed libstdc++-v3 dependancy for libjava and
boehm-gc
2002-02-09 Alexandre Oliva <aoliva@redhat.com>
* config.guess: Updated to 2002-01-30's version.
* config.sub: Updated to 2002-02-01's version.
Contribute sh64-elf.
2000-12-01 Alexandre Oliva <aoliva@redhat.com>
* configure.in: Added sh64-*-*.
2002-02-08 Chris Demetriou <cgd@broadcom.com>
* MAINTAINERS: Belatedly add myself to write after approval list.
Thu Feb 7 12:40:58 CET 2002 Jan Hubicka <jh@suse.cz>
* MAINTAINERS: Put self in as maintainer for x86-64 port.
Remove self as Write After Approval.
2002-01-31 Geoffrey Keating <geoffk@redhat.com>
* MAINTAINERS: Put self in as maintainer for contrib/regression
directory.
2002-01-28 Phil Edwards <pme@gcc.gnu.org>
* MAINTAINERS: Update my email address.
2002-01-26 Jason Thorpe <thorpej@wasabisystems.com>
* configure.in (*-*-netbsd*): New. Skip target-newlib,
target-libiberty, and target-libgloss. Skip Java-related
libraries if not supported for NetBSD on target CPU.
2002-01-25 Douglas B Rupp <rupp@gnat.com>
* install-sh: Use _inst.$$_ for temp file name.
2002-01-24 Jason Thorpe <thorpej@wasabisystems.com>
* MAINTAINERS (Write After Approval): Move my contact info
from here...
(OS Port Maintainers): ...to here (netbsd).
2002-01-22 Bob Wilson <bob.wilson@acm.org>
* MAINTAINERS (Write After Approval): Add myself.
2002-01-17 H.J. Lu <hjl@gnu.org>
* Makefile.in (all-fastjar): Also depend on all-libiberty.
(all-target-fastjar): Also depend on all-target-libiberty.
2002-01-16 H.J. Lu (hjl@gnu.org)
* config.guess: Import from master sources, rev 1.225.
* config.sub: Import from master sources, rev 1.238.
2002-01-16 Kazu Hirata <kazu@hxi.com>
* MAINTAINERS (Write After Approval): Remove myself.
2001-12-19 Florian Weimer <fw@deneb.enyo.de>
* MAINTAINERS (Write After Approval): Add myself.
2001-12-17 Joseph S. Myers <jsm28@cam.ac.uk>
* MAINTAINERS: Add self as docs co-maintainer.
2001-12-11 Matthias Klose <doko@debian.org>
* MAINTAINERS (Write After Approval): Add myself.
2001-12-09 Zack Weinberg <zack@codesourcery.com>
* MAINTAINERS: Update my email address.
2001-12-07 Turly O'Connor <turly@apple.com>
* MAINTAINERS (Write After Approval): Add myself.
* rs6000.c (rs6000_trampoline_size): Handle ABI_DARWIN case.
(rs6000_initialize_trampoline): Call __trampoline_setup for
ABI_DARWIN too.
* darwin-tramp.asm: New file, implements __trampoline_setup.
* t-darwin (LIB2FUNCS_EXTRA): Include darwin-tramp.asm.
2001-12-07 Paolo Carlini <pcarlini@unitus.it>
* MAINTAINERS (Write After Approval): Add myself.
Wed Dec 5 07:33:45 2001 Douglas B. Rupp <rupp@gnat.com>
* configure, configure.in: Use temp file for long sed commands.
2001-12-03 Laurent Guerby <guerby@acm.org>
* config.sub: Update to version 1.232 on subversion.
2001-12-03 Ben Elliston <bje@redhat.com>
* MAINTAINERS: Update mail address for config.* patches.
2001-11-27 DJ Delorie <dj@redhat.com>
Zack Weinberg <zack@codesourcery.com>
When build != host, create libiberty for the build machine.
* Makefile.in (TARGET_CONFIGARGS, BUILD_CONFIGARGS): Replace
CONFIG_ARGUMENTS.
(ALL_BUILD_MODULES_LIST, BUILD_CONFIGDIRS, BUILD_SUBDIR):
New variables.
(ALL_BUILD_MODULES, CONFIGURE_BUILD_MODULES): New variables
and rules.
(all.normal): Depend on ALL_BUILD_MODULES.
(CONFIGURE_TARGET_MODULES rule): Use TARGET_CONFIGARGS.
(all-build-libiberty): Depend on configure-build-libiberty.
* configure: Calculate and substitute proper value for
ALL_BUILD_MODULES.
* configure.in: Create the build subdirectory.
Calculate and substitute TARGET_CONFIGARGS (formerly
CONFIG_ARGUMENTS); also BUILD_SUBDIR and BUILD_CONFIGARGS (new).
2001-11-26 Ziemowit Laski <zlaski@apple.com>
* MAINTAINERS (write-after-approval): Add self.
2001-11-17 Craig Rodrigues <rodrigc@gcc.gnu.org>
* MAINTAINERS (GNATS only accounts): Remove self.
2001-11-14 Hans-Peter Nilsson <hp@bitrange.com>
* configure.in (noconfigdirs) [h8300*-*-*, h8500-*-*]: Disable
libf2c.
2001-11-12 Craig Rodrigues <rodrigc@gcc.gnu.org>
* MAINTAINERS (Write After Approval): Add self.
2001-11-12 David O'Brien <obrien@FreeBSD.org>
* MAINTAINERS: mips and s390 are also CPU ports.
2001-11-12 David O'Brien <obrien@FreeBSD.org>
* MAINTAINERS: mcore, cris and mmix are also CPU ports.
2001-11-11 David O'Brien <obrien@FreeBSD.org>
* MAINTAINERS: Alphabetize.
2001-11-09 Kazu Hirata <kazu@hxi.com>
* MAINTAINERS (Various maintainers: h8 port): Add myself.
2001-11-09 John David Anglin <dave@hiauly1.hia.nrc.ca>
* MAINTAINERS (Various maintainers: hppa port): Added myself.
2001-11-08 Phil Edwards <pedwards@disaster.jaj.com>
* configure.in (--enable-languages): Be more permissive about
syntax. Check for empty lists better. Warn about $LANGUAGES.
2001-11-08 Geoffrey Keating <geoffk@redhat.com>
* config.sub: Import from master sources, rev. 1.230.
* MAINTAINERS: Change 'stormy16' to 'xstormy16'.
2001-11-07 Laurent Guerby <guerby@acm.org>
* MAINTAINERS (Write After Approval): Add self.
2001-11-06 Hans-Peter Nilsson <hp@bitrange.com>
* Makefile.in (MAKEINFO): Use "missing" for makeinfo older than 4.0.
2001-11-05 Hans-Peter Nilsson <hp@bitrange.com>
* config.sub: Import from master sources, rev 1.226.
* config.guess: Import from master sources, rev 1.216.
2001-11-03 Hans-Peter Nilsson <hp@bitrange.com>
* configure.in (noconfigdirs) [mmix-*-*]: Disable libgcj.
* MAINTAINERS: Add self as maintainer of MMIX port.
Remove old after-approval entry.
2001-10-28 Joseph S. Myers <jsm28@cam.ac.uk>
* ChangeLog, configure: Fix spelling errors.
2001-10-20 Brendan Kehoe <brendan@zen.org>
* MAINTAINERS: Tweak my address.
Thu Oct 11 21:50:15 2001 J"orn Rennecke <amylaar@onetel.net.uk>
* MAINTAINERS: Update my email address.
2001-10-11 Hans-Peter Nilsson <hp@axis.com>
* configure.in (noconfigdirs) [cris-*-*]: Disable libgcj.
* MAINTAINERS: Add self as maintainer of CRIS port.
2001-10-10 Geert Bosch <bosch@gnat.com>
* MAINTAINERS (Various maintainers: Ada front end):
Added Robert Dewar.
2001-10-03 David Billinghurst <David.Billinghurst@riotinto.com>
* MAINTAINERS (Write After Approval): Added self
2001-10-02 Geert Bosch <bosch@gnat.com>
* MAINTAINERS (Various maintainers: Ada front end): Added myself.
2001-10-02 Joseph S. Myers <jsm28@cam.ac.uk>
* configure: Handle temporary files securely using mkdir.
2001-09-29 Alexandre Oliva <aoliva@redhat.com>
* Makefile.in (configure-target-gperf): Depend on $(ALL_GCC_CXX).
2001-09-26 Will Cohen <wcohen@redhat.com>
* configure.in (*-*-linux*): Disable configuration of target-newlib
and target-libgloss.
2001-09-26 Alexandre Oliva <aoliva@redhat.com>
* Makefile.in (EXTRA_TARGET_FLAGS): Pass RANLIB_FOR_TARGET for
RANLIB.
2001-09-21 Alexandre Oliva <aoliva@redhat.com>
* Makefile.in (AS_FOR_TARGET, LD_FOR_TARGET,
DLLTOOL_FOR_TARGET, WINDRES_FOR_TARGET, AR_FOR_TARGET,
RANLIB_FOR_TARGET, NM_FOR_TARGET): Don't use double quotes to
avoid quotes nesting problems.
(NATIVE_CHECK_MODULES): Ditto, just for consistency.
(DO_X): Export only variables that are set.
2001-09-19 Ben Elliston <bje@redhat.com>
* configure.in (sparc-sun-solaris2*): Don't use /usr/bin/which on
Solaris when testing for the /usr/ucb/cc compiler; it has incorrect
semantics. Use the shell built-in "type" command instead.
2001-08-31 Alexandre Oliva <aoliva@redhat.com>
Merged from gcc-3_0-branch:
2001-07-30 Jeff Sturm <jsturm@one-pont.com>
* ltcf-c.sh: Use $objext, not $ac_objext.
2001-07-27 Mark Kettenis <kettenis@gnu.org>
* ltcf-cxx.sh: Add support for GNU.
2001-07-22 Timothy Wall <twall@redhat.com>
* ltcf-c.sh: Don't disable shared libraries for AIX5/IA64. Preserve
default settings if using GNU tools with that configuration.
* ltcf-cxx.sh: Ditto.
* ltcf-gcj.sh: Ditto.
2001-07-21 Michael Chastain <chastain@redhat.com>
* ltconfig: Set max_cmd_len to a maximum of 512Kb, as it seems some
HPUX 11.0 systems have trouble with 1MB. Mark as gcc-local.
* ltmain.sh: Mark as gcc-local.
2001-08-30 Eric Christopher <echristo@redhat.com>
Jason Eckhardt <jle@redhat.com>
* config.guess: Merge from master sources.
* config.sub: Merge from master sources, add support for mipsisa32.
2001-08-25 Geoffrey Keating <geoffk@redhat.com>
* config.sub: Merge from master sources, rev 1.219.
* MAINTAINERS: Add self as contact for stormy16 port.
2001-08-14 Zack Weinberg <zackw@panix.com>
* config.sub: Merge from master sources, rev 1.218.
* config.guess: Merge from master sources, rev 1.209.
2001-08-11 Graham Stott <grahams@redhat.com>
* Makefile.in (check-c++): Add missing semicolon.
Mon Jul 30 19:24:13 CEST 2001 Jan Hubicka <jh@suse.cz>
* MAINTAINERS (Various maitainers: predict.def): Added myself.
2001-07-30 Eric Christopher <echristo@redhat.com>
* MAINTAINERS (Various maintainers: mips port): Added myself.
2001-07-25 Andrew Haley <aph@cambridge.redhat.com>
* configure.in (sh-*-linux*): New.
2001-07-27 Richard Henderson <rth@redhat.com>
* .cvsignore: Add LAST_UPDATED.
2001-07-23 Ulrich Weigand <uweigand@de.ibm.com>
* MAINTAINERS (Various maintainers: s390 port): Added myself.
2001-07-16 Aldy Hernandez <aldyh@redhat.com>
* config.sub: Fix mips64vr5000el typo in CPU-COMPANY.
Fri Jul 13 14:31:57 2001 Nicola Pero <nicola@brainstorm.co.uk>
* MAINTAINERS (Write After Approval): Added myself.
2001-07-12 Stephane Carrez <Stephane.Carrez@worldnet.fr>
* configure.in (noconfigdirs): Don't compile libiberty, libstdcxx
and libgcj on m68hc11/m68hc12.
2001-06-27 H.J. Lu (hjl@gnu.org)
* Makefile (CFLAGS_FOR_BUILD): New.
(EXTRA_GCC_FLAGS): Add CFLAGS_FOR_BUILD.
2001-06-13 Joseph S. Myers <jsm28@cam.ac.uk>
* README: Remove version number.
2001-06-13 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
* INSTALL/README: Update wrt. to the installation instructions now
residing in gcc/doc/install.texi.
2001-06-13 Joseph S. Myers <jsm28@cam.ac.uk>
* README: Replace with a cut-down and updated version of gcc/README.
2001-06-12 David Edelsohn <edelsohn@gnu.org>
* config-ml.in (powerpc-*-* | rs6000-*-*): Allow aix64 and pthread
multilibs to be disabled.
2001-06-11 Daniel Berlin <dan@cgsoftware.com>
* MAINTAINERS (Write After Approval): Add myself.
2001-06-09 Alexandre Oliva <aoliva@redhat.com>
* config.guess: Import CVS version 1.195.
* config.sub: Import CVS version 1.212.
2001-06-08 Alexandre Oliva <aoliva@redhat.com>, Jeff Sturm <jsturm@one-point.com>
* Makefile.in (AS_FOR_TARGET, LD_FOR_TARGET, NM_FOR_TARGET): If
gcc/xgcc is built, use -print-prog-name to find out the program
name to use.
2001-06-04 Phil Edwards <pme@sources.redhat.com>
* config.guess: Import CVS version 1.194. All gcc-local changes
appear to also be in the master copy.
* config.sub: Import CVS version 1.211.
Mon Jun 4 16:32:53 2001 Mark Mitchell <mark@codesourcery.com>
* ltcf-c.sh (archive_cmds, archive_expsym_cmds) [solaris,
with_gcc]: Use `gcc -shared' to build a shared library.
Mon Jun 4 16:24:43 2001 John David Anglin <dave@hiauly1.hia.nrc.ca>
* ltcf-c.sh (archive_cmd) [hpux, with_gcc]: Use gcc to link shared
archives.
Fri Jun 1 18:55:19 2001 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* MAINTAINERS (Write After Approval): Add myself.
2001-06-01 Hans-Peter Nilsson <hp@axis.com>
* configure.in (libstdcxx_flags): Do not try to execute
libstdc++-v3/testsuite_flags until it exists.
2001-06-01 Alan Modra <amodra@bigpond.net.au>
* MAINTAINERS: Update my email address.
2001-05-31 Graham Stott <grahams@redhat.com>
* MAINTAINERS (Write After Approval): Add myself.
2001-05-28 Simon Patarin <simon.patarin@inria.fr>
* ltcf-cxx.sh (osf3/osf4/osf5): Support creation of C++ shared
libraries when using g++ with native linker.
2001-05-28 Alexandre Oliva <aoliva@redhat.com>
* ltconfig, ltmain.sh: Upgrade to libtool 1.4a 1.641.2.256.
2001-05-22 Alexandre Oliva <aoliva@redhat.com>
* ltcf-cxx.sh (allow_undefined_flag, no_undefined_flag)
[aix4*|aix5*]: Prepend blank.
2001-05-20 Alexandre Oliva <aoliva@redhat.com>
* ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.254. Rebuilt a number
of subdir/configure scripts to use the new libtool.m4.
2001-05-19 Matt Kraai <kraai@alumni.carnegiemellon.edu>
* MAINTAINERS (Write After Approval): Add myself.
2001-05-18 Benjamin Kosnik <bkoz@redhat.com>
* configure.in (libstdcxx_flags): Remove reference to libstdc++.INC.
2001-05-11 Ben Elliston <bje@redhat.com>
* Makefile.in (all-sid): New target.
(check-sid, clean-sid, install-sid): Likewise.
2001-05-09 Jeffrey Oldham <oldham@codesourcery.com>
* ltcf-cxx.sh: Add -nostdlib to IRIX 6 archive_cmds.
2001-05-03 Alexandre Oliva <aoliva@redhat.com>
* configure.in (noconfigdirs) [*-cygwin*, *-mingw*, *-beos]: Disable
libgcj.
2001-05-03 Alexandre Oliva <aoliva@redhat.com>
* Makefile.in (AS_FOR_TARGET, LD_FOR_TARGET, NM_FOR_TARGET): If
gcc/xgcc is built, use -print-prog-name to find out the program
name to use.
2001-04-26 Alexandre Oliva <aoliva@redhat.com>
* configure.in (noconfigdirs): Don't reset it from scratch in the
target case; only append to it.
* configure.in (noconfigdirs) [hppa*-*-*, mips*-*-irix6*,
sparc-*-solaris2.8]: Disable ${libgcj}.
2001-04-25 Alexandre Oliva <aoliva@redhat.com>
* configure.in (libgcj_saved): Copy from $libgcj.
(libgcj): Zero out if --enable-libgcj; add to noconfigdirs is
--disable-libgcj.
2001-04-25 Gavin Romig-Koch <gavin@redhat.com>
* MAINTAINERS: Remove self as MIPS maintainer and
C front end maintainer.
Mon Apr 23 09:15:03 2001 Anthony Green <green@redhat.com>
* configure.in: Move *-chorusos target case to the proper switch.
Disable libgcj.
2001-04-12 Alexandre Oliva <aoliva@redhat.com>
* ltconfig, ltmain.sh, ltcf-cxx.sh: Upgraded to libtool 1.4a
1.641.2.228.
2001-04-13 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
* Makefile.in (STAGE1_CFLAGS): Pass down.
2001-04-13 Alan Modra <amodra@one.net.au>
* config.guess: Add hppa64-linux support. Note for next import that
this is already in the master file.
* configure.in: Likewise. Accept `parisc' alias for `hppa'.
2001-04-12 Alexandre Oliva <aoliva@redhat.com>
* ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.226.
2001-04-11 Stan Shebs <shebs@apple.com>
* MAINTAINERS: Add self as Darwin port maintainer.
2001-04-11 Alan Modra <amodra@one.net.au>
* MAINTAINERS: Update my email address.
2001-04-10 Loren J. Rittle <ljrittle@acm.org>
* ltcf-cxx.sh: Support creation of C++ shared libraries on
recent versions of FreeBSD (release 3 or later).
* ltconfig: On FreeBSD, -lc must not be provided when building
a shared library or else the standard -pthread gcc option is
rendered worthless to later users of the built library.
2001-04-06 Joseph S. Myers <jsm28@cam.ac.uk>
* MAINTAINERS: Add self and RTH as C front end maintainers.
2001-04-05 Alexandre Oliva <aoliva@redhat.com>
* config.sub: Make sure to match an already-canonicalized
machine name (eg. mn10300-unknown-elf).
2001-04-01 Alexandre Oliva <aoliva@redhat.com>
* Makefile.in (CXX_FOR_TARGET_FOR_RECURSIVE_MAKE, RECURSE_FLAGS):
New macros.
(bootstrap, cross): Use RECURSE_FLAGS.
* configure.in: Subst CXX_FOR_TARGET_FOR_RECURSIVE_MAKE.
2001-03-27 Alexandre Oliva <aoliva@redhat.com>
* configure.in (CXX_FOR_TARGET): Use xgcc for libstdc++-v3.
2001-03-22 Colin Howell <chowell@redhat.com>
* Makefile.in (DO_X): Do not backslash single-quotes in
backquotes (two places).
2001-03-22 Alexandre Oliva <aoliva@redhat.com>
Re-installed:
2001-01-02 Laurynas Biveinis <lauras@softhome.net>
* ltcf-c.sh: Clear ac_cv_prog_cc_pic for DJGPP. Do not add
'-DPIC' to ac_cv_prog_cc_pic for DJGPP.
* ltcf-cxx.sh: Likewise.
* ltcf-gcj.sh: Likewise.
2001-03-22 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
* MAINTAINERS: Add myself as "documentation co-maintainer".
2001-03-22 Alexandre Oliva <aoliva@redhat.com>
* ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
ltcf-gcj.sh: Upgraded to libtool 1.4a 1.641.2.198.
2001-03-19 Tom Tromey <tromey@redhat.com>
* config-ml.in: Handle GCJ and GCJFLAGS.
2001-03-21 Michael Chastain <chastain@redhat.com>
* Makefile.in: all-m4 depends on all-texinfo.
2001-03-20 Loren J. Rittle <ljrittle@acm.org>
* MAINTAINERS: Add myself to write after approval list.
2001-03-18 Laurynas Biveinis <lauras@softhome.net>
* Makefile.in (DO_X): Quote nested quotes.
2001-03-18 Alan Modra <alan@linuxcare.com.au>
* MAINTAINERS: Add myself to write after approval list.
2001-03-15 Laurynas Biveinis <lauras@softhome.net>
* Makefile.in (DO_X): Use double quotes for quoting
"RANLIB=$${RANLIB}".
2001-03-10 Ovidiu Predescu <ovidiu@cup.hp.com>
* MAINTAINERS: Added Stan Shebs as new maintainer for Objective-C.
2001-03-09 Nicola Pero <n.pero@mi.flashnet.it>
* configure.in: Only use `lang_requires' for languages athat are
actually enabled.
2001-03-08 Phil Edwards <pme@sources.redhat.com>
* MAINTAINERS (C++ runtime libs): Update and alphabatize.
2001-03-08 Alexandre Oliva <aoliva@redhat.com>
* Makefile.in (ALL_GCC, ALL_GCC_C, ALL_GCC_CXX): Set before use.
2001-03-07 Tom Tromey <tromey@redhat.com>
* configure.in: Allow config-lang.in to set `lang_requires' to list
of other required languages.
2001-03-06 Laurynas Biveinis <lauras@softhome.net>
* Makefile.in: Remove RANLIB definition. Use RANLIB
in RANLIB_FOR_TARGET, EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS,
EXTRA_GCC_FLAGS, $(DO_X) targets only when the RANLIB is set.
2001-02-28 Benjamin Kosnik <bkoz@redhat.com>
Alexandre Oliva <aoliva@redhat.com>
* Makefile.in (check-c++): Use tabs, not spaces.
2001-02-20 Laurynas Biveinis <lauras@softhome.net>
* MAINTAINERS: add myself to Write After Approval list.
2001-02-19 Benjamin Kosnik <bkoz@redhat.com>
* Makefile.in (check-c++): New rule.
* configure.in (target_libs): Remove libg++.
(noconfigdirs): Remove libg++.
(noconfigdirs): Same.
(noconfigdirs): Same.
(noconfigdirs): Same.
* config-ml.in: Remove libg++ references.
* Makefile.in (TARGET_CONFIGDIRS): Remove libio, libstdc++, libg++.
(ALL_TARGET_MODULES): Same.
(configure-target-libg++): Remove.
(all-target-libg++): Remove.
(configure-target-libio): Remove.
(all-target-libio): Remove.
(check-target-libio): Remove.
(.PHONY): Remove.
(libg++.tar.bz2): Remove.
(all-target-cygmon): Remove libio.
(all-target-libstdc++): Remove.
(configure-target-libstdc++): Remove.
(TARGET_LIB_PATH): Remove libstdc++.
(ALL_GCC_CXX): Remove libstdc++.
(all-target-gperf): Correct.
2001-02-16 Nick Clifton <nickc@redhat.com>
* configure.in (noconfigdirs): Allow configuration of texinfo
for Cygwin hosts.
2001-02-15 Anthony Green <green@redhat.com>
* configure: Introduce GCJ_FOR_TARGET.
* configure.in: Ditto.
* Makefile.in: Ditto.
2001-02-13 Andreas Schwab <schwab@suse.de>
* MAINTAINERS: Update mail address.
2001-02-09 Martin Schwidefsky <schwidefsky@de.ibm.com>
* config.guess: Add linux target for S/390.
* config.sub: Likewise.
2001-02-08 Chandrakala Chavva <cchavva@redhat.com>
* configure.in: for *-chorusos, don't config target-newlib and
target-libgloss.
2001-02-06 Ben Elliston <bje@redhat.com>
* configure: Output host type to stdout, not stderr.
2001-02-05 Mark Mitchell <mark@codesourcery.com>
* ltcf-c.sh: Add support for -no-undefined under GNU/Linux.
* ltcf-cxx.sh: Likewise.
* config.if: Assume enable_libstdcxx_v3 is defined.
2001-02-04 Mark Mitchell <mark@codesourcery.com>
Remove V2 C++ library.
* configure.in: Remove --enable-libstdcxx_v3 support.
2001-01-31 Bryce McKinlay <bryce@albatross.co.nz>
* include/demangle.h: Add prototype for java_demangle_v3.
2001-01-29 Phil Edwards <pme@sources.redhat.com>
* COPYING.LIB: Update to LGPL 2.1 from the FSF.
2001-01-27 Richard Henderson <rth@redhat.com>
* configure.in (target_makefile_frag) [alpha*-*]: Use mt-alphaieee.
2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>
* ltcf-cxx.sh (ac_cv_prog_cc_pic_works, ac_cv_prog_cc_static_works):
Don't unset, it's non-portable and no longer necessary, set to empty
instead.
2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG>, Alexandre Oliva <oliva@lsd.ic.unicamp.br>
* ltconfig: Shell portability fix for the tagname validity check.
2001-01-27 Alexandre Oliva <aoliva@redhat.com>
* ltcf-c.sh (ld_shlibs) [aix5*]: Disable on unknown CPU types.
* ltcf-cxx.sh, ltcf-gcj.sh: Likewise.
2001-01-26 Michael Sokolov <msokolov@ivan.Harhan.ORG>
* ltcf-cxx.sh: Use parentheses around eval $ac_compile.
2001-01-26 Tom Tromey <tromey@redhat.com>
* configure.in: Allow libgcj to be built on Sparc Solaris.
2001-01-25 David Edelsohn <edelsohn@gnu.org>
* ltcf-c.sh: Add aix5 case.
* ltcf-cxx.sh: Likewise.
* ltconfig: Likewise.
2001-01-24 Alexandre Oliva <aoliva@redhat.com>
* ltmain.sh (TAG disable-shared, TAG disable-static): Make sure we
keep at least one of build_libtool_libs or build_old_libs set to
yes.
* ltcf-gcj.sh (lt_simple_link_test_code): Remove stray `(0)'.
* libtool.m4 (_AC_LIBTOOL_GCJ): Pass $CPPFLAGS on.
2001-01-23 Bryce McKinlay <bryce@albatross.co.nz>
* configure.in: Enable libgcj on several additional platforms.
2001-01-22 Bryce McKinlay <bryce@albatross.co.nz>
* configure.in: Enable libgcj for linux targets.
2001-01-20 Michael Sokolov <msokolov@ivan.Harhan.ORG>
* MAINTAINERS (Write After Approval): Add myself.
2001-01-15 John David Anglin <dave@hiauly1.hia.nrc.ca>
* MAINTAINERS: Add myself as vax port maintainer.
2001-01-11 Fergus Henderson <fjh@cs.mu.oz.au>
* MAINTAINERS: Add myself as Mercury front-end maintainer.
2001-01-09 Mike Stump <mrs@wrs.com>
* Makefile.in (CONFIGURE_TARGET_MODULES): Pass back configuration
failures of subdirectories.
2001-01-02 Laurynas Biveinis <lauras@softhome.net>
* ltcf-c.sh: Clear ac_cv_prog_cc_pic for DJGPP. Do not add
'-DPIC' to ac_cv_prog_cc_pic for DJGPP.
* ltcf-cxx.sh: Likewise.
* ltcf-gcj.sh: Likewise.
* ltconfig.sh: Fix typo.
2001-01-02 Laurynas Biveinis <lauras@softhome.net>
* configure: handle DOS-style absolute paths.
2001-01-02 Laurynas Biveinis <lauras@softhome.net>
* configure.in: remove supported directories from $noconfigdirs for DJGPP.
2000-12-30 Marek Michalkiewicz <marekm@linux.org.pl>
* MAINTAINERS: Add myself as avr port co-maintainer.
2000-12-28 Ben Elliston <bje@redhat.com>
* MAINTAINERS: Add myself under ``Write After Approval''.
2000-12-19 Joseph S. Myers <jsm28@cam.ac.uk>
* texinfo: Remove directory from GCC.
2000-12-18 Joseph S. Myers <jsm28@cam.ac.uk>
* COPYING: Update to current
ftp://ftp.gnu.org/pub/gnu/Licenses/COPYING-2.0 (fixes references
to 19yy as example year in copyright notice).
2000-12-18 Benjamin Kosnik <bkoz@redhat.com>
* Makefile.in (BASE_FLAGS_TO_PASS): Alphabetize.
(libstdcxx_incdir): Pass down.
* config.if: Remove expired bits for cxx_interface, add stub.
(libstdcxx_incdir): Add variable for g++ include directory.
* configure.in (gxx_include_dir): Use it.
2000-12-18 Alexandre Oliva <aoliva@redhat.com>
* MAINTAINERS: Added self as sh port co-maintainer. Removed entry
with old-email address from ``Write After Approval''.
2000-12-15 Andreas Jaeger <aj@suse.de>
* configure.in: Handle lang_dirs.