forked from gcc-mirror/gcc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
12983 lines (8074 loc) · 401 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
2006-09-10 Joseph S. Myers <[email protected]>
* MAINTAINERS: Add self as soft-fp maintainer.
2006-09-09 Anatoly Sokolov <[email protected]>
* MAINTAINERS: Add myself as avr maintainer.
Remove Marek Michalkiewicz as avr maintainer.
2006-09-07 Roberto Costa <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2006-08-30 Corinna Vinschen <[email protected]>
* configure.in: Never build newlib for a Mingw host.
Never build newlib as Mingw target library.
Test the existence of winsup/cygwin for building a Cygwin newlib,
rather than just winsup.
Add winsup/mingw and winsup/w32api paths to FLAGS_FOR_TARGET if
building a Mingw target.
* configure: Regenerate.
2006-08-08 Eric Botcazou <[email protected]>
* MAINTAINERS (Various Maintainers): Add self as RTL opt. maintainer.
2006-07-25 Paolo Bonzini <[email protected]>
* config.guess: Import from src (was more updated).
* config.sub: Likewise.
2006-07-22 Daniel Jacobowitz <[email protected]>
* configure.in: Allow mingw32 and cygwin targets to build cross-gdb.
* configure: Regenerated.
2006-07-18 Paolo Bonzini <[email protected]>
* Makefile.tpl (configure-stageN-MODULE): Pass --with-build-libsubdir
for stages after the first.
2006-07-17 Jakub Jelinek <[email protected]>
* Makefile.def: Add dependencies for configure-opcodes
on configure-intl and all-opcodes on all-intl.
* Makefile.in: Regenerated.
2006-07-13 Ben Elliston <[email protected]>
* MAINTAINERS (Various Maintainers): Add myself as dfp maintainer.
2006-07-06 Paul Eggert <[email protected]>
Port to hosts whose 'sort' and 'tail' implementations
treat operands with leading '+' as file names, as POSIX
has required since 2001. However, make sure the code still
works on pre-POSIX hosts.
* ltmain.sh: Don't assume "sort +2" is equivalent to
"sort -k 3", since POSIX 1003.1-2001 no longer requires this.
2006-07-05 Ulrich Weigand <[email protected]>
* MAINTAINERS (Various Maintainers): Add myself as reload maintainer.
2006-07-04 Peter O'Gorman <[email protected]>
* ltconfig: chmod 644 before ranlib during install.
2006-07-04 Eric Botcazou <[email protected]>
PR bootstrap/18058
* configure.in: Add -fkeep-inline-functions to CFLAGS for stage 1
if the bootstrap compiler is a GCC version that supports it.
* configure: Regenerate.
2006-07-03 Paolo Bonzini <[email protected]>
* configure.in: Fix thinkos in previous check-in.
* configure: Regenerate.
2006-07-03 Paolo Bonzini <[email protected]>
PR other/27063
* configure.in: Test subdir_requires and give an appropriate
error message.
* configure: Regenerate.
2006-07-01 Andrew John Hughes <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2006-06-22 John David Anglin <[email protected]>
* MAINTAINERS (OS Port Maintainers): Add myself as hpux maintainer.
2006-06-22 Steve Ellcey <[email protected]>
* MAINTAINERS (OS Port Maintainers): Add myself as hpux maintainer.
2006-06-20 David Ayers <[email protected]>
PR bootstrap/28072
* configure.in: Add target-boehm-gc to noconfigdirs depending on
whether target-libjava is being configured instead of whether the
java front end is enabled.
* configure: Regenerate.
2006-06-16 Rainer Orth <[email protected]>
PR target/27540
* configure.in: Only enable libgomp on IRIX 6.
* configure: Regenerate.
2006-06-15 Paolo Bonzini <[email protected]>
* Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Export CFLAGS and LDFLAGS
too.
* Makefile.in: Regenerate.
2006-06-13 Jeff Johnston <[email protected]>
* config-ml.in: Alter CCASFLAGS to include special
multilib options the same as is done for CFLAGS.
2006-06-12 John David Anglin <[email protected]>
* configure.in: Don't enable libgomp on hpux10.
* configure: Rebuilt.
2006-06-12 David Ayers <[email protected]>
PR bootstrap/27963
PR target/19970
* configure.in: Remove target-boehm-gc from noconfigdirs where
${libgcj} is specified.
* configure: Regenerate.
2006-06-06 Carlos O'Donell <[email protected]>
Sync from src:
* configure.in: Sync.
* configure: Regenerated.
2006-05-31 Daniel Jacobowitz <[email protected]>
* Makefile.def: Added dependencies from sim and gdb on intl, and
added configure dependencies to everything with an all dependency
on intl.
* Makefile.in: Regenerated.
2006-06-06 David Ayers <[email protected]>
PR libobjc/13946
* Makefile.def: Add dependencies for libobjc which boehm-gc.
* Makefile.in: Regenerate.
* configure.in: Add --enable-objc-gc at toplevel and have it
enable boehm-gc for Objective-C.
Remove target-boehm-gc from libgcj.
Add target-boehm-gc to target_libraries.
Add target-boehm-gc to noconfigdirs where ${libgcj}
is specified.
Assert that boehm-gc is supported when requested for Objective-C.
Only build boehm-gc if needed either for Java or Objective-C.
* configure: Regenerate.
2006-06-05 Paolo Bonzini <[email protected]>
PR 27674
* Makefile.tpl (configure-[+prefix+][+module+],
all-[+prefix+][+module+]): Depend on stage_current if bootstrapping.
Remove rule to unstage bootstrapped modules.
(stage_current): New.
* Makefile.in: Regenerate.
2006-06-03 Laurynas Biveinis <[email protected]>
* MAINTAINERS (Write After Approval): Update my e-mail address.
2006-06-01 Mark Shinwell <[email protected]>
* include/libiberty.h: Declare pex_run_in_environment.
2006-05-31 Asher Langton <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2006-05-25 Paolo Bonzini <[email protected]>
* Makefile.def (bfd, opcodes): Fix lib_path.
* Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Replace ADAC with ADAFLAGS.
(restrap): Move under "@if gcc-bootstrap". Fix typo.
* Makefile.in: Regenerate.
2006-05-24 Carlos O'Donell <[email protected]>
* Makefile.in: Regenerate.
2006-05-24 Carlos O'Donell <[email protected]>
* Makefile.def: Add install-html target. Add datarootdir
docdir and htmldir to flags_to_pass.
* Makefile.tpl: Add install-html target.
* Makefile.in: Regenerate.
* configure.in: Add --with-datarootdir, --with-docdir, and
--with-htmldir options. AC_SUBST datarootdir, docdir and htmldir.
* configure: Regenerate.
2006-05-24 Mark Shinwell <[email protected]>
* configure.in: Enable gprof for cross builds.
* configure: Regenerate.
2006-05-22 Richard Guenther <[email protected]>
Revert
2006-01-31 Richard Guenther <[email protected]>
Paolo Bonzini <[email protected]>
* Makefile.def (target_modules): Add libgcc-math target module.
* configure.in (target_libraries): Add libgcc-math target library.
(--enable-libgcc-math): New configure switch.
* Makefile.in: Re-generate.
* configure: Re-generate.
* libgcc-math: New toplevel directory.
2006-05-20 John David Anglin <[email protected]>
Andreas Tobler <[email protected]>
* configure.in: Enable libgcj for hppa*-hp-hpux11*.
* configure: Rebuilt.
2006-05-12 Sandra Loosemore <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2006-05-01 DJ Delorie <[email protected]>
* configure.in: Restore CFLAGS if GMP isn't present.
* configure: Regenerate.
2006-05-01 Richard Guenther <[email protected]>
* MAINTAINERS (Various Maintainers): Add myself as libgcc-math
maintainer.
2006-04-30 Kenneth Zadeck <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2006-04-28 Jan Beulich <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2006-04-18 DJ Delorie <[email protected]>
* configure.in (m32c): Build libstdc++-v3. Pass flags to
reference libgloss so that libssp can be built in a combined
tree.
* configure: Regenerate.
2006-04-08 Robert Millan <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2006-04-05 Ben Elliston <[email protected]>
* configure.in: Require makeinfo 4.4 or higher.
* configure: Regenerate.
2006-04-04 Gerald Pfeifer <[email protected]>
* MAINTAINERS: Add Richard Henderson as libgomp maintainer.
Rearrange the entries of other libraries to have them in one place.
2006-03-22 Janne Blomqvist <[email protected]>
* MAINTAINERS (Write After Approval): Remove myself.
(Language Front End Maintainers): Add myself as fortran 95 maintainer.
2006-03-14 Richard Guenther <[email protected]>
* configure: Regenerate with autoconf 2.13.
2006-03-13 Jim Blandy <[email protected]>
* MAINTAINERS: Use my work address.
* MAINTAINERS: Update my E-mail address.
2006-03-10 Aldy Hernandez <[email protected]>
* configure.in: Handle --disable-<component> generically.
* configure: Regenerate.
2006-03-01 H.J. Lu <[email protected]>
PR libgcj/17311
* ltmain.sh: Don't use "$finalize_rpath" for compile.
2006-02-21 Erik Edelmann <[email protected]>
* MAINTAINERS (Write After Approval): Remove myself.
(Language Front End Maintainers): Add myself as fortran 95 maintainer.
2006-02-21 Rafael Avila de Espindola <[email protected]>
* Makefile.tpl (BUILD_CONFIGDIRS): Remove.
(TARGET_CONFIGDIRS): Remove.
* configure.in: Remove AC_SUBST(target_configdirs).
* Makefile.in, configure: Regenerated.
2006-02-20 Steven G. Kargl <[email protected]>
* MAINTAINERS (Write After Approval): Remove myself.
(Language Front End Maintainers): Add myself as fortran 95 maintainer.
2006-02-20 Paolo Bonzini <[email protected]>
PR bootstrap/25670
* Makefile.tpl ([+compare-target+]): Print explanation messages.
* Makefile.def (ADAFLAGS, BOOT_ADAFLAGS, LANGUAGES): New flags_to_pass.
* Makefile.tpl (BASE_FLAGS_TO_PASS): Support optional flags_to_pass.
(EXTRA_GCC_FLAGS): Remove ADAFLAGS, BOOT_ADAFLAGS, LANGUAGES,
BUILD_PREFIX, BUILD_PREFIX_1.
* configure.in: (BUILD_PREFIX, BUILD_PREFIX_1): Don't substitute.
* Makefile.def (bootstrap stage 1): Pass LIBCFLAGS too.
* Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Override LIBCFLAGS too.
* Makefile.tpl (configure-stage[+id+]-[+prefix+][+module+],
all-stage[+id+]-[+prefix+][+module+], : Use $(current_stage) instead
of `cat stage_current`. Always provide the `r' and `s' variables.
(clean-stage[+id+]-[+prefix+][+module+]): Likewise, and make it into
a single shell execution.
(configure-[+prefix+][+module+], all-[+prefix+][+module+]): For
bootstrapped modules, make the stage1 module if the build was not
started yet, else build the current stage.
(all-host, all-target): Omit bootstrapped modules (if bootstrapping).
(all-build, all-host, all-target, [+make_target+]-host,
[+make_target+]-target): Do not use \-continued lines.
(target modules): Depend on stage_last, not all-gcc, if bootstrapping.
(current_stage, restrap, stage_last): New.
* Makefile.in: Regenerate.
* configure: Regenerate.
2006-02-19 Bud Davis <[email protected]>
* MAINTAINERS (Write After Approval): Remove myself.
(Language Front End Maintainers): Add myself as fortran 95
maintainer and update e-mail address.
2006-02-17 Francois-Xavier Coudert <[email protected]>
* MAINTAINERS (Write After Approval): Remove myself.
(Language Front End Maintainers): Add myself as fortran 95
maintainer.
2006-02-16 Victor Kaplansky <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2006-02-16 Thomas Koenig <[email protected]>
* MAINTAINERS (Write After Approval): Remove myself.
(Language Front End Maintainers): Add myself as
fortran 95 maintainer.
2006-02-14 Paolo Bonzini <[email protected]>
Sync from src:
2005-12-27 Leif Ekblad <[email protected]>
* configure.in: Add support for RDOS target.
* configure: Regenerate.
2006-02-14 Paolo Bonzini <[email protected]>
Andreas Schwab <[email protected]>
* configure: Regenerate.
2006-02-12 David Edelsohn <[email protected]>
* configure.in (enable_libgomp): Add AIX.
* configure: Regenerate.
2006-02-07 Maxim Kuvyrkov <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2006-02-03 Lee Millward <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2006-01-31 Richard Guenther <[email protected]>
Paolo Bonzini <[email protected]>
* Makefile.def (target_modules): Add libgcc-math target module.
* configure.in (target_libraries): Add libgcc-math target library.
(--enable-libgcc-math): New configure switch.
* Makefile.in: Re-generate.
* configure: Re-generate.
* libgcc-math: New toplevel directory.
2006-01-26 Paolo Bonzini <[email protected]>
* configure.in: Set with_gnu_as, with_gnu_ld, with_newlib earlier.
Set md_exec_prefix. Use ACX_CHECK_INSTALLED_TARGET_TOOL to find
the assembler, linker and binutils.
* configure: Regenerate.
2006-01-22 Dirk Mueller <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2006-01-20 Diego Novillo <[email protected]>
* configure: Regenerate.
2006-01-18 Richard Henderson <[email protected]>
Jakub Jelinek <[email protected]>
Diego Novillo <[email protected]>
* libgomp: New directory.
* Makefile.def: Add target_module libgomp.
* Makefile.in: Regenerate.
* configure.in (target_libraries): Add target-libgomp.
* configure: Regenerate.
2006-01-05 Alexandre Oliva <[email protected]>
* Makefile.tpl (clean-stage[+id+]-[+prefix+][+module+]): Remove
@ from continuation.
* Makefile.in: Rebuilt.
2006-01-04 Chris Lattner <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2006-01-04 Paolo Bonzini <[email protected]>
PR bootstrap/24252
* Makefile.def (flags_to_pass): Add STAGE1_CFLAGS and STAGE1_LANGUAGES.
* Makefile.tpl (OBJDUMP): New.
(EXTRA_HOST_FLAGS): Add it.
(EXTRA_GCC_FLAGS): Remove flags already specified in flags_to_pass.
* Makefile.tpl (stage[+id+]-start, stage[+id+]-end): Do not try
to use symbolic links between directories. Avoid race conditions
or make them harmless.
* configure.in: Do not try to use symbolic links between directories.
* Makefile.def (LEAN): Pass.
* Makefile.tpl (LEAN): Define.
(stage[+id+]-start): Accept that the previous directory does not
exist, if the bootstrap is lean.
(stage[+id+]-bubble): Invoke lean bootstrap commands after
stage[+id+]-start. Use a makefile variable and an `if' instead of a
configure substitution.
([+compare-target+]): Likewise.
([+bootstrap-target+]-lean): New.
* configure.in: Remove lean bootstrap support from here.
* Makefile.in: Regenerate.
* configure: Regenerate.
2006-01-04 Ben Elliston <[email protected]>
* MAINTAINERS (libdecnumber): Add myself.
2006-01-02 Mark Mitchell <[email protected]>
* libtool-ldflags: New script.
2006-01-02 Andreas Schwab <[email protected]>
* configure.in: When reconfiguring remove Makefile in
all stage directories.
* configure: Regenerate.
2005-12-27 Steven Bosscher <[email protected]>
* MAINTAINERS: Update my email address.
2005-12-20 Paolo Bonzini <[email protected]>
Revert Ada-related part of the previous change.
* Makefile.def (ADAFLAGS, BOOT_ADAFLAGS, ADAFLAGS_FOR_TARGET):
Do not pass.
* Makefile.tpl (BOOT_ADAFLAGS): Do not define.
* Makefile.in: Regenerate.
* configure.in: Do not include mt-ppc-aix target fragment.
* configure: Regenerate.
2005-12-19 Paolo Bonzini <[email protected]>
* configure.in: Select appropriate fragments for PowerPC/AIX.
* configure: Regenerate.
* Makefile.def (flags_to_pass): Add ADAFLAGS, BOOT_ADAFLAGS,
BOOT_CFLAGS, BOOT_LDFLAGS.
* Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Handle BOOT_ADAFLAGS,
BOOT_CFLAGS, BOOT_LDFLAGS.
(TARGET_FLAGS_TO_PASS): Handle ADAFLAGS_FOR_TARGET.
(stage[+id+]-bubble): Pass flags recursively to the comparison target.
(stage): Fail if we cannot complete the work.
* Makefile.in: Regenerate.
2005-12-16 Nathan Sidwell <[email protected]>
* configure.in: Replace ms1 with mt.
* configure: Rebuilt.
2005-12-15 Bryce McKinlay <[email protected]>
* MAINTAINERS: Update my email address.
2005-12-15 Paolo Bonzini <[email protected]>
* Makefile.tpl (all, do-[+make_target+], do-check, install,
install-host-nogcc): Don't invoke $(stage) at the end.
* Makefile.in: Regenerate.
2005-12-14 Paolo Bonzini <[email protected]>
* configure.in: Flip the top-level bootstrap switch.
* configure: Regenerate.
2005-12-14 Daniel Jacobowitz <[email protected]>
* Makefile.tpl: Throughout the file, use : $(MAKE) along with
$(stage) and $(unstage).
(EXTRA_TARGET_FLAGS): Correct double-quoting.
(all): Remove stray semicolon.
(local-distclean): Don't handle multilib.tmp and multilib.out.
(install.all): Set $s for consistency.
(configure-[+prefix+][+module+]): Instead of [+deps+], handle
check_multilibs setting. Always make the install directory.
(configure-stage[+id+]-[+prefix+][+module+]): Likewise.
Correct @if/@endif.
(all-stage[+id+]-[+prefix+][+module+]): Correct @if/@endif.
($(TARGET_SUBDIR)/[+module+]/multilib.out): Remove.
(stage[+id+]-start, stage[+id+]-end): Stage $(TARGET_SUBDIR).
(multilib.out): Remove.
* Makefile.in: Regenerated.
2005-12-12 Carlos O'Donell <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2005-12-12 Nathan Sidwell <[email protected]>
* MAINTAINERS: Add myself as mt maintainer.
* config.sub: Replace ms1 with mt. Allow ms1 as an alias.
2005-12-06 Adam Nemet <[email protected]>
* MAINTAINERS: Change email address.
2005-12-05 Paolo Bonzini <[email protected]>
* configure.in (CONFIGURED_BISON, CONFIGURED_YACC, CONFIGURED_M4,
CONFIGURED_FLEX, CONFIGURED_LEX, CONFIGURED_MAKEINFO): Remove
"CONFIGURED_" from the AC_CHECK_PROGS invocation. Move below.
Find in-tree tools if available.
(EXPECT, RUNTEST, LIPO, STRIP): Find them and substitute them.
(CONFIGURED_*_FOR_TARGET): Don't set nor substitute.
(*_FOR_TARGET): Set them with GCC_TARGET_TOOL.
(COMPILER_*_FOR_TARGET): New.
* Makefile.tpl (HOST_EXPORTS): Add *_FOR_TARGET symbols that gcc needs.
(BASE_TARGET_EXPORTS): Use COMPILER_*_FOR_TARGET symbols.
(CONFIGURED_*, USUAL_*): Remove.
(BISON, YACC, FLEX, LEX, M4, MAKEINFO, EXPECT, RUNTEST, LIPO,
STRIP): Use autoconf substitutions.
(COMPILER_AS_FOR_TARGET, COMPILER_LD_FOR_TARGET,
COMPILER_NM_FOR_TARGET): New.
(EXTRA_HOST_FLAGS): Pass LIPO and STRIP.
(all): Make all-host and all-target in parallel.
(do-[+make_target+], do-check, install, [+compare-target+]): Ensure
that $$r and $$s are set before invoking a recursive make.
(stage[+id+]-bubble): Likewise, and invoke the comparison at the end.
([+bootstrap-target+]): Inline most of the `all' target.
2005-11-29 Ben Elliston <[email protected]>
* Makefile.tpl (clean-target-libgcc): Invoke clean-target-libgcc
from the gcc build directory.
* Makefile.in: Regenerate.
2005-11-29 Ben Elliston <[email protected]>
* Makefile.def: Add new libdecnumber host_module. Make all-gcc
depend on all-libdecnumber.
* configure.in (host_libs): Include libdecnumber.
* Makefile.in: Regenerate.
* configure: Likewise.
2005-11-29 Ben Elliston <[email protected]>
* libdecnumber: Import decNumber sources from the dfp-branch.
2005-11-21 Kean Johnston <[email protected]>
* config.sub, config.guess: Sync from upstream sources.
2005-11-21 Ben Elliston <[email protected]>
Import from Autoconf sources:
2005-09-06 Paul Eggert <[email protected]>
* config/move-if-change: Don't output "$2 is unchanged";
suggested by Ben Elliston. Handle weird characters correctly.
2005-11-18 Andreas Tobler <[email protected]>
* ltcf-c.sh (whole_archive_flag_spec): Remove '-all_load $convenience'
to match upstream libtool for darwin.
2005-11-11 Daniel Jacobowitz <[email protected]>
* Makefile.def: Remove gdb dependencies for gdbtk.
* Makefile.tpl (CONFIGURE_GDB_TK, INSTALL_GDB_TK): New variables.
(configure-gdb, install-gdb): New rules.
* configure.in: Set CONFIGURE_GDB_TK and INSTALL_GDB_TK.
* Makefile.in, configure: Regenerated.
2005-11-06 Janne Blomqvist <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2005-11-06 Erik Edelmann <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2005-10-24 Diego Novillo <[email protected]>
* MAINTAINERS (alias analysis): Add Daniel Berlin and
Diego Novillo.
2005-10-22 Paolo Bonzini <[email protected]>
PR bootstrap/24297
* Makefile.tpl (do-[+make-target+], do-check, install,
stage[+id+]-bubble, [+compare-target+]): Ensure $$r and $$s
are set before recursing.
* Makefile.in: Regenerate.
2005-10-20 Eric Botcazou <[email protected]>
PR bootstrap/18939
* Makefile.def (gcc) <target>: Fix thinko.
* Makefile.in: Regenerate.
2005-10-17 Bernd Schmidt <[email protected]>
* configure.in (bfin-*-*): Use test, not brackets, in if statement.
* configure: Regenerate.
2005-10-15 Jie Zhang <[email protected]>
* MAINTAINERS (Write After Approval): Add self.
2005-10-08 Kazu Hirata <[email protected]>
* configure.in (arm-*-linux-gnueabi): Add to noconfigdirs
target-libffi, target-qthreads, target-libjava, and
targetlibobjc.
* configure: Regenerate.
2005-10-06 Daniel Jacobowitz <[email protected]>
* Makefile.def (flags_to_pass): Add OBJDUMP_FOR_TARGET.
* Makefile.tpl (BASE_TARGET_EXPORTS): Add OBJDUMP.
(OBJDUMP_FOR_TARGET, CONFIGURED_OBJDUMP_FOR_TARGET)
(USUAL_OBJDUMP_FOR_TARGET): New.
(EXTRA_TARGET_FLAGS): Add OBJDUMP.
* configure.in: Check for $OBJDUMP_FOR_TARGET.
* configure, Makefile.in: Regenerated.
2005-10-05 Paolo Bonzini <[email protected]>
* Makefile.tpl (all) [gcc-no-bootstrap]: Make prebootstrap packages
before other host packages.
2005-10-05 Kaz Kojima <[email protected]>
* MAINTAINERS: Add self as sh libraries/configury maintainer.
2005-10-05 Paolo Bonzini <[email protected]>
PR bootstrap/22340
* configure.in (default_target): Remove.
* Makefile.tpl (all): Do not use prerequisites as subroutines
(all) [gcc-bootstrap]: Bootstrap gcc first if it was not done yet.
(do-[+make_target+], check, install, [+bootstrap_target+]): Do not
use prerequisites as subroutines.
(check-host, check-target): New.
(bootstrap configure & all targets): Do not use stage*-start
if the directory layout is already ok.
(non-bootstrap configure & all targets): Prepend a $(unstage).
(stage[+id+]-bubble): Do that here. Do not use NOTPARALLEL.
(NOTPARALLEL): Remove.
(unstage, stage variables): New variables.
(unstage, stage targets): Simply expand to those variables.
* configure: Regenerate.
* Makefile.in: Regenerate.
2005-10-04 James E Wilson <[email protected]>
* Makefile.def (lang_env_dependencies): Add libmudflap.
* Makefile.in: Regenerate.
2005-10-03 Andreas Schwab <[email protected]>
Backport from libtool CVS:
2002-11-03 Ossama Othman <[email protected]>
* ltmain.sh: add support for installing into temporary
staging area (e.g. 'make install DESTDIR=...')
2005-10-03 H.J. Lu <[email protected]>
* configure.in (*-*-darwin*): Build bfd, binutils and opcodes.
* configure: Regenerated.
2005-09-30 Andrew Pinski <[email protected]>
* configure: Regenerate with the correct
autoconf version.
2005-09-30 Catherine Moore <[email protected]>
* configure.in (bfin-*-*): New.
* configure: Regenerated.
2005-09-28 Geoffrey Keating <[email protected]>
* Makefile.tpl (BASE_TARGET_EXPORTS): Add LIPO, STRIP.
(LIPO_FOR_TARGET): New.
(CONFIGURED_LIPO_FOR_TARGET): New.
(USUAL_LIPO_FOR_TARGET): New.
(STRIP_FOR_TARGET): New.
(CONFIGURED_STRIP_FOR_TARGET): New.
(USUAL_STRIP_FOR_TARGET): New.
* Makefile.def (flags_to_pass): Add LIPO_FOR_TARGET and
STRIP_FOR_TARGET.
* configure.in: Set LIPO_FOR_TARGET, STRIP_FOR_TARGET,
CONFIGURED_LIPO_FOR_TARGET, CONFIGURED_STRIP_FOR_TARGET.
* Makefile.in: Regenerate.
* configure: Regenerate.
2005-09-19 David Edelsohn <[email protected]>
* configure.in (powerpc-*-aix*): Add target-libssp to noconfigdirs.
(rs6000-*-aix*): Same.
* configure: Regenerate.
2005-09-16 Tom Tromey <[email protected]>
* MAINTAINERS: Add self as java maintainer.
2005-09-14 Francois-Xavier Coudert <[email protected]>
* configure.in: Recognize f95 in the --enable-languages option,
and substitute it for fortran, issuing a warning.
* configure: Regenerate.
2005-08-30 Phil Edwards <[email protected]>
* configure.in (*-*-vxworks*): Add target-libstdc++-v3 to noconfigdirs.
* configure: Regenerated.
2005-08-22 Aldy Hernandez <[email protected]>
* MAINTAINERS: Add self as ms1 maintainer.
2005-08-20 Richard Earnshaw <[email protected]>
* Makefile.def (libssp): Add to lang_env_dependencies.
* Makefile.in: Regenerate.
2005-08-18 Ian Lance Taylor <[email protected]>
* MAINTAINERS: Add myself as middle-end maintainer.
2005-08-17 Christian Groessler <[email protected]>
* Makefile.tpl: (USUAL_CC_FOR_TARGET): Add missing trailing slash.
* Makefile.in: Regenerate.
2005-08-15 Andreas Krebbel <[email protected]>
* MAINTAINERS (write after approval): Added myself.
2005-08-12 Maciej W. Rozycki <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2005-08-12 Paolo Bonzini <[email protected]>
* configure.in: Replace NCN_STRICT_CHECK_TOOL with
NCN_STRICT_CHECK_TOOLS, and likewise for NCN_STRICT_CHECK_TARGET_TOOLS.
Look for alternate names of the target cc and c++
* configure: Regenerate.
2005-08-08 Paolo Bonzini <[email protected]>
* configure.in (CC_FOR_TARGET, CXX_FOR_TARGET, GCJ_FOR_TARGET,
GCC_FOR_TARGET, RAW_CXX_FOR_TARGET, GFORTRAN_FOR_TARGET): Find
them with NCN_STRICT_CHECK_TARGET_TOOL, like the other target
tools; remove code to manually set them.
(Target tools): Look in the environment for them.
* Makefile.tpl (CC_FOR_TARGET, CXX_FOR_TARGET, GCJ_FOR_TARGET,
GCC_FOR_TARGET, RAW_CXX_FOR_TARGET, GFORTRAN_FOR_TARGET): Redefine.
(AS_FOR_TARGET, LD_FOR_TARGET, NM_FOR_TARGET): Look into gcc
build directory.
(CONFIGURED_CC_FOR_TARGET, CONFIGURED_CXX_FOR_TARGET,
CONFIGURED_GCJ_FOR_TARGET, CONFIGURED_GCC_FOR_TARGET,
CONFIGURED_GFORTRAN_FOR_TARGET, USUAL_CC_FOR_TARGET,
USUAL_CXX_FOR_TARGET, USUAL_GCJ_FOR_TARGET, USUAL_GCC_FOR_TARGET,
USUAL_RAW_CXX_FOR_TARGET, USUAL_GFORTRAN_FOR_TARGET): New.
(CXX_FOR_TARGET_FOR_RECURSIVE_MAKE,
RAW_CXX_FOR_TARGET_FOR_RECURSIVE_MAKE, RECURSE_FLAGS): Delete.
* configure: Regenerate.
* Makefile.in: Regenerate.
2005-07-28 Ben Elliston <[email protected]>
* MAINTAINERS: Update for removed CPU targets.
2005-07-27 Mark Mitchell <[email protected]>
* Makefile.tpl (EXTRA_TARGET_FLAGS): Set LDFLAGS=LDFLAGS_FOR_TARGET.
* Makefile.def (flags_to_pass): Add LDFLAGS_FOR_TARGET.
* Makefile.in: Regenerated.
2005-07-26 Mark Mitchell <[email protected]>
* Makefile.tpl (SYSROOT_CFLAGS_FOR_TARGET): New variable.
(CFLAGS_FOR_TARGET): Use it.
(CXXFLAGS_FOR_TARGET): Likewise.
* Makefile.in: Regenerated.
* configure.in (--with-build-sysroot): New option.
* configure: Regenerated.
2005-07-24 Paolo Bonzini <[email protected]>
* Makefile.tpl: Wrap install between unstage and stage
* Makefile.in: Regenerate.
2005-07-21 Eric Christopher <[email protected]>
* MAINTAINERS: Update affiliation.
2005-07-21 Paul Woegerer <[email protected]>
* MAINTAINERS: Add self as crx port maintainer.
2005-07-20 DJ Delorie <[email protected]>
* MAINTAINERS: Add self as m32c maintainer.
2005-07-16 Kelley Cook <[email protected]>
* all files: Update FSF address.
2005-07-15 Eric Christopher <[email protected]>
* MAINTAINERS: Change affiliation.
2005-07-14 Jim Blandy <[email protected]>
* configure.in: Add cases for Renesas m32c.
* configure: Regenerated.
2005-07-14 Kelley Cook <[email protected]>
* COPYING.LIB: Update from fsf.org.
2005-07-14 Kelley Cook <[email protected]>
* COPYING, compile, config.guess,
config.sub, install-sh, missing, mkinstalldirs,
symlink-tree, ylwrap: Sync from upstream sources.
* config-ml.in: Update FSF address.
2005-07-13 Eric Christopher <[email protected]>
* configure.in: Add toplevel noconfigdir support for tpf.
* configure: Regenerate.
2005-07-11 Paolo Bonzini <[email protected]>
PR ada/22340
* Makefile.tpl (POSTSTAGE1_FLAGS_TO_PASS): Fix pasto.
* Makefile.in: Regenerate.
2005-07-07 Mark Mitchell <[email protected]>
* MAINTAINERS: Remove Dave Brolley as a cpplib maintainer. Add Dave
Brolley to write-after-approval.
2005-07-07 Andreas Schwab <[email protected]>
* Makefile.def (flags_to_pass): Add CFLAGS_FOR_BUILD.
* Makefile.tpl (EXTRA_GCC_FLAGS): Don't pass CFLAGS_FOR_BUILD here.
* Makefile.in: Regenerated.
2005-07-06 Geoffrey Keating <[email protected]>
* configure.in: Don't build sim or rda when targetting darwin.
* configure: Regenerate.
2005-07-06 Kazu Hirata <[email protected]>
* configure.in: Add --enable-libssp and --disable-libssp.
* configure: Regenerate with autoconf-2.13.
2005-07-02 Jakub Jelinek <[email protected]>
* Makefile.def (target_modules): Add libssp.
* configure.in (target_libraries): Add target-libssp.
* configure: Rebuilt.
* Makefile.in: Rebuilt.
2005-07-01 Zack Weinberg <[email protected]>
* MAINTAINERS: Change email address. Resign from maintainership.
2005-07-01 Richard Guenther <[email protected]>
* MAINTAINERS: Change my e-mail address and affiliation.
2005-06-22 Paolo Bonzini <[email protected]>
* Makefile.def (stagefeedback): Come after profile.
Define profiledbootstrap target.
* Makefile.tpl (profiledbootstrap): Remove.
(stageprofile-end): Zap stagefeedback.
(stagefeedback-start): Copy all .gcda files, not only GCC's.
* Makefile.in: Regenerate.
2005-06-13 Richard Sandiford <[email protected]>
* MAINTAINERS: Update my email address.
2005-06-13 Zack Weinberg <[email protected]>
* depcomp: Update from automake CVS. Add 'ia64hp' stanza.
In 'cpp' stanza, support '#line' as well as '# '.
2005-06-08 Andreas Schwab <[email protected]>
* MAINTAINERS: Move myself from 'Write After Approval' to
'CPU Port Maintainers' section as m68k maintainer.
2005-06-07 Hans-Peter Nilsson <[email protected]>
* configure.in (unsupported_languages): New macro.
<mmix-knuth-mmixware>: Set unsupported_languages. Name explicit
non-ported target libraries in noconfigdirs.
<cris-*, crisv32-*> Ditto, except for non-aout, non-elf,
non-linux-gnu. Remove libgcj_ex_libffi.
<lang_frag loop>: Set add_this_lang=no if the language is in
unsupported_languages.
* configure: Regenerate.
2005-06-04 Tobias Schl"uter <[email protected]>
* configure.in: Fix typo in handling of --with-mpfr-dir.
* configure: Regenerate.
2005-06-04 Richard Sandiford <[email protected]>
* MAINTAINERS: Update my email address.
2005-06-02 Jim Blandy <[email protected]>
* config.sub: Add cases for the Renesas m32c. (This patch has been
accepted into the master sources.)
2005-06-02 Aldy Hernandez <[email protected]>
Michael Snyder <[email protected]>
Stan Cox <[email protected]>
* configure.in: Set noconfigdirs for ms1.
* configure: Regenerate.