-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathChangeLog
9411 lines (5699 loc) · 295 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
2004-02-14 Release Manager
* GCC 3.3.3 Released.
2004-01-17 Volker Reichelt <[email protected]>
* MAINTAINERS: Remove entries without email address.
2004-01-10 Richard Sandiford <[email protected]>
* MAINTAINERS: Add myself as a MIPS maintainer.
2004-01-04 Eric Botcazou <[email protected]>
* MAINTAINERS: Move myself from 'Write After Approval' to
'CPU Port Maintainers' section as SPARC maintainer.
2004-01-02 Roger Sayle <[email protected]>
* configure.in (ia64*-*-hpux*): Disable building java libraries.
2003-10-21 Matt Thomas <[email protected]>
* MAINTAINERS: Add myself as a vax port maintainer.
2003-10-16 Release Manager
* GCC 3.3.2 Released.
2003-09-09 Alan Modra <[email protected]>
* libtool.m4 (LD): Correct powerpc64 host match.
2003-08-30 Gerald Pfeifer <[email protected]>
* MAINTAINERS: Update my e-mail address.
2003-08-20 Bernardo Innocenti <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2003-08-15 Andrew Pinski <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2003-08-08 Kean Johnston <[email protected]>
* configure.in (sco3.2v5*): Enable building of libgcj
2003-08-04 Release Manager
* GCC 3.3.1 Released.
2003-08-04 Release Manager
* GCC 3.3.1 Released.
2003-08-03 Richard Stallman <[email protected]>
Eben Moglen <[email protected]>
* README.SCO: New file.
2003-07-13 Kazu Hirata <[email protected]>
* MAINTAINERS: Alphabetize.
2003-07-04 H.J. Lu <[email protected]>
* Makefile.tpl: Fix typos in the last change.
* Makefile.in: Regenerated.
2003-07-04 H.J. Lu <[email protected]>
* config-ml.in: Replace PWD with PWD_COMMAND.
* Makefile.tpl: Likewise.
* Makefile.in: Regenerated.
2003-06-27 Rainer Orth <[email protected]>
* configure.in: Don't pass --with-stabs for mips*-sgi-irix6*o32.
2003-06-17 Kazu Hirata <[email protected]>
* MAINTAINERS (Write After Approval): Remove Andrew Haley.
2003-05-14 Eric Botcazou <[email protected]>
* config-ml.in: Propagate INSTALL variables.
2003-05-13 Release Manager
* GCC 3.3 Released.
2003-05-13 Release Manager
* GCC 3.3 Released.
2003-05-13 Release Manager
* GCC 3.3 Released.
2003-05-13 Release Manager
* GCC 3.3 Released.
2003-05-04 Gerald Pfeifer <[email protected]>
* MAINTAINERS: Remove duplicate entries in Write After Approval.
2003-05-03 Chris Demetriou <[email protected]>
Merge from mainline:
2003-05-02 Chris Demetriou <[email protected]>
* Makefile.tpl: Require "makeinfo" from texinfo 4.2 or later.
* Makefile.in: Regenerate.
2003-04-29 Gerald Pfeifer <[email protected]>
* Makefile.tpl (MAKEINFOFLAGS): Use --no-split instead of
--split-size.
* Makefile.in: Regenerate.
2003-04-25 Gerald Pfeifer <[email protected]>
* Makefile.tpl (MAKEINFOFLAGS): Default to --split-size=5000000.
* Makefile.in: Regenerate.
2003-04-08 Joel Sherrill <[email protected]>
* MAINTAINERS: Add my email address.
2003-04-03 Gerald Pfeifer <[email protected]>
Backport from mainline.
2003-03-10 Ben Elliston <[email protected]>
* MAINTAINERS: Update my mail address.
2003-03-09 Franz Sirl <[email protected]>
* configure.in (gxx_include_dir): Fix typo.
2003-02-21 Zack Weinberg <[email protected]>
* MAINTAINERS: Copy from HEAD.
2003-02-19 Alexandre Oliva <[email protected]>
* libtool.m4 (LD): Append -melf* option to LD on IRIX with GNU ld.
* ltconfig: Handle it.
* ltcf-cxx.sh: Use with_gnu_ld passed as a shell variable instead of
auto-detecting it.
2003-02-19 Alexandre Oliva <[email protected]>
* ltcf-cxx.sh: Replace $linker_flags with $compiler_flags wherever
it is used as argument to $CC.
* ltcf-gcj.sh: Likewise.
2003-02-18 Jason Merrill <[email protected]>
* Makefile.tpl (check-c++): Allow parallelism.
2003-02-16 Gerald Pfeifer <[email protected]>
* MAINTAINERS: Remove John Carr (who never actually had access to
gcc.gnu.org).
2003-02-06 Andreas Tobler <[email protected]>
* MAINTAINERS: Add myself to write-after-approval list.
2003-02-06 Gerald Pfeifer <[email protected]>
* MAINTAINERS: Remove duplicate entry for Bernd Schmidt from Write
After Approval.
2003-01-30 Roger Sayle <[email protected]>
* config.guess: Updated to 2003-01-30's version.
* config.sub: Updated to 2003-01-28's version.
2003-01-30 Alexandre Oliva <[email protected]>
* config.if: If gcc_version is already set, just use it. Don't set
gcc_version_trigger if it's already set, otherwise set it to
gcc/version.c, but only if the file exists. If it is not set and
gcc/version.c does not exist, try to extract the version number from
$CC.
2003-01-26 Christian Cornelssen <[email protected]>
* Makefile.tpl (BASE_FLAGS_TO_PASS): Also pass DESTDIR.
(install-info, dir.info): Prepend $(DESTDIR) to $(infodir).
* Makefile.in: Regenerate.
2003-01-22 Volker Reichelt <[email protected]>
* MAINTAINERS: Move myself from GNATS-only-accounts to
write-after-approval.
2002-12-31 Tom Tromey <[email protected]>
* Makefile.in: Rebuilt.
* Makefile.def (target_modules) [libffi]: Allow installation.
2002-12-13 Jason Merrill <[email protected]>
* Makefile.tpl (check-gcc-c++): Renamed from check-c++. Don't run
library tests.
(check-c++): Just depend on it and check-target-libstdc++-v3.
* Makefile.in: Regenerate.
2002-12-12 Alexandre Oliva <[email protected]>
* Makefile.tpl (configure-target-rda): Depend on $(ALL_GCC_C).
* Makefile.in: Rebuilt.
2002-12-25 Svein E. Seldal <[email protected]>
* config.sub: Import from master repository
* config.guess: Ditto
2002-12-13 Jason Merrill <[email protected]>
* Makefile.in (check-gcc-c++): Renamed from check-c++. Don't run
library tests.
(check-c++): Just depend on it and check-target-libstdc++-v3.
2002-12-12 Alexandre Oliva <[email protected]>
* Makefile.in (configure-target-rda): Depend on ALL_GCC_C.
2002-12-09 Svein E. Seldal <[email protected]>
* config.sub: Import from master repository
* config.guess: Ditto
* MAINTAINERS: Added Svein Seldal under write after approval
2002-12-05 Gerald Pfeifer <[email protected]>
* MAINTAINERS: Add Christian Ehrhardt under "GNATS only".
2002-11-28 Geoffrey Keating <[email protected]>
* configure.in: Move host-specific darwin noconfigdirs into
the host-specific section.
2002-11-19 Rainer Orth <[email protected]>
* ltconfig (osf[345]): Append $major to soname_spec.
Reflect this in library_names_spec.
* ltmain.sh (osf): Prefix $major with . for use as extension.
2002-11-19 Andreas Jaeger <[email protected]>
* libtool.m4 (libtool_flags): Add patch from libtool CVS: Support
linking of 32-bit libraries with ld on the x86-64, ppc64, s390x
and sparc64 GNU/Linux systems.
2002-11-19 Nathan Sidwell <[email protected]>
* MAINTAINERS: Update email.
2002-11-18 Gerald Pfeifer <[email protected]>
* MAINTAINERS: Complete James Dennett's entry.
2002-11-15 Eric Botcazou <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2002-11-13 Bruce Korb <[email protected]>
* Makefile.tpl: syntactic cleanup
2002-11-13 Stuart Hastings <[email protected]>
* MAINTAINERS: Add myself to write-after-approval list.
2002-11-11 Jonathan Wakely <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2002-11-04 Adam Nemet <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2002-11-04 Kevin Buettner <[email protected]>
* Makefile.def (host_modules): Add rda.
* Makefile.in: Regenerate.
* configure.in (target_tool): Add target-rda to list.
2002-10-28 Gerald Pfeifer <[email protected]>
* MAINTAINERS: Remove "co-maintainer" note for web pages.
2002-10-25 Phil Edwards <[email protected]>
* Makefile.tpl (bootstrap): Add bubblestrap, quickstrap, cleanstrap,
and restrap targets to this rule.
* Makefile.in: Regenerate.
2002-10-25 Gerald Pfeifer <[email protected]>
* MAINTAINERS: Add Wolfgang Bangerth and Volker Reichelt under
GNATS only accounts.
2002-10-24 Hans-Peter Nilsson <[email protected]>
* configure.in (i[3456]86-*-linux*): Add check to disable
${libgcj} for glibc1.
2002-10-24 Denis Chertykov <[email protected]>
* MAINTAINERS: Add myself as ip2k port maintainer.
2002-10-07 Svein E. Seldal <[email protected]>
* configure.in: Add tic4x target.
2002-10-03 Nathanael Nerode <[email protected]>
* Makefile.tpl: Make SET_LIB_PATH substitution more autoconfy.
* configure.in: Make SET_LIB_PATH substitution more autoconfy.
* Makefile.in: Regenerate.
* Makefile.tpl: Make RPATH_ENVVAR substitution more autoconfy.
* configure.in: Make RPATH_ENVVAR substitution more autoconfy.
* Makefile.in: Regenerate.
2002-10-02 Janis Johnson <[email protected]>
* MAINTAINERS: Add myself as web pages co-maintainer.
2002-10-02 Nathanael Nerode <[email protected]>
* Makefile.tpl: Eliminate reference to all-gui, all-libproc.
* Makefile.in: Regenerate.
2002-10-02 Zack Weinberg <[email protected]>
* MAINTAINERS: Add myself and Nathan Sidwell
<[email protected]> as VxWorks maintainers.
2002-10-02 Nathanael Nerode <[email protected]>
* Makefile.def: Remove order dependency comments.
* Makefile.tpl: Add explicit install-install dependencies.
* Makefile.in: Regenerate.
* Makefile.tpl: Remove material now in src-release. (Finally!)
* Makefile.in: Regenerate.
* Makefile.tpl: Add configure-target (for src-release in src)
* Makefile.in: Regenerate.
2002-09-30 Nick Clifton <[email protected]>
* Makefile.in (BINUTILS_SUPPORT_DIRS): Add cpu directory.
2002-09-30 Ulrich Weigand <[email protected]>
* configure.in (s390*-*-linux*): Enable libgcj.
2002-09-29 Nathanael Nerode <[email protected]>
* configure: Revert accidentally applied changes.
* Makefile.tpl: Make more autoconf-friendly.
* Makefile.in: Regenerate.
* configure: Make substitution more autoconf-like.
2002-09-28 Richard Earnshaw <[email protected]>
* configure.in (arm-*-coff, strongarm-*-coff, xscale-*-coff): Use a
single entry to handle all these.
(arm-*-elf, strongarm-*-elf, xscale-*-elf): Likewise. Also enable
libjava on arm-*-elf.
2002-09-27 Geoffrey Keating <[email protected]>
* configure.in (powerpc-*-darwin*): Don't configure BFD, TK, or the
things that depend on them.
2002-09-25 Nathanael Nerode <[email protected]>
* Makefile.tpl: Make subsituted variables more autoconfy.
* Makefile.in: Regenerate.
* configure: Make seds more autoconfy.
2002-09-25 Nathanael Nerode <[email protected]>
* Makefile.tpl: Rewrite substituted lines to look autoconfy.
* Makefile.in: Regenerate.
* configure.in: Rewrite sed statements to look autoconfy.
* Makefile.tpl: Autogenerate *-target-* lists, dependencies of
all-target-foo on configure-target-foo.
* Makefile.def: Ditto.
* Makefile.in: Rebuild.
2002-09-25 Andrew Haley <[email protected]>
* MAINTAINERS: Add [email protected] as Java maintainer.
2002-09-22 Nathanael Nerode <[email protected]>
* Makefile.def: New file.
* Makefile.tpl: New file.
* Makefile.in: Generate from Makefile.tpl with 'autogen Makefile.def'.
* contrib/gcc_update: Note that Makefile.in is a generated file.
* configure.in: Minor rearrangement. Simplify tests.
2002-09-22 Jason Thorpe <[email protected]>
* configure.in (with_headers): Skip copy if value is "yes".
(with_libs): Likewise.
2002-09-20 Nathanael Nerode <[email protected]>
* configure.in (*-*-netbsd*): Use noconfigdirs, not skipdirs.
* configure.in (sh*-*-pe*): Ditto.
* configure.in (mips*-*-pe*): Ditto.
* configure.in (*arm-wince-pe): Ditto.
* configure.in: Rearrange.
2002-09-14 Kazu Hirata <[email protected]>
* MAINTAINERS: Update my email address.
2002-08-30 Paul Koning <[email protected]>
* MAINTAINERS: (Write After Approval): Add myself.
2002-08-29 Geoffrey Keating <[email protected]>
* MAINTAINERS: Update Jason Eckhardt's address, remove i860.
2002-08-24 Geoffrey Keating <[email protected]>
* MAINTAINERS: Change my mailing address.
2002-08-21 Paolo Carlini <[email protected]>
* MAINTAINERS (Write After Approval): Remove myself.
(Various Maintainers: c++ runtime libs): Add myself.
2002-08-20 Loren J. Rittle <[email protected]>
* MAINTAINERS (Write After Approval): Remove myself.
(Various Maintainers: c++ runtime libs): Add myself.
2002-08-15 Eric Christopher <[email protected]>
* config.sub: Import from master repository.
* config.guess: Ditto.
2002-08-19 Alexandre Oliva <[email protected]>
* Makefile.in (GCC_FOR_TARGET): Prepend STAGE_CC_WRAPPER.
* configure.in (CC_FOR_TARGET, GCJ_FOR_TARGET, CXX_FOR_TARGET,
CXX_FOR_TARGET_FOR_RECURSIVE_MAKE): Likewise.
2002-08-16 Aldy Hernandez <[email protected]>
* MAINTAINERS: Add self to rs6000 vector extensions.
2002-08-15 Alexandre Oliva <[email protected]>
* libiberty/configure: Reverted unintended yesterday's check in.
2002-08-14 Alexandre Oliva <[email protected]>
* boehm-gc/configure, libf2c/configure: Rebuilt.
* libffi/configure, libiberty/configure: Ditto.
* libjava/configure, libobjc/configure: Ditto.
* libstdc++-v3/configure, zlib/configure: Ditto.
Merged from binutils:
2002-01-27 Daniel Jacobowitz <[email protected]>
From Steve Ellcey <[email protected]>:
* libtool.m4 (HPUX_IA64_MODE): Set to 32 or 64 based on ABI.
(lt_cv_deplibs_check_method, lt_cv_file_magic_cmd,
lt_cv_file_magic_test_file): Set to appropriate values for HP-UX
IA64.
* ltcf-c.sh (archive_cmds, hardcode_*): Ditto.
* ltconfig (shlibpath_*, dynamic_linker, library_names_spec,
soname_spec, sys_lib_search_path_spec): Ditto.
2002-08-06 Federico G. Schwindt <[email protected]>
* configure.in (hppa*-*-openbsd*): Treat like hppa*-*-*elf*.
2002-08-04 H.J. Lu ([email protected])
* configure.in (mips*-*-linux*): Don't skip target-libffi.
2002-08-02 Krister Walfridsson <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2002-07-31 Alan Modra <[email protected]>
* configure.in: Move generic linux case to end. Copy generic
linux noconfigdirs to mips*-*-linux* entry and new
powerpc64*-*-linux* entry. Add target-libffi for the latter.
2002-07-19 Michael Matz <[email protected]>
* MAINTAINERS: Add myself as ra* maintainer.
2002-07-16 Chris Demetriou <[email protected]>
* config.guess: Update to 2002-07-09 version.
* config.sub: Update to 2002-07-03 version.
2002-07-15 Hans-Peter Nilsson <[email protected]>
* MAINTAINERS: Fix typo in a maintainer email address.
2002-07-11 Nathanael Nerode <[email protected]>
* configure.in: Remove two redundant tests.
2002-07-11 Rainer Orth <[email protected]>
* configure.in (mips*-*-irix6*o32): Enable stabs.
2002-07-08 Nathanael Nerode <[email protected]>
* configure.in: Don't build grez.
* Makefile.in: Ditto.
* Makefile.in: Remove references to bsp, cygmon, libstub.
* configure.in: Ditto.
* configure.in: Remove leftover reference to gdbtest.
2002-07-08 Phil Edwards <[email protected]>
* configure.in (gxx_include_dir): Change to match versioned
C++ headers if --enable-version-specific-runtime-libs is used.
2002-07-04 Steve Ellcey <[email protected]>
* ltcf-cxx.sh (hpux*): Modify to support ia64-*-hpux*.
2002-07-03 Nathanael Nerode <[email protected]>
* configure.in: Make --without-x work.
2002-07-02 Nathanael Nerode <[email protected]>
* configure.in: Rearrange target Makefile fragment collection.
* Makefile.in: Don't try to build gdbtest, tgas, ispell, inet, or
cvs[src].
* configure.in: Ditto.
2002-07-01 Matt Kraai <[email protected]>
* MAINTAINERS (Write After Approval): Update my e-mail address.
2002-06-24 Ben Elliston <[email protected]>
* configure.in (host_tools): Remove cgen.
* Makefile.in (all-cgen): Remove; runs from its source directory.
(check-cgen, install-cgen, clean-cgen): Likewise.
(all-opcodes): Do not depend on all-cgen.
(all-sim): Likewise.
2002-07-01 Nathanael Nerode <[email protected]>
* Makefile.in: Eliminate 'apache' targets.
* configure.in: Eliminate 'apache' targets.
* configure.in: Eliminate redundant tests. Reorganize.
* Makefile.in: Eliminate last reference to LIBGCC1_TEST.
* config-ml.in: Eliminate references to Cygnus configure.
* Makefile.in: Eliminate references to building emacs.
2002-06-28 Graham Stott <[email protected]>
* MAINTAINERS: Update my email address.
2002-06-26 Benjamin Kosnik <[email protected]>
* config.if (libstdcxx_incdir): Version C++ headers.
(cxx_incdir): Remove.
2002-06-25 Nathanael Nerode <[email protected]>
* MAINTAINERS (Write After Approval): Add self.
Thu Jun 20 00:35:14 2002 Denis Chertykov <[email protected]>
* configure.in: Add support for ip2k.
2002-06-22 Nathanael Nerode <[email protected]>
* configure.in: Fix AIX configury bug.
2002-06-20 Steve Ellcey <[email protected]>
* MAINTAINERS (Write After Approval): Add self.
2002-06-19 Nathanael Nerode <[email protected]>
* configure.in: replace ${topsrcdir} with ${srcdir}
* configure.in: Move definition of libstdcxx_flags
right above usage, rather than waaay earlier.
* configure.in: Pull definition of is_cross_compiler earlier.
* configure.in: Rearrange a little.
* configure.in: Remove references to librx.
* Makefile.in: Remove references to librx.
Tue Jun 18 22:37:35 2002 Denis Chertykov <[email protected]>
* config.sub: Add support for avr target.
Import from master sources, rev 1.255
2002-06-19 Phil Edwards <[email protected]>
* configure, .cvsignore: Revert previous change...
* Makefile: ...delete.
2002-06-19 Nathanael Nerode <[email protected]>
* configure.in: Eliminate ${gasdir} variable.
2002-06-18 Dave Brolley <[email protected]>
* configure.in: Add support for frv.
* config.sub: Add support for frv.
2002-06-18 Phil Edwards <[email protected]>
* configure: Remove garbage from previous commit.
2002-06-18 Phil Edwards <[email protected]>
* configure: For in-source builds, make a subdir and re-exec there.
* Makefile: New file. Pass targets through to build directory.
* .cvsignore: No longer ignore "Makefile".
2002-06-16 Douglas Rupp <[email protected]>
* MAINTAINERS (Write After Approval): Add self.
2002-06-11 Kaveh R. Ghazi <[email protected]>
* Makefile.in (CFLAGS_FOR_TARGET): Add -O2.
2002-06-08 Jason Thorpe <[email protected]>
* configure.in (vax-*-netbsd*): Re-enable gas.
2002-05-31 Nathanael Nerode <[email protected]>
* Makefile.in: Replace HOST_PREFIX, HOST_PREFIX_1 with BUILD_PREFIX,
BUILD_PREFIX_1, to correct nomenclature.
* configure: Likewise.
* Makefile.in: Eliminate version-specific references to tcl8.1, tk8.1.
* configure.in: Eliminate version-specific references to tcl8.1, tk8.1.
2002-05-31 Olaf Hering <[email protected]>
* config-ml.in: Propogate DESTDIR also.
2002-05-29 Jason Thorpe <[email protected]>
* configure.in (vax-*-netbsd*): Don't build gas for this
platform.
2002-05-28 Marek Michalkiewicz <[email protected]>
* configure.in (noconfigdirs): Don't compile libiberty, libstdcxx
and libgcj for AVR.
2002-05-23 Kaz Kojima <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2002-05-22 Jason Thorpe <[email protected]>
* config.guess: Update to 2002-05-22 version.
* config.sub: Likewise.
2002-05-16 Rainer Orth <[email protected]>
* Makefile.in: Allow for PWDCMD to override hardcoded pwd.
* config-ml.in: Likewise.
* configure: Likewise.
* configure.in: Likewise.
2002-05-16 Stephane Carrez <[email protected]>
* MAINTAINERS: Update my email address.
2002-05-13 Nathanael Nerode <[email protected]>
* configure.in: Simplify makefile fragment collection.
* configure.in: Remove code to build emacs.
* configure.in : Remove --srcdir argument from targargs and buildargs
(it's always overridden in the Makefile anyway). Rearrange a bit.
* configure: Move some logic to configure.in.
* configure.in: Move some logic from configure.
2002-05-11 Tom Tromey <[email protected]>
* MAINTAINERS: Reflect libgcj reality.
2002-05-09 Federico G. Schwindt <[email protected]>
* Makefile.in: Honour DESTDIR.
2002-05-08 Mark Mitchell <[email protected]>
* config.guess: Import 2002-03-20 version.
* config.sub: Import 2002-04-26 version.
2002-05-08 Rainer Orth <[email protected]>
* config-ml.in: Allow for PWDCMD to determine ML_POPDIR.
2002-05-07 Tim Josling <[email protected]>
* MAINTAINERS: Add self.
2002-05-06 Loren J. Rittle <[email protected]>
* ltmain.sh: Detect and handle object name conflicts
while piecewise linking a static library.
2002-05-05 Alexandre Oliva <[email protected]>
* configure.in (noconfigdirs): Don't disable libgcj on
sparc64-*-solaris* and sparcv9-*-solaris*.
2002-05-03 Alexandre Oliva <[email protected]>
* configure.in: Revert 2002-04-18's patch; fixed in libjava.
2002-05-03 Thomas Fitzsimmons <[email protected]>
* configure.in (FLAGS_FOR_TARGET): Do not add
-B$$r/$(TARGET_SUBDIR)/newlib/ when compiling newlib natively
on i[3456]86-*-linux*.
2002-05-01 Thomas Fitzsimmons <[email protected]>
* configure.in (noconfigdirs): Replace [ ] with test.
* configure.in (noconfigdirs): Do not add target-newlib if
target == i[3456]86-*-linux*, and host == target.
2002-04-29 Nathanael Nerode <[email protected]>
* configure.in: delete reference to absent file
* configure.in: replace '[' with 'test'
* configure.in: Eliminate references to gash.
* Makefile.in: Eliminate references to gash.
* configure.in: remove useless references to 'pic' makefile fragments.
* configure.in: (*-*-windows*) Finish removing.
* configure.in: Eliminate redundant test for libgui.
2002-04-29 Roger Sayle <[email protected]>
* MAINTAINERS: Add self and realphabetize. Update entries
for Dan Berlin, Chris Demetriou and Michael Matz. Remove
entry for a29k port maintainer.
2002-04-26 Joel Sherrill <[email protected]>
* configure.in (h8300*-*-rtems*): Disable libf2c and libgcj.
(sparc-*-elf*, sparc64-*-elf*): Disable libgcj.
2002-04-19 Nathanael Nerode <[email protected]>
* configure.in: remove references to dead files
2002-04-19 Mark Mitchell <[email protected]>
* MAINTAINERS: Add information about purpose of this file.
2002-04-18 Tom Tromey <[email protected]>
* configure.in: Disallow configuring libgcj when it is already
installed and we're using Solaris 2.8 linker. Do enable libgcj on
Solaris 2.8 by default. For PR libgcj/6158.
2002-04-17 Nathanael Nerode <[email protected]>
* configure.in: Move default CC setting out of config/mh-* fragments
directly into here.
2002-04-17 Nathanael Nerode <[email protected]>
* configure.in: don't even try to configure or make a subdirectory
if there's no configure script for it.
2002-04-15 Mark Mitchell <[email protected]>
* 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 <[email protected]>
* Makefile.in, configure.in: Sync with binutils, entries
follow...
2002-04-07 Andrew Cagney <[email protected]>
* 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 <[email protected]>
* Makefile.in: Add all-tix to deps for all-snavigator
so that tix is built when building snavigator.
2002-01-11 Steve Ellcey <[email protected]>
* configure.in (ia64*-*-hpux*): New target for IA64 HP-UX,
ld and gdb are not supported.
2002-01-07 Mark Salter <[email protected]>
* 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 <[email protected]>
* configure.in (FLAGS_FOR_TARGET): Remove -nostdinc and -isystem
options for i[3456]86-pc-linux* native builds.
2001-11-20 Nick Clifton <[email protected]>
* Makefile.in (do-proto-toplev): Use msgfmt to generate .gmo
files from .po files for a distribution.
2001-09-03 Jeff Holcomb <[email protected]>
* configure.in: Enable libstdc++-v3 for h8300 targets.
2001-06-19 Alan Modra <[email protected]>
* Makefile.in (VER): If AM_INIT_AUTOMAKE uses BFD_VERSION, get
version from bfd/.
Fri Jun 8 11:14:02 2001 Andrew Cagney <[email protected]>
* Makefile.in (VER): When present, extract the version number from
the file version.in.
2001-05-24 Tom Rix <[email protected]>
* configure.in : enable ld for aix
2001-02-09 Martin Schwidefsky <[email protected]>
* config.guess: Add linux target for S/390.
2000-11-07 Philip Blundell <[email protected]>
* Makefile.in (ETC_SUPPORT): Also add configbuild.* and configdev.*.
2000-11-03 Philip Blundell <[email protected]>
* Makefile.in (ETC_SUPPORT): Add configure.texi and associated info
files.
2001-01-15 Ben Elliston <[email protected]>
* configure.in (host_tools): Add sid.
Always configure cgen.
2000-11-24 Nick Clifton <[email protected]>
* configure.in (c4x, c5x, tic54x): Move after ARM targets.
2000-08-20 Doug Evans <[email protected]>
* 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 <[email protected]>
* configure.in: Add *-*-freebsd* configurations.
2002-04-08 Tom Tromey <[email protected]>
* configure.in: Add FLAGS_FOR_TARGET to GCJ_FOR_TARGET.
Fixes PR libgcj/6068.
2002-03-30 Krister Walfridsson <[email protected]>
* configure.in (i*86-*-netbsdelf*): Don't disable libgcj.
2002-03-27 Rainer Orth <[email protected]>
* configure.in (alpha*-dec-osf*): Enable libgcj.
2003-03-27 Matthew Gingell <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2002-03-24 Nick Clifton <[email protected]>
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 <[email protected]>
* configure.in: Enable libgcj for xscale-elf target.
Tue Mar 19 09:05:08 2002 J"orn Rennecke <[email protected]>
* MAINTAINERS: Update my email address.
2002-03-16 Alexandre Oliva <[email protected]>
* ltmain.sh (relink_command): Fix typo in previous change.
2002-03-15 Alexandre Oliva <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* Makefile.in (.NOTPARALLEL): Add fake tag.
2002-03-07 H.J. Lu ([email protected])
* configure.in: Enable gprof for mips*-*-linux*.
2002-03-05 Danny Smith <[email protected]>