forked from gcc-mirror/gcc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
11939 lines (7382 loc) · 370 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
2005-05-13 David Ung <[email protected]>
* MAINTAINERS (Write After Approval): Add self.
2005-05-09 Mike Stump <[email protected]>
* libtool.m4 (AC_LIBTOOL_SYS_MAX_CMD_LEN): Use quotes on
lt_cv_sys_max_cmd_len for now.
2005-05-09 Stan Cox <[email protected]>
* MAINTAINERS: Remove self, add Nick Clifton as iq2000 maintainer.
2005-05-08 Matt Kraai <[email protected]>
* README.SCO: Update the URL.
2005-05-05 David Edelsohn <[email protected]>
* ltconfig: Define file_list_spec. Pass file_list_spec and
with_gnu_ld to libtool.
* ltcf-c.sh (aix[45]): Define file_list_spec.
* ltcf-cxx.sh (aix[45]): Same.
* ltcf-gcj.sh (aix[45]): Same.
* ltmain.sh: If command exceeds max_cmd_len and file_list_spec
exists, write list of input files to temporary file.
2005-05-04 Mike Stump <[email protected]>
* configure.in: Always pass --target to target configures as
otherwise rebuilds that do --recheck will fail.
* confiugure: Rebuilt.
2005-05-04 Paolo Bonzini <[email protected]>
* Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Rename from
STAGE_HOST_EXPORTS.
(configure, all): Add bootstrap support.
(Host modules, target modules): Pass post-stage1 flags and exports.
(Top-level bootstrap): Remove bootstrap rules, expanded elsewhere.
* Makefile.in: Regenerate.
2005-04-29 Paolo Bonzini <[email protected]>
* configure: Regenerate.
2005-04-27 Mike Stump <[email protected]>
* MAINTAINERS: Add self as darwin maintainer.
2005-04-22 Bernd Schmidt <[email protected]>
* config.sub: Update from master copy.
2005-04-21 Mike Stump <[email protected]>
* MAINTAINERS: Add self as Objective-C/Objective-C++ maintainer.
* MAINTAINERS: Add Zem as Objective-C++ maintainer.
2005-04-19 Hans-Peter Nilsson <[email protected]>
* configure.in <crisv32-*-*, cris-*-*>: New local variable
libgcj_ex_libffi. Have specific match for *-*-linux*. Separate
matches for "*-*-aout" and "*-*-elf". Don't disable libffi for
"*-*-elf" and "*-*-linux*".
* configure: Regenerate.
2005-04-14 Joseph S. Myers <[email protected]>
* MAINTAINERS (Various Maintainers): Add self as i18n maintainer.
2005-04-12 Mike Stump <[email protected]>
* libtool.m4: Update AC_LIBTOOL_SYS_MAX_CMD_LEN bits from upstream.
2005-04-04 Thomas Koenig <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2005-04-07 Bernd Schmidt <[email protected]>
* MAINTAINERS (Port Maintainers): Add self for Blackfin.
2005-04-06 Paolo Bonzini <[email protected]>
* Makefile.tpl (BUILD_CONFIGARGS): Include --with-build-subdir.
(TARGET_CONFIGARGS): Include --with-target-subdir.
(configure, all): New macros. Use them throughout.
* Makefile.in: Regenerate.
2005-04-04 Jon Grimm <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2005-03-31 Zdenek Dvorak <[email protected]>
* MAINTAINERS: Remove 'loop unrolling' maintainer.
2005-03-30 Gerald Pfeifer <[email protected]>
* MAINTAINERS: Move John Carr to Write After Approval.
2005-03-30 J"orn Rennecke <[email protected]>
* config/mh-mingw32: Delete.
* configure.in: Don't use it.
* configure: Regenerate.
2005-03-31 Paolo Bonzini <[email protected]>
* Makefile.def (bfd, opcodes, libstdc++-v3, libmudflap): Set lib_path.
* Makefile.tpl (SET_LIB_PATH, REALLY_SET_LIB_PATH): Remove.
(HOST_EXPORTS, STAGE_HOST_EXPORTS, TARGET_EXPORTS): Set $(RPATH_ENVVAR).
(HOST_LIB_PATH): Generate from Makefile.def.
(TARGET_LIB_PATH): Likewise.
(Old bootstrap targets): Include TARGET_LIB_PATH into RPATH_ENVVAR.
* Makefile.in: Regenerate.
* configure.in (set_lib_path, SET_LIB_PATH, SET_GCC_LIB_PATH): Remove.
(RPATH_ENVVAR): Include Darwin case.
* configure: Regenerate.
2005-03-29 Thomas Fitzsimmons <[email protected]>
* MAINTAINERS (Various Maintainers): Remove self.
(Write After Approval): Add self.
2005-03-26 Thomas Fitzsimmons <[email protected]>
* MAINTAINERS (Various Maintainers): Add self.
2005-03-25 Paolo Bonzini <[email protected]>
* configure.in (RPATH_ENVVAR): Set to DYLD_LIBRARY_PATH on Darwin.
* configure: Regenerate.
2005-03-21 Zack Weinberg <[email protected]>
* Makefile.def: Remove libstdcxx_incdir, libsubdir, gxx_include_dir,
gcc_version, and gcc_version_trigger from set of flags to pass.
* Makefile.tpl: Remove definitions of above variables.
(config.status): Remove dependency on $(gcc_version_trigger).
* Makefile.in: Regenerate.
* configure.in: Do not reference config/gcc-version.m4 nor
config/gxx-include-dir.m4. Do not invoke TL_AC_GCC_VERSION nor
TL_AC_GXX_INCLUDE_DIR. Do not set gcc_version_trigger.
* configure: Regenerate.
2005-03-16 Manfred Hollstein <[email protected]>
Andrew Pinski <[email protected]>
* Makefile.tpl (check-[+module+]): Fix shell statement inside if ... fi.
* Makefile.in: Regenerate.
2005-03-13 Feng Wang <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2005-03-03 David Ayers <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2005-03-01 Alexandre Oliva <[email protected]>
PR libgcj/20160
* ltmain.sh: Avoid creating archives with components that have
duplicate basenames.
2005-02-28 Andrew Pinski <[email protected]>
PR bootstrap/20250
* Makefile.tpl (HOST target installs): Fix copy and pasto, use install
instead of check.
* Makefile.in: Regenerate.
2005-02-28 Paolo Bonzini <[email protected]>
* Makefile.in: Regenerate to fix conflict between the previous two
patches.
2005-02-28 Paolo Bonzini <[email protected]>
PR bootstrap/17383
* Makefile.def (target_modules): Remove "stage", now unnecessary.
* Makefile.tpl (HOST_SUBDIR): New substitution.
(STAGE_HOST_EXPORTS, EXPECT, HOST_LIB_PATH, USUAL_AR_FOR_TARGET,
USUAL_AS_FOR_TARGET, USUAL_DLLTOOL_FOR_TARGET, USUAL_GCC_FOR_TARGET,
USUAL_LD_FOR_TARGET, USUAL_NM_FOR_TARGET, USUAL_OBJDUMP_FOR_TARGET,
USUAL_RANLIB_FOR_TARGET, USUAL_WINDRES_FOR_TARGET): Use it.
(Host modules, Bootstrapped modules): Use it.
(Build modules, Target modules): Do not create symlink trees,
always configure out-of-srcdir.
(distclean): Try removing $(host_subdir) with rm before using rm -rf.
* configure.in (FLAGS_FOR_TARGET, CC_FOR_TARGET, GCJ_FOR_TARGET,
GFORTRAN_FOR_TARGET, CXX_FOR_TARGET, RAW_CXX_FOR_TARGET): Use
$(HOST_SUBDIR). Create a symlink for host_subdir.
* Makefile.in: Regenerate.
* configure: Regenerate.
2005-02-28 Nathanael Nerode <[email protected]>
Merged from libada-gnattools-branch:
2004-11-28 Nathanael Nerode <[email protected]>
* gnattools: New directory.
* Makefile.def: Add gnattools as a module, depending on target-libada.
* Makefile.in: Regenerate.
* configure.in: Include gnattools in host_tools; disable it if ada
is disabled.
* configure: Regenerate.
2005-02-24 James A. Morrison <[email protected]>
* MAINTAINERS (Language Front Ends Maintainers): Add myself as
treelang maintainer.
(Write After Approval): Remove myself.
2005-02-23 Paul Schlie <[email protected]>
* configure.in: Allow darwin targeted ports to build tk, itcl and
libgui.
* configure: Regenerate.
2005-02-21 Eric Botcazou <[email protected]>
PR libgcj/10353
* configure.in (noconfigdirs) <sparc-*-solaris2.[0-6]>: Add libgcj.
* configure: Regenerate.
2005-02-18 Steven G. Kargl <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2005-02-10 Ian Lance Taylor <[email protected]>
* MAINTAINERS: Update my e-mail address.
2005-02-02 Richard Guenther <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2005-01-29 Hans-Peter Nilsson <[email protected]>
* configure.in (noconfigdirs) <crisv32-*-*>: Match like cris-*-*.
<crisv32-*-*, cris-*-*>: Only disable target-newlib and
target-libgloss when not *-*-elf and *-*-aout.
* configure: Regenerate.
2005-01-23 Kazu Hirata <[email protected]>
* MAINTAINERS: Remove obsolete entries.
* MAINTAINERS (Write After Approval): Add Michael Matz.
2005-01-19 Neil Booth <[email protected]>
* MAINTAINERS: Remove self as cpplib maintainer.
2005-01-17 Kelley Cook <[email protected]>
* install-sh, config.sub: Import from upstream.
2005-01-17 Kelley Cook <[email protected]>
PR bootstrap/18222
* Makefile.def: Pass CPPFLAGS_FOR_TARGET.
* Makefile.tpl: Define target CPPFLAGS on CPPFLAGS_FOR_TARGET.
* Makefile.in: Regenerate.
2005-01-16 Jason Thorpe <[email protected]>
* MAINTAINERS: Update my email address.
2005-01-12 David Edelsohn <[email protected]>
Andreas Schwab <[email protected]>
PR bootstrap/18033
* config-ml.in: Eval option if surrounded by single quotes.
2005-01-03 Paolo Bonzini <[email protected]>
Revert 2004-12-28 Makefile changes, a better fix will be
applied to mainline and src after GCC 4.0 branches.
2004-12-28 Paolo Bonzini <[email protected]>
PR bootstrap/17383
* Makefile.def (target_modules): Remove stage parameter,
it is always true now.
* Makefile.tpl (configure-build-[+module+],
configure-target-[+module+]): Always build symlink tree
for the directory and for include. BUILD_SUBDIR and
TARGET_SUBDIR cannot be . anymore.
* Makefile.in: Regenerate.
2004-12-25 David Edelsohn <[email protected]>
Revert 2004-12-08 Makefile changes.
2004-12-17 Danny Smith <[email protected]>
* MAINTAINERS: Move myself to OS Port Maintainers for windows,
cygwin, mingw.
2004-12-16 Andrew Stubbs <[email protected]>
* configure.in (sh64-*-*): Reenable gprof.
* configure: Regenerate.
2004-12-08 David Edelsohn <[email protected]>
* Makefile.def (flags_to_pass): Add PICFLAG_FOR_TARGET.
* Makefile.tpl (EXTRA_HOST_FLAGS): Add PICFLAG.
(EXTRA_TARGET_FLAGS): Add PICFLAG.
* Makefile.in: Regenerate.
2004-12-08 Christopher Faylor <[email protected]>
* MAINTAINERS: Update my email address.
2004-12-07 Matt Kraai <[email protected]>
* Makefile.tpl: Generate normal dependencies if the LHS module is
not bootstrapped.
* Makefile.in: Regenerate.
2004-12-03 Richard Sandiford <[email protected]>
* configure.in: Include config/gxx-include-dir.m4. Use
TL_AC_GXX_INCLUDE_DIR. Remove some now-redundant AC_SUBSTs.
* configure: Regenerate.
2004-12-03 Richard Sandiford <[email protected]>
* config.if: Delete.
* configure.in: Set libstdcxx_incdir directly.
* configure: Regenerate.
2004-12-02 Eric Christopher <[email protected]>
* Makefile.tpl (clean-target-libgcc): Make change in correct place.
* Makefile.in: Regenerate.
2004-12-02 Richard Sandiford <[email protected]>
* configure.in: Clear gcc_version_trigger if the file doesn't exist.
* configure: Regenerate.
2004-12-02 Richard Sandiford <[email protected]>
* configure.in: Include config/gcc-version.m4. Use TL_AC_GCC_VERSION
to set gcc_version_trigger. Remove some now-redundant AC_SUBSTs.
* configure: Regenerate.
2004-12-01 Eric Christopher <[email protected]>
* Makefile.in (clean-target-libgcc): Add stmp-dirs to list
of things to remove.
2004-11-29 Matt Kraai <[email protected]>
* MAINTAINERS (Write After Approval): Update my e-mail address.
2004-11-29 Kelley Cook <[email protected]>
* libtool.m4 (AC_DEPLIBS_CHECK_METHOD): Re-import linux-gnu case
from CVS libtool to always pass_all.
2004-11-25 John David Anglin <[email protected]>
* configure.in (hppa*-*-linux*): Don't add libgcj to noconfigdirs.
(hppa*64*-*-*): Delete incorrect comment.
* configure: Rebuilt.
2004-11-24 Kelley Cook <[email protected]>
* libtool.m4 (AC_DEPLIBS_CHECK_METHOD): Revert previous change.
2004-11-24 Kelley Cook <[email protected]>
* libtool.m4 (AC_DEPLIBS_CHECK_METHOD): Import linux-gnu case
from CVS libtool to always pass_all.
2004-11-15 Kelley Cook <[email protected]>
* install-sh, compile: Import from automake.
2004-11-15 Kelley Cook <[email protected]>
* config.guess, config.sub: Import from savannnah.
2004-11-12 Scott Robert Ladd <[email protected]>
* MAINTAINERS (Write After Approval): Add myself
2004-11-12 Mike Stump <[email protected]>
* Makefile.def: Add html support.
* Makefile.tpl: Likewise.
* Makefile.in: Regenerate.
2004-11-11 Geoffrey Keating <[email protected]>
PR 18423
* configure.in: Remove all instances of build-fixincludes from
noconfigdirs.
(build_configargs): Supply --target to subdirectories.
* configure: Regenerate.
* Makefile.def: Make gcc install depend on fixincludes install.
* Makefile.in: Regenerate.
2004-11-10 Janis Johnson <[email protected]>
* MAINTAINERS: Add myself as gcc testsuite maintainer.
2004-11-11 Paul Brook <[email protected]>
* MAINTAINERS: Add self as arm maintainer. Update email address.
2004-11-08 Hans-Peter Nilsson <[email protected]>
* configure.in (noconfigdirs) [mmix-*-*]: Disable
target-libgfortran.
* configure: Regenerate.
2004-11-07 David Edelsohn <[email protected]>
* config-ml.in: Pass FCFLAGS for multilibs, handle GFORTRAN
like CC.
2004-11-05 Paolo Bonzini <[email protected]>
* Makefile.def (host fixincludes): Specify missing targets.
* Makefile.in: Regenerate.
2004-11-05 Ralf Corsepius <[email protected]>
* MAINTAINERS: Add myself
2004-11-05 Gabor Loki <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2004-11-04 Geoffrey Keating <[email protected]>
* Makefile.def: Build fixincludes for the host, too.
* Makefile.in: Regenerate.
* configure.in (host_tools): Add fixincludes.
* configure: Regenerate.
2004-11-04 Daniel Jacobowitz <[email protected]>
* configure.in (arm-*-oabi*, thumb-*-oabi*): Remove.
* configure: Regenerated.
2004-11-04 H.J. Lu <[email protected]>
PR other/17783
* configure.in: Set up LD_LIBRARY_PATH by default for gcc.
* configure: Regenerated.
2004-10-31 Mark Mitchell <[email protected]>
* README.SCO: Update per FSF instructions.
2004-10-28 Eric B. Weddington <[email protected]>
PR target/18151
* configure.in (case ${target}): Do not build fixincludes for avr.
* configure: Regenerated.
2004-10-26 Paolo Bonzini <[email protected]>
* configure.in (case ${target}): Do not build fixincludes
on platforms where it is not used.
* configure: Regenerated.
2004-10-23 Daniel Jacobowitz <[email protected]>
* configure.in: Use an absolute path to install-sh.
* configure: Regenerated.
2004-10-19 Aaron W. LaFramboise <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2004-10-19 Kazu Hirata <[email protected]>
* MAINTAINERS: Remove from Write After Approval those that are
already maintainers.
2004-10-19 Sebastian Pop <[email protected]>
* MAINTAINERS: Update my email address.
2004-10-12 Kelley Cook <[email protected]>
* configure.in (*-*-cygwin*): Supress warning if newlib not present.
* configure: Regenerate.
2004-10-07 J"orn Rennecke <[email protected]>
* MAINTAINERS: Update my email address.
2004-10-07 Kazu Hirata <[email protected]>
* MAINTAINERS (Language Front Ends Maintainers): New. Move
entries belonging to this category.
2004-10-06 Josef Zlomek <[email protected]>
* MAINTAINERS: Update my e-mail address.
2004-10-06 Paolo Bonzini <[email protected]>
Fix wrong conflict resolution in:
2004-08-16 Paolo Bonzini <[email protected]>
* Makefile.in: Regenerate.
* Makefile.tpl (Autogenerated `all-*' targets): Invoke $(TARGET-*)
in the recursive `make', instead of hardwiring `all'.
(Autogenerated TARGET-* variables): New.
2004-10-05 Tomer Levi <[email protected]>
* configure.in: Enable target-libgloss for crx-*-*.
* configure: Regenerate.
2004-10-04 Kazu Hirata <[email protected]>
* MAINTAINERS (Various Maintainers): Move the "windows,
cygwin, mingw" maintainer to ...
(OS Port Maintainers): ... here.
2004-10-04 Kazu Hirata <[email protected]>
* MAINTAINERS (Write After Approval): Remove those that are
maintainers of some subsystem.
2004-10-02 P.J. Darcy <[email protected]>
* ltcf-c.sh (tpf*): Add ld_shlibs=yes.
* ltcf-cxx.sh (tpf*): Likewise.
* ltconfig (tpf*): Add TPF OS configuration support.
2004-10-01 Bernd Schmidt <[email protected]>
* MAINTAINERS: Change my email address to my new work account.
2004-09-24 Michael Roth <[email protected]>
* configure.in (--without-headers): Add missing double quotes.
* configure: Regenerate.
2004-09-24 Kelley Cook <[email protected]>
* ylwrap: Revert to previous version.
2004-09-23 H.J. Lu <[email protected]>
PR bootstrap/17369
* Makefile.tpl (REALLY_SET_LIB_PATH): Add @SET_GCC_LIB_PATH@.
(HOST_EXPORTS]): Add @SET_GCC_LIB_PATH@. Set and export
SET_GCC_LIB_PATH_CMD.
(BASE_TARGET_EXPORTS): Likewise.
* Makefile.in: Regenerated.
* configure.in (SET_GCC_LIB_PATH): Set and substitute.
* configure: Regenerated.
2004-09-23 Kelley Cook <[email protected]>
* config.guess: New upstream version
* compile, depcomp, install-sh, ylwrap: Likewise.
2004-09-19 Roger Sayle <[email protected]>
* config/mh-x86omitfp: New host makefile fragment. Add
-fomit-frame-pointer to the default BOOT_CFLAGS.
* configure.in: Use it to speed up bootstrap on some IA-32 hosts.
* configure: Regenerate.
2004-09-15 Andrew Pinski <[email protected]>
PR target/11572
* configure.in (*-*-darwin*): Renable libobjc.
* configure: Regenerate.
2004-09-10 Nathan Sidwell <[email protected]>
* MAINTAINERS: Add self as c++ and type-safe vector maintainer.
2004-09-09 Daniel Berlin <[email protected]>
* Makefile.def: Remove libbanshee.
* Makefile.tpl: Ditto.
* configure.in: Ditto.
* Makefile.in: Regen.
* configure: Ditto.
2004-09-08 David Edelsohn <[email protected]>
* ltmain.sh: Use $pic_object as $non_pic_object if
$non_pic_object=none.
2004-09-07 Paolo Bonzini <[email protected]>
* missing: Import latest version from master repository.
2004-09-06 Nick Clifton <[email protected]>
* config.sub: Import latest version from master repository.
* config.guess: Likewise.
This includes these changes:
2004-08-27 Hans-Peter Nilsson <[email protected]>
* config.sub: Handle crisv32, alias etraxfs.
* config.guess (crisv32:Linux:*:*): Handle.
2004-08-13 Brad Smith <[email protected]>
* config.guess (*:OpenBSD:*:*): Remove defunct MIPS machines.
(sgi:OpenBSD:*:*): Emit mips64, not mipseb.
2004-08-11 Paul Eggert <[email protected]>
* config.guess (*:Darwin:*:*): If uname -p reports "unknown",
assume the processor is a powerpc. This is because coreutils
uname (at least versions 4.5.7 through 5.2.1) outputs "unknown"
in this case, due to a MacOS X bug that causes
sysctl ((int[]) {CTL_HW, HW_MACHINE_ARCH}, 2, buffer, &bufsize, 0, 0)
to return a negative number.
Problem reported by Petter Reinholdtsen in:
http://lists.gnu.org/archive/html/bug-gnu-utils/2003-02/msg00201.html
2004-07-19 Ben Elliston <[email protected]>
* config.guess (S7501:*:4.0:3.0): Handle NCR System V UNIX machine.
2004-06-24 Ben Elliston <[email protected]>
* config.guess: Update copyright years.
* config.sub: Likewise.
2004-06-22 Robert Millan <[email protected]>
* config.guess (*:FreeBSD:*:*): Remove check for glibc (unneeded
since GNU/kFreeBSD systems match *:GNU/*:*:* instead).
2004-06-22 Stanley F. Quayle <[email protected]>
* config.guess (*:*VMS:*:*): New entry. Replaces
Alpha:OpenVMS:*. Recognize and advertise all VMS flavors as dec
manufacturer.
2004-06-22 Ben Elliston <[email protected]>
* config.guess: Cray fixes from Wendy Palm <[email protected]>.
* config.sub: Likewise.
2004-06-22 Ben Elliston <[email protected]>
Reported by Hans-Peter Nilsson <[email protected]>:
* config.sub: Correctly handle mmix-knuth and mmix-knuth-mmixware.
2004-06-11 Ben Elliston <[email protected]>
* config.guess (pegasos:OpenBSD:*:*): Remove.
2004-06-11 Ben Elliston <[email protected]>
From Wouter Verhelst <[email protected]>:
* config.guess (M68*:*:R3V[5678]:*): Detect R3V8.
2004-06-11 Ben Elliston <[email protected]>
* config.guess (luna88k:OpenBSD:*:*): New.
2004-03-12 Kazuhiro Inaoka <[email protected]>
* config.guess (m32r*:Linux:*:*): New case.
* config.sub: Handle m32rle.
2004-03-12 Ben Elliston <[email protected]>
From Jens Petersen <[email protected]>:
* config.sub: Handle sparcv8.
2004-03-03 Ben Elliston <[email protected]>
From Tom Smith <[email protected]>:
* config.guess: Version suffixes are equally significant on Tru64
V4.* and V5.*, so do not ignore them on V5.*. Handle a version
prefix of "P" (patched kernel).
2004-02-23 Tal Agmon <[email protected]>
* config.sub: Add support for National Semiconductor CRX target.
2004-09-03 Janis Johnson <[email protected]>
* MAINTAINERS (Various Maintainers): Remove myself as web page
maintainer, add myself as maintainer of build status lists.
2004-09-03 Jan Beulich <[email protected]>
* configure.in: Remove target-libstdc++-v3 from noconfigdirs for
*-*-netware, but add target-libmudflap.
Consolidate *-*-netware targets (of which really only i?86 exists)
into a single entry.
* configure: Likewise.
2004-09-01 Paolo Bonzini <[email protected]>
* Makefile.tpl (sorry): Remove.
(clean-stage[+id+], clean-stage[+id+]-module): New targets.
(cleanstrap targets): Depend on distclean, not distclean-stage1.
(do-clean): Clean per-stage directories too.
(do-distclean): Run distclean-stage1 too.
(.NOTPARALLEL): Enable during toplevel bootstrap.
(stage[+id+]-bubble): Enable parallel execution during
the recursive invocation.
* Makefile.in: Regenerate.
Fix previous checkin:
* Makefile.tpl: Move BOOT_CFLAGS above host makefile fragment
include.
* configure.in: Fix indentation.
* configure: Regenerate.
2004-08-31 Robert Bowdidge <[email protected]>
* Makefile.in: Move BOOT_CFLAGS above host makefile fragment include.
* configure.in: add test for powerpc-*-darwin* to specify makefile frag
* configure: regenerate
* config/mh-ppc-darwin: create file, override BOOT_CFLAGS for
-mdynamic-no-pic
2004-08-31 Paolo Bonzini <[email protected]>
* Makefile.def (build_modules): Add fixincludes.
(dependencies): Make gcc depend on fixincludes.
* configure.in (build_tools): Add fixincludes.
(build_configdirs): Always include build_libs.
* Makefile.in: Regenerate.
* configure: Regenerate.
2004-08-30 Paolo Bonzini <[email protected]>
* Makefile.def (bootstrap stages): Add 'lean' parameter.
* Makefile.tpl (configure-stageN-*, all-stageN-*): Turned into
phony targets; do not generate timestamp files.
(distclean-stageN): Remove references to their timestamp files.
(restageN, touch-stageN): Remove.
(stageN-bubble): Rewritten.
(compare): Support lean bootstraps.
* Makefile.in: Regenerate.
* configure.in: Only warn when bootstrapping but
build != host or build != target. Support lean bootstraps.
* configure: Regenerate.
2004-08-26 Phil Edwards <[email protected]>
* configure.in: Give a better error message if GMP/MPFR are missing
and a language needing them has been requested.
* configure: Regenerated.
2004-08-25 Phil Edwards <[email protected]>
* configure.in: Print a list of available language front-ends if
a requested one is missing. Tidy stray tab characters.
* configure: Regenerated.
2004-08-19 Michael Koch <[email protected]>
* gcc/doc/install.texi: Update entry about automake for libjava.
2004-08-17 Robert Millan <[email protected]>
* configure.in: In noconfigdirs check, match GNU/k*BSD with GNU/Linux
(instead of FreeBSD).
* configure: Regenerate.
2004-08-16 Paolo Bonzini <[email protected]>
* Makefile.in: Regenerate.
* configure: Regenerate.
* Makefile.def (bootstrap-stage): Rename extra_*_flags to
stage_*_flags.
* Makefile.tpl (configure-[+module+], all-[+module+]): Exit
for bootstrapped modules if toplevel bootstrap is going.
(GCC bootstrap): Generate per-stage targets for all bootstrapped
modules. Adjust for changes in Makefile.def. Enable several
rules even in non-bootstrap mode, just to avoid peppering the
template with unnecessary "@if/@endif gcc-bootstrap" pairs.
(stage-[+prev+]-bubble): Remove.
* Makefile.def (Dependencies): Depend on all-build-bison,
all-build-flex, all-build-byacc, all-build-texinfo, rather
than the host variations.
* Makefile.tpl (BUILD_DIR_PREFIX): Remove. Replace throughout
with BUILD_SUBDIR.
(BISON): Update for recent Bisons.
(YACC): Fix typo.
(cross): Depend on all-build.
(all): Do not depend on all-build.
(prebootstrap): Remove.
(dep-kind): Accept separate prefixes for MODULE and ON variables.
(Prebootstrap dependencies): Add them to the per-stage targets
and to all-prebootstrap.
* configure.in (build_configdirs): Always enable build_tools.
(BUILD_DIR_PREFIX): Remove.
* Makefile.def (gcc): Add target variable.
(gdb, expect, guile, tk, tix): Replace with_x with extra_make_flags.
* Makefile.tpl (Autogenerated `all-*' targets): Invoke $(TARGET-*)
in the recursive `make', instead of hardwiring `all'.
(Autogenerated TARGET-* variables): New.
2004-08-13 Brian Booth <[email protected]>
* MAINTAINERS: Remove myself from write-after-approval.
2004-08-12 Nathanael Nerode <[email protected]>
* src-release: Stop distributing mmalloc with gdb (which doesn't
use it).
* Makefile.def: GDB doesn't depend on mmalloc anymore.
* Makefile.in: Regenerate.
2004-08-09 Mark Mitchell <[email protected]>
* configure.in (arm*-*-eabi*): New target.
* configure: Regenerate.
2004-08-06 Paolo Bonzini <[email protected]>
* Makefile.def (bfd, opcodes, gcc, zlib): Mark as bootstrap module.
(bison, byacc, flex, texinfo): Do not mark as bootstrap module.
(Dependencies): New section.
* Makefile.tpl (Dependencies): Generate from Makefile.def.
(configure-target-[+module+]): Depend on maybe-all-gcc
(all-prebootstrap): New name of all-bootstrap. Changed throughout.
(toplevel profiledbootstrap): Fix dependencies.
* Makefile.in: Regenerate.
2004-08-03 Mark Mitchell <[email protected]>
* configure.in (arm*-*-symbianelf*): Add ${libgcj} and
target-libiberty to noconfigdirs.
* configure: Regenerate.
2004-08-03 Paul Brook <[email protected]>
* configure.in: Check for MPFR as well as GMP.
* configure: Regenerate.
2004-08-01 Robert Millan <[email protected]>
* configure.in: Turn mt-linux into mt-gnu. Use mt-gnu and enable
libmudflap for all GNU-based systems (with Glibc).
* configure: Regenerate.
2004-08-03 Paolo Bonzini <[email protected]>
* Makefile.def (host-modules): Add gcc.
* Makefile.in: Regenerate.
* Makefile.tpl (sorry): New rule.
(configure-host, all-host, [+make_target+]-host, do-check,
install-host): Do not add gcc as a special case.
(host modules): Add a small special-casing for gcc. Export
extra_make_flags through the environment.
(maybe-configure-gcc, configure-gcc, maybe-all-gcc, all-gcc,
maybe-check-gcc, check-gcc, maybe-install-gcc, install-gcc,
other recursive targets for gcc): Remove.
(all, do-[+make_target+], do-check): Wrap between unstage and stage.
(stage, unstage): New rules.
(stage[+id+]-start, stage[+id+]-end, [+compare-target+],
distclean-stage[+id+]): Use stage_current.
([+bootstrap-target+], profiledbootstrap): Do not invoke manually
the stage*-start rules.
2004-08-02 Geoffrey Keating <[email protected]>
* ltcf-cxx.sh: On Darwin, make archive multi-module, and don't
use -all_load flag.
2004-08-02 Paolo Bonzini <[email protected]>
* configure.in: Sync from src, add noconfigdirs for crx-*-*.
* configure: Regenerate.
2004-07-16 Toon Moene <[email protected]>
* maintainer-scripts/gcc_release: Revert yesterday's change.
2004-07-16 Segher Boessenkool <[email protected]>
* MAINTAINERS: Add myself to write-after-approval.
2004-07-15 Toon Moene <[email protected]>
* libf2c: Removed.
* gcc/gccbug.in: Updated because of libf2c removal.
* maintainer-scripts/gcc_release: Ditto.
2004-07-09 Loren J. Rittle <[email protected]>
* configure.in: Build libmudflap by default on FreeBSD.
* configure: Regenerated.
2004-07-09 Mark Mitchell <[email protected]>
* configure.in: Do not build libmudflap by default on non-GNU/Linux
systems.
* configure: Regenerated.
2004-07-08 John David Anglin <[email protected]>
PR target/16344
* Makefile.tpl (profiledbootstrap): Build runtime libraries with
feedback based compiler.
* Makefile.in: Rebuilt.
2004-07-08 Alexandre Oliva <[email protected]>
* Makefile.def (host_modules): Set bootstrap=true for flex.
* Makefile.tpl (all-gcc): Depend on texinfo and flex.
* Makefile.in: Rebuilt.
2004-07-07 Jan Hubicka <[email protected]>
* MAINTAINERS: Add self as a profile feedback maintainer.
2004-07-05 Phil Edwards <[email protected]>
* configure.in: Do not prepend $srcdir to /dev/null in
makefile fragments.
* configure: Regenerate.
2004-07-01 Paolo Bonzini <[email protected]>
* Makefile.def (build_modules): Add bison, byacc, flex,
m4, texinfo.
(flags_to_pass): Add FLEX.
* Makefile.tpl (BUILD_DIR_PREFIX, BASE_EXPORTS): New.
(BUILD_EXPORTS, HOST_EXPORTS, BASE_TARGET_EXPORTS): Include it.
(DEFAULT_YACC, USUAL_YACC, DEFAULT_LEX, USUAL_LEX, DEFAULT_M4,
DEFAULT_MAKEINFO): Remove.
(CONFIGURED_YACC, CONFIGURED_FLEX, CONFIGURED_BISON,
CONFIGURED_LEX, CONFIGURED_M4, CONFIGURED_MAKEINFO): Substitute.
(YACC, FLEX, BISON, LEX, M4, MAKEINFO): Define to look into
objdir or else use configured tool.
(all-build): New.
(all): Depend on it.
(Build module dependencies): Add.
* Makefile.in: Regenerate.
* configure.in: Better support for multiple build modules,
matching what is done for host/target modules. Do not look
for "plausible" locations of build tools if Canadian cross.
Use autoconf's AC_PROG_CC to find a C compiler. Define
BUILD_DIR_PREFIX. Look for flex, makeinfo and m4.
* configure: Regenerate.
2004-06-22 Paolo Bonzini <[email protected]>
* Makefile.tpl (HOST_EXPORTS): Fix pasto.
* Makefile.in: Regenerate.
2004-06-22 Paolo Bonzini <[email protected]>
* Makefile.tpl (configure-build-[+module+],
configure-[+module+], configure-target-[+module+]): Pass
[+extra_configure_args+].
(all-build-[+module+], all-[+module+], check-[+module+],
install-[+module+], [+make_target+]-[+module+],
all-target-[+module+], check-target-[+module+],
install-target-[+module+], [+make_target+]-target-[+module+]):
Pass [+extra_make_args+].
(HOST_EXPORTS): Include the former GCC_HOST_EXPORTS.
(GCC_HOST_EXPORTS): Remove.
(configure-gcc, all-gcc, GCC_STRAP_TARGETS, profiledbootstrap,
cross, check-gcc, check-gcc-c++, install-gcc,
gcc-no-fixedincludes, [+make_target+]-gcc, stage[+id+]-bubble):
Replace GCC_HOST_EXPORTS with HOST_EXPORTS.
* Makefile.in: Regenerate.
2004-06-21 Matthew Sachs <[email protected]>
* MAINTAINERS: Added self to write-after-approval.