forked from MaxKellermann/gcc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
8063 lines (4895 loc) · 258 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
2001-06-13 Joseph S. Myers <[email protected]>
* README: Remove version number.
2001-06-13 Gerald Pfeifer <[email protected]>
* INSTALL/README: Update wrt. to the installation instructions now
residing in gcc/doc/install.texi.
2001-06-13 Joseph S. Myers <[email protected]>
* README: Replace with a cut-down and updated version of gcc/README.
2001-06-12 David Edelsohn <[email protected]>
* config-ml.in (powerpc-*-* | rs6000-*-*): Allow aix64 and pthread
multilibs to be disabled.
2001-06-11 Daniel Berlin <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2001-06-09 Alexandre Oliva <[email protected]>
* config.guess: Import CVS version 1.195.
* config.sub: Import CVS version 1.212.
2001-06-08 Alexandre Oliva <[email protected]>, Jeff Sturm <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* ltcf-c.sh (archive_cmd) [hpux, with_gcc]: Use gcc to link shared
archives.
Fri Jun 1 18:55:19 2001 Rainer Orth <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2001-06-01 Hans-Peter Nilsson <[email protected]>
* configure.in (libstdcxx_flags): Do not try to execute
libstdc++-v3/testsuite_flags until it exists.
2001-06-01 Alan Modra <[email protected]>
* MAINTAINERS: Update my email address.
2001-05-31 Graham Stott <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2001-05-28 Simon Patarin <[email protected]>
* ltcf-cxx.sh (osf3/osf4/osf5): Support creation of C++ shared
libraries when using g++ with native linker.
2001-05-28 Alexandre Oliva <[email protected]>
* ltconfig, ltmain.sh: Upgrade to libtool 1.4a 1.641.2.256.
2001-05-22 Alexandre Oliva <[email protected]>
* ltcf-cxx.sh (allow_undefined_flag, no_undefined_flag)
[aix4*|aix5*]: Prepend blank.
2001-05-20 Alexandre Oliva <[email protected]>
* 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 <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2001-05-18 Benjamin Kosnik <[email protected]>
* configure.in (libstdcxx_flags): Remove reference to libstdc++.INC.
2001-05-11 Ben Elliston <[email protected]>
* Makefile.in (all-sid): New target.
(check-sid, clean-sid, install-sid): Likewise.
2001-05-09 Jeffrey Oldham <[email protected]>
* ltcf-cxx.sh: Add -nostdlib to IRIX 6 archive_cmds.
2001-05-03 Alexandre Oliva <[email protected]>
* configure.in (noconfigdirs) [*-cygwin*, *-mingw*, *-beos]: Disable
libgcj.
2001-05-03 Alexandre Oliva <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* MAINTAINERS: Remove self as MIPS maintainer and
C front end maintainer.
Mon Apr 23 09:15:03 2001 Anthony Green <[email protected]>
* configure.in: Move *-chorusos target case to the proper switch.
Disable libgcj.
2001-04-12 Alexandre Oliva <[email protected]>
* ltconfig, ltmain.sh, ltcf-cxx.sh: Upgraded to libtool 1.4a
1.641.2.228.
2001-04-13 Franz Sirl <[email protected]>
* Makefile.in (STAGE1_CFLAGS): Pass down.
2001-04-13 Alan Modra <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* MAINTAINERS: Add self as Darwin port maintainer.
2001-04-11 Alan Modra <[email protected]>
* MAINTAINERS: Update my email address.
2001-04-10 Loren J. Rittle <[email protected]>
* 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 <[email protected]>
* MAINTAINERS: Add self and RTH as C front end maintainers.
2001-04-05 Alexandre Oliva <[email protected]>
* config.sub: Make sure to match an already-canonicalized
machine name (eg. mn10300-unknown-elf).
2001-04-01 Alexandre Oliva <[email protected]>
* 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 <[email protected]>
* configure.in (CXX_FOR_TARGET): Use xgcc for libstdc++-v3.
2001-03-22 Colin Howell <[email protected]>
* Makefile.in (DO_X): Do not backslash single-quotes in
backquotes (two places).
2001-03-22 Alexandre Oliva <[email protected]>
Re-installed:
2001-01-02 Laurynas Biveinis <[email protected]>
* 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 <[email protected]>
* MAINTAINERS: Add myself as "documentation co-maintainer".
2001-03-22 Alexandre Oliva <[email protected]>
* 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 <[email protected]>
* config-ml.in: Handle GCJ and GCJFLAGS.
2001-03-21 Michael Chastain <[email protected]>
* Makefile.in: all-m4 depends on all-texinfo.
2001-03-20 Loren J. Rittle <[email protected]>
* MAINTAINERS: Add myself to write after approval list.
2001-03-18 Laurynas Biveinis <[email protected]>
* Makefile.in (DO_X): Quote nested quotes.
2001-03-18 Alan Modra <[email protected]>
* MAINTAINERS: Add myself to write after approval list.
2001-03-15 Laurynas Biveinis <[email protected]>
* Makefile.in (DO_X): Use double quotes for quoting
"RANLIB=$${RANLIB}".
2001-03-10 Ovidiu Predescu <[email protected]>
* MAINTAINERS: Added Stan Shebs as new maintainer for Objective-C.
2001-03-09 Nicola Pero <[email protected]>
* configure.in: Only use `lang_requires' for languages athat are
actually enabled.
2001-03-08 Phil Edwards <[email protected]>
* MAINTAINERS (C++ runtime libs): Update and alphabatize.
2001-03-08 Alexandre Oliva <[email protected]>
* Makefile.in (ALL_GCC, ALL_GCC_C, ALL_GCC_CXX): Set before use.
2001-03-07 Tom Tromey <[email protected]>
* configure.in: Allow config-lang.in to set `lang_requires' to list
of other required languages.
2001-03-06 Laurynas Biveinis <[email protected]>
* 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 <[email protected]>
Alexandre Oliva <[email protected]>
* Makefile.in (check-c++): Use tabs, not spaces.
2001-02-20 Laurynas Biveinis <[email protected]>
* MAINTAINERS: add myself to Write After Approval list.
2001-02-19 Benjamin Kosnik <[email protected]>
* 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 <[email protected]>
* configure.in (noconfigdirs): Allow configuration of texinfo
for Cygwin hosts.
2001-02-15 Anthony Green <[email protected]>
* configure: Introduce GCJ_FOR_TARGET.
* configure.in: Ditto.
* Makefile.in: Ditto.
2001-02-13 Andreas Schwab <[email protected]>
* MAINTAINERS: Update mail address.
2001-02-09 Martin Schwidefsky <[email protected]>
* config.guess: Add linux target for S/390.
* config.sub: Likewise.
2001-02-08 Chandrakala Chavva <[email protected]>
* configure.in: for *-chorusos, don't config target-newlib and
target-libgloss.
2001-02-06 Ben Elliston <[email protected]>
* configure: Output host type to stdout, not stderr.
2001-02-05 Mark Mitchell <[email protected]>
* 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 <[email protected]>
Remove V2 C++ library.
* configure.in: Remove --enable-libstdcxx_v3 support.
2001-01-31 Bryce McKinlay <[email protected]>
* include/demangle.h: Add prototype for java_demangle_v3.
2001-01-29 Phil Edwards <[email protected]>
* COPYING.LIB: Update to LGPL 2.1 from the FSF.
2001-01-27 Richard Henderson <[email protected]>
* configure.in (target_makefile_frag) [alpha*-*]: Use mt-alphaieee.
2001-01-27 Michael Sokolov <[email protected]>
* 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 <[email protected]>, Alexandre Oliva <[email protected]>
* ltconfig: Shell portability fix for the tagname validity check.
2001-01-27 Alexandre Oliva <[email protected]>
* ltcf-c.sh (ld_shlibs) [aix5*]: Disable on unknown CPU types.
* ltcf-cxx.sh, ltcf-gcj.sh: Likewise.
2001-01-26 Michael Sokolov <[email protected]>
* ltcf-cxx.sh: Use parentheses around eval $ac_compile.
2001-01-26 Tom Tromey <[email protected]>
* configure.in: Allow libgcj to be built on Sparc Solaris.
2001-01-25 David Edelsohn <[email protected]>
* ltcf-c.sh: Add aix5 case.
* ltcf-cxx.sh: Likewise.
* ltconfig: Likewise.
2001-01-24 Alexandre Oliva <[email protected]>
* 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 <[email protected]>
* configure.in: Enable libgcj on several additional platforms.
2001-01-22 Bryce McKinlay <[email protected]>
* configure.in: Enable libgcj for linux targets.
2001-01-20 Michael Sokolov <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2001-01-15 John David Anglin <[email protected]>
* MAINTAINERS: Add myself as vax port maintainer.
2001-01-11 Fergus Henderson <[email protected]>
* MAINTAINERS: Add myself as Mercury front-end maintainer.
2001-01-09 Mike Stump <[email protected]>
* Makefile.in (CONFIGURE_TARGET_MODULES): Pass back configuration
failures of subdirectories.
2001-01-02 Laurynas Biveinis <[email protected]>
* 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 <[email protected]>
* configure: handle DOS-style absolute paths.
2001-01-02 Laurynas Biveinis <[email protected]>
* configure.in: remove supported directories from $noconfigdirs for DJGPP.
2000-12-30 Marek Michalkiewicz <[email protected]>
* MAINTAINERS: Add myself as avr port co-maintainer.
2000-12-28 Ben Elliston <[email protected]>
* MAINTAINERS: Add myself under ``Write After Approval''.
2000-12-19 Joseph S. Myers <[email protected]>
* texinfo: Remove directory from GCC.
2000-12-18 Joseph S. Myers <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* MAINTAINERS: Added self as sh port co-maintainer. Removed entry
with old-email address from ``Write After Approval''.
2000-12-15 Andreas Jaeger <[email protected]>
* configure.in: Handle lang_dirs.
2000-12-14 Tom Tromey <[email protected]>
* MAINTAINERS: Removed brads.
* MAINTAINERS: Added gcj developers.
2000-12-13 Anthony Green <[email protected]>
* configure.in: Disable libgcj for any target not specifically
listed. Disable libgcj for x86 and Alpha Linux until compatible
with g++ abi.
2000-12-13 Mike Stump <[email protected]>
* Makefile.in (local-distclean): Also remove fastjar.
2000-12-12 Rodney Brown <[email protected]>
* contrib/gcc_update: Add fastjar --touch entries.
2000-12-12 Alexandre Oliva <[email protected]>
* configure.in: Disable language-specific target libraries for
languages that aren't enabled.
2000-12-10 Anthony Green <[email protected]>
* configure.in: Define libgcj. Disable libgcj target libraries for
most targets.
2000-12-10 Neil Booth <[email protected]>
* MAINTAINERS: Update mail address, remove from WAA list.
2000-12-09 Alexandre Petit-Bianco <[email protected]>
* libjava: Imported from /cvs/java.
* libffi: Likewise.
* Boehm-gc: Likewise.
2000-12-09 Alexandre Petit-Bianco <[email protected]>
* configure.in (target_libs): Revert 2000-12-08 patch.
(noconfigdirs): Added target-libjava.
2000-12-09 Laurynas Biveinis <[email protected]>
* djunpack.bat: removed.
2000-12-09 Laurynas Biveinis <[email protected]>
* Makefile.in: handle DOS-style absolute paths.
* config-ml.in: likewise.
* symlink-tree: likewise.
2000-12-08 Alexandre Petit-Bianco <[email protected]>
* fastjar: Imported.
2000-12-08 Alexandre Petit-Bianco <[email protected]>
* Makefile.in (TARGET_CONFIGDIRS): Wrong place. Removed note about
libjava.
* configure.in (target_libs): Removed `target-libjava'.
2000-12-08 Alexandre Petit-Bianco <[email protected]>
* Makefile.in (TARGET_CONFIGDIRS): Added note about libjava.
(ALL_MODULES): Added fastjar.
(NATIVE_CHECK_MODULES, INSTALL_MODULES, CLEAN_MODULES): Likewise.
(all-target-libjava): all-fastjar replaces all-zip.
(all-fastjar): Added.
(configure-target-fastjar, all-target-fastjar): Likewise.
* configure.in (host_tools): Added fastjar.
2000-12-07 Mike Stump <[email protected]>
* Makefile.in (local-distclean): Remove leftover built files.
2000-11-24 Nick Clifton <[email protected]>
* configure.in (xscale-elf): Add target.
(xscale-coff): Add target.
2000-11-22 Loren J. Rittle <[email protected]>
* 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.
2000-11-16 Fred Fish <[email protected]>
* configure.in (enable_libstdcxx_v3): Fix typo,
libstd++ -> libstdc++.
2000-11-21 Kriang Lerdsuwanakij <[email protected]>
* MAINTAINERS: Add self to Write After Approval list.
2000-11-21 Bernd Schmidt <[email protected]>
* MAINTAINERS: Update my email address. Add myself to global write
privs list.
2000-11-18 Alexandre Oliva <[email protected]>
* Makefile.in: Merge with src and libgcj.
(ALL_GCC_C, ALL_GCC_CXX): New macros. Use them as dependencies of
configure-target-<library> when their configure scripts need the C
or C++ library to have already been built to work properly.
(do_proto_toplev): Set them to an empty string.
* Makefile.in (HOST_LIB_PATH, TARGET_LIB_PATH): New macros.
(REALLY_SET_LIB_PATH): Use them.
2000-11-17 Stan Shebs <[email protected]>
* MAINTAINERS: Add self to Write After Approval list.
2000-11-13 Joseph S. Myers <[email protected]>
* configure: Provide the original toplevel configure arguments
(including $0) to subprocesses in the environment rather than
through gcc/configargs.h.
2000-11-13 Joseph S. Myers <[email protected]>
* MAINTAINERS: Remove references to cccp. Change C9X reference to
C99. Alphabetise "Write After Approval" list.
2000-11-12 Mark Mitchell <[email protected]>
* configure: Turn on libstdc++ V3 by default.
* ltcf-c.sh: On Solaris, use `gcc -shared' to build a shared library
if we've got GCC.
2000-11-11 Philip Blundell <[email protected]>
* MAINTAINERS: Add self to Write After Approval list.
2000-11-09 David Edelsohn <[email protected]>
* ltcf-c.sh (aix4): Improve shared library configuration; require
exporting symbols.
* ltcf-cxx.sh (aix4): Define.
* ltconfig (aix4): Define library and soname specs appropriate for
AIX. Define command to create export symbols list.
Mon Nov 6 14:19:35 2000 Christopher Faylor <[email protected]>
* config.sub: Add support for Sun Chorus
2000-10-31 Nick Clifton <[email protected]>
* MAINTAINERS: Rename <name>@cygnus.com addresses to
<name>@redhat.com. Also installed new email address for Clint
Popetz.
2000-10-30 Joseph S. Myers <[email protected]>
* etc: Remove directory from GCC.
2000-10-16 Michael Meissner <[email protected]>
* configure (gcc/configargs.h): Only create if there is a build GCC
directory created.
2000-10-16 Matthias Klose <[email protected]>
* config.if: Search libstdc++-v3/configure.in for INTERFACE,
when configured for libstdc++-v3.
2000-10-05 Phil Edwards <[email protected]>
* configure: Save configure arguments to gcc/configargs.h.
2000-10-04 Philipp Thomas <[email protected]>
* config.guess: Import CVS version 1.157.
* config.sub: Import CVS version 1.181.
2000-10-04 Andris Pavenis <[email protected]>
* Makefile.in (bootstrap): avoid recursion if subdir missing
(cross): ditto
(do-proto-toplev): ditto
2000-09-30 Alexandre Oliva <[email protected]>
* Makefile.in (DEVO_SUPPORT): Added gettext.m4, libtool.m4,
ltcf-c.sh, ltcf-cxx.sh and ltcf-gcj.sh.
* ltconfig, ltmain.sh, libtool.m4, ltcf-cxx.sh: Updated from libtool
multi-language branch, to work around Solaris' /bin/sh bug. Rebuilt
all affected `configure' scripts.
2000-09-26 David Edelsohn <[email protected]>
* config/mt-aix43 (NM_FOR_TARGET): Add -B bsd-style flag.
Mon 25-Sep-2000 19:46:09 BST Neil Booth <[email protected]>
* MAINTAINERS: Add self as cpplib co-maintainer.
2000-09-24 Aldy Hernandez <[email protected]>
* MAINTAINERS: Add self to Write After Approval list.
2000-09-18 Gerald Pfeifer <[email protected]>
* INSTALL/README: egcs -> GCC update.
Sun Sep 17 16:55:59 CEST 2000 Marc Espie <[email protected]>
* MAINTAINERS: Add myself to Write After Approval list.
2000-09-15 Kazu Hirata <[email protected]>
* MAINTAINERS: Add myself to Write After Approval list.
Wed Sep 13 11:11:29 2000 Jeffrey A Law ([email protected])
* configure.in: Do not build byacc for hppa64. Provide paths to the
X11 libraries for hppa64.
2000-09-08 Stephane Carrez <[email protected]>
* MAINTAINERS: Add myself as 68hc11 port maintainer.
2000-09-06 Alexandre Oliva <[email protected]>
* Makefile.in (all-zlib): Added dummy target.
* ltconfig, ltmain.sh, libtool.m4, ltcf-c.sh, ltcf-cxx.sh,
ltcf-gcj.sh: Updated from libtool multi-language branch.
2000-09-05 Alexandre Oliva <[email protected]>
* Makefile.in (all-bootstrap): Added all-texinfo and all-zlib.
(bootstrap*): Depend on all-bootstrap.
2000-09-05 Philipp Thomas <[email protected]>
* config.guess: Import CVS version 1.156.
* config.sub: Import CVS version 1.179.
2000-09-02 Anthony Green <[email protected]>
* Makefile.in (all-gcc): Depend on all-zlib.
(CLEAN_MODULES): Add clean-zlib.
(ALL_MODULES): Add all-zlib.
* configure.in (host_libs): Add zlib.
2000-09-02 Alexandre Oliva <[email protected]>, DJ Delorie <[email protected]>
* configure.in (FLAGS_FOR_TARGET): Use -nostdinc even for Canadian
crosses, but add gcc/include to the header search path for them.
2000-08-04 David E. O'Brien <[email protected]>
* MAINTAINERS: Add self to Write After Approval list.
2000-08-27 Franz Sirl <[email protected]>
* config.guess: Import CVS version 1.152.
* config.sub: Import CVS version 1.177.
2000-08-25 Alexandre Oliva <[email protected]>
* configure.in (FLAGS_FOR_TARGET): Use $target_configdirs and
$targargs to tell whether newlib is going to be built.
* configure.in [disable-libstdcxx-v3] (libstdcxx_flags): Search
$$r/TARGET_SUBDIR/libio for _G_config.h.
2000-08-23 Alexandre Oliva <[email protected]>
* MAINTAINERS: Add self as a build machinery (*.in) maintainer.
2000-08-22 DJ Delorie <[email protected]>
* MAINTAINERS: Add self as a build machinery (*.in) maintainer
2000-08-22 Alexandre Oliva <[email protected]>
* config-ml.in (CC, CXX): Avoid trailing whitespace.
(LD_LIBRARY_PATH, SHLIB_PATH): Adjust for multilibs and export to
sub-configures.
2000-08-21 DJ Delorie <[email protected]>
* MAINTAINERS: Add self as a libiberty maintainer
2000-08-16 Alexandre Oliva <[email protected]>
* configure.in (libstdcxx_flags): Use
libstdc++-v3/src/libstdc++.INC.
2000-08-15 Alexandre Oliva <[email protected]>
* configure.in (libstdcxx_flags): Use libstdc++-v3/src/INCLUDES.
2000-08-14 Zack Weinberg <[email protected]>
* configure.in (libstdcxx_flags): Remove -isystem $$s/libio/stdio.
* configure: Make enable_threads and enable_shared defaults
explicit. Substitute enable_threads into generated Makefiles.
* configure.in: Accept *-*-linux* not just *-*-linux-gnu*.
* libtool.m4: Accept *-*-linux* not just *-*-linux-gnu*.
2000-08-13 Geoff Keating <[email protected]>
* Makefile.in (GCC_FOR_TARGET): Also add -B$$r/gcc/ here.
2000-08-12 Alexandre Oliva <[email protected]>
* config-ml.in (CC): Remove bogus duplicate quotation mark from
previous delta.
2000-08-11 Jason Merrill <[email protected]>
* configure.in (CC_FOR_TARGET, CHILL_FOR_TARGET,
CXX_FOR_TARGET): Add -B$$r/gcc/ here.
(FLAGS_FOR_TARGET): Not here.
(CHILL_FOR_TARGET, CXX_FOR_TARGET): Don't check the list of languages.
2000-08-11 Alexandre Oliva <[email protected]>
* config-ml.in (CC, CXX): Don't introduce a leading space.
2000-08-07 DJ Delorie <[email protected]>
* MAINTAINERS: Add self as a DJGPP maintainer
2000-08-07 DJ Delorie <[email protected]>
* configure.in (FLAGS_FOR_TARGET): invert test for xgcc, should mean
"if we're also building gcc, and it's a gcc that will run on the
build machine, we want to use its includes instead of the system's
default includes".
2000-08-04 Joseph S. Myers <[email protected]>
* MAINTAINERS: Add self to Write After Approval list.
2000-08-03 Alexandre Oliva <[email protected]>
* configure.in (libstdcxx_flags): Don't use `"'.
* config-ml.in: Adjust multilib search paths to the
appropriate multilib tree.
2000-08-02 Alexandre Oliva <[email protected]>
* configure.in (CHILL_FOR_TARGET, CXX_FOR_TARGET): Convert blanks to
commas in $LANGUAGES.
2000-08-02 Manfred Hollstein <[email protected]>
* configure.in: Re-enable all references to libg++ and librx.
2000-08-01 Alexandre Oliva <[email protected]>
* ltconfig, ltmain.sh: Update from libtool multi-language branch.
* ltcf-c.sh (need_lc): Fix test message. Set wl for archive_cmds.
(ac_cv_prog_cc_pic): Don't print `cached' without `checking'.
* ltcf-cxx.sh (need_lc): Set based on postdeps.
* configure.in (qCXX_FOR_TARGET): Use echo instead of expr.
2000-07-31 Alexandre Oliva <[email protected]>
* configure.in (qCXX_FOR_TARGET): Quote `&' characters in
CXX_FOR_TARGET for sed.
2000-07-30 Alexandre Oliva <[email protected]>
* configure.in (CC_FOR_TARGET, CHILL_FOR_TARGET, CXX_FOR_TARGET):
Do not override if already set in the environment or in configure.
Don't duplicate $(FLAGS_FOR_TARGET) if it already appears in them.
(FLAGS_FOR_TARGET): Don't use host directories on Canadian crosses.
2000-07-28 Alexandre Oliva <[email protected]>
* libtool.m4, ltcf-c.sh, ltcf-cxx.sh, ltcf-gcj.sh: New files from
the libtool CVS tree multi-language branch.
* ltconfig, ltmain.sh: Updated.
2000-07-27 Alexandre Oliva <[email protected]>
* Makefile.in (clean-target-libgcc): Remove gcc/libgcc.
(clean-target): Depend on it.
* Makefile.in (FLAGS_FOR_TARGET): New macro.
(GCC_FOR_TARGET): Use it.
(CC_FOR_TARGET, CXX_FOR_TARGET, CHILL_FOR_TARGET): Now defined...
* configure.in: ... here.
(FLAGS_FOR_TARGET): Define. Add ld build dir to -L path.
(libstdcxx_flags): Define and append to CXX_FOR_TARGET.
2000-07-24 Eric Christopher <[email protected]>
* MAINTAINERS: Add self to Write After Approval list.
2000-07-24 Alexandre Oliva <[email protected]>
* Makefile.in (configure-target-libf2c): Depend on $(ALL_GCC).
(configure-target-libchill, configure-target-libobjc): Likewise.
* configure.in: Use the same cache file for all target libs.
* config-ml.in: But different cache files per multilib variant.
2000-07-23 Michael Sokolov <[email protected]>
* configure (topsrcdir): Don't use dirname.
2000-07-22 Jeffrey Oldham <[email protected]>
* MAINTAINERS: Add self to Write After Approval list.
2000-07-20 Jason Merrill <[email protected]>
* configure.in: Remove all references to libg++ and librx.
* configure, configure.in, Makefile.in: Unify gcc and binutils.
2000-07-20 Hans-Peter Nilsson <[email protected]>
* config.sub: Update to subversions version 2000-07-06.
2000-07-12 Andrew Haley <[email protected]>
* configure.in (host_makefile_frag): Use mh-ia64pic on IA-64 hosts.
(target_makefile_frag): Use mt-ia64pic on IA-64 targets.
2000-07-07 Phil Edwards <[email protected]>
* symlink-tree: Check number of arguments.
2000-07-05 Jim Wilson <[email protected]>
* Makefile.in (CXX_FOR_TARGET): Add libstdc++ to the library
search path for a g++ extracted from the build tree. This
will allow link tests run by configure scripts in
subdirectories to succeed.
2000-07-01 Koundinya K <[email protected]>
* ltconfig: Add support for mips-dde-sysv4.2MP
2000-06-29 Michael Hayes <[email protected]>
* MAINTAINERS: Add myself as loop discovery maintainer.
2000-06-28 Corinna Vinschen <[email protected]>
* ltconfig: Check for host_os beeing one of `cygwin', `mingw' or
`os2'. Force ac_cv_exeext to be ".exe" in that case.
2000-06-19 Timothy Wall <[email protected]>
* configure.in (noconfigdirs): Set noconfigdirs for tic54x target.
* config.sub: Add tic54x target.
Sun Jun 11 17:20:00 MET 2000 Toon Moene <[email protected]>
* MAINTAINERS: Add self as Fortran maintainer,
remove Craig Burley.
Tue May 30 19:01:12 2000 Andrew Cagney <[email protected]>
* config.sub: Import CVS version 1.167 Tue May 30 09:00:07 2000.
* config.guess: Import CVS version 1.148 Tue May 30 09:00:06 2000
Mon May 29 21:15:00 MET 2000 Philipp Thomas <[email protected]>
* MAINTAINERS: Add self as i18n maintainer
20000-05-21 H.J. Lu ([email protected])
* Makefile.in (CC_FOR_TARGET): Make sure as/ld in the gcc
directory are used if they exist. Make sure
$(build_tooldir)/include is searched for header files,
$(build_tooldir)/lib/ for library files.
(GCC_FOR_TARGET): Likewise.
(CXX_FOR_TARGET): Likewise.
Thu May 18 10:58:13 2000 Jeffrey A Law ([email protected])
* configure.in (hppa*64*-*-*): Do build ld for this configuration.
Wed May 17 16:03:48 2000 Alexandre Oliva <[email protected]>
* Makefile.in (configure-target-libiberty): Depend on
configure-target-newlib.
2000-05-16 Alexandre Oliva <[email protected]>
* configure.in, Makefile.in: Merge all libffi-related
configury stuff from the libgcj tree.
Tue May 16 10:06:21 2000 Andrew Cagney <[email protected]>
Thu Apr 27 11:01:48 2000 Andrew Cagney <[email protected]>:
* Makefile.in (do-tar-bz2, do-md5sum): Skip CVS directories.
Tue May 16 09:57:35 2000 Andrew Cagney <[email protected]>
Wed Apr 26 17:03:53 2000 Andrew Cagney <[email protected]>:
* Makefile.in (do-djunpack): New target. Update djunpack.bat with
current version information. Add to proto-toplev directory.
(gdb-taz): Build do-djunpack.
2000-05-15 David Edelsohn <[email protected]>
* configure.in: Special case powerpc*-*-aix* target_makefile_frag.
Mon May 15 13:39:09 2000 Andrew Cagney <[email protected]>
* MAINTAINERS: Add self to Write After Approval list.
2000-05-13 Alexandre Oliva <[email protected]>