-
Notifications
You must be signed in to change notification settings - Fork 2
/
ChangeLog
17191 lines (10789 loc) · 523 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
2012-03-22 Release Manager
* GCC 4.7.0 released.
2012-02-17 Walter Lee <[email protected]>
* MAINTAINERS: (Write After Approval): Delete myself.
2012-02-14 Walter Lee <[email protected]>
* MAINTAINERS (tilegx port): Add myself.
(tilepro port): Add myself.
(Write After Approval): Add myself.
2012-02-12 Gerald Pfeifer <[email protected]>
* MAINTAINERS (Various Maintainers): Add Diego Novillo,
Gerald Pfeifer and Joseph Myers as docstring relicensing
maintainers.
2012-02-09 Bin Cheng <[email protected]>
* MAINTAINERS (write-after-approval): Add myself.
2012-02-08 Ira Rosen <[email protected]>
* MAINTAINERS (Various Maintainers): Remove myself as auto-vectorizer
maintainer.
2012-02-04 Venkataramanan Kumar <[email protected]>
* MAINTAINERS (Write After Approval): Move myself to maintain alphabetical order.
2012-02-03 Venkataramanan Kumar <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2012-02-02 Jayant R Sonar <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2012-02-02 Sumanth G <[email protected]>
Jayant R Sonar <[email protected]>
* configure.ac (cr16-*-*): Remove nonconfigdirs.
* configure: Regenerate.
2012-01-23 Harshit Chopra <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2012-01-22 Douglas B Rupp <[email protected]>
* configure.ac: Remove reference to mh-interix.
* configure: Regenerate.
2012-01-05 Richard Henderson <[email protected]>
PR bootstrap/51072
* configure.ac: Disable libitm if c++ is not enabled.
* configure: Rebuild.
* configure.ac: Fix regexp for same.
* configure: Rebuild.
2012-01-02 Balaji V. Iyer <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2012-01-02 Richard Guenther <[email protected]>
PR bootstrap/51686
* Makefile.def (install-strip-gcc): Depend on install-strip-lto-plugin.
* Makefile.in: Regenerate.
2011-12-28 Oleg Endo <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2011-12-18 Eric Botcazou <[email protected]>
* configure: Regenerate.
2011-12-14 Hariharan Sandanagobalane <[email protected]>
* MAINTAINERS (picochip): Changed email address.
2011-11-30 Matthew Gretton-Dann <[email protected]>
* MAINTAINERS (write-after-approval): Add self.
2011-11-29 DJ Delorie <[email protected]>
* configure.ac (rl78-*-*) New case.
* configure: Regenerate.
* MAINTAINERS: Add myself as RL78 maintainer.
2011-11-21 Eric Botcazou <[email protected]>
* MAINTAINERS: Add self as co-maintainer of the Ada front end.
2011-11-21 Andreas Tobler <[email protected]>
* libtool.m4: dditional FreeBSD 10 fixes.
2011-11-21 Joern Rennecke <[email protected]>
* MAINTAINERS: Move myself from Write After Approval to CPU Port
Maintainers section, as Epiphany maintainer.
2011-11-18 Iain Sandoe <[email protected]>
PR target/49992
* configure.ac: Remove ranlib special-casing for Darwin.
* configure: Regenerate.
2011-11-12 Andrey Belevantsev <[email protected]>
* MAINTAINERS (Reviewers): Keep the list sorted.
2011-11-11 Andrey Belevantsev <[email protected]>
* MAINTAINERS (Selective Scheduling): Add myself as a reviewer.
2011-11-09 Roland McGrath <[email protected]>
* configure.ac: Add tool checks for READELF and READELF_FOR_TARGET.
* configure: Rebuild.
* Makefile.def (flags_to_pass): Add READELF_FOR_TARGET.
* Makefile.tpl (READELF, READELF_FOR_TARGET): New variables.
(HOST_EXPORTS): Add READELF, READELF_FOR_TARGET.
(BASE_FLAGS_TO_PASS): Add READELF_FOR_TARGET.
(BASE_TARGET_EXPORTS, EXTRA_HOST_FLAGS, EXTRA_TARGET_FLAGS):
Add READELF.
* Makefile.in: Rebuild.
2011-11-09 Jason Merrill <[email protected]>
* Makefile.def (language=c++): Remove check-c++0x.
* Makefile.in (check-gcc-c++): Regenerate.
2011-11-08 Richard Henderson <[email protected]>
* configure.ac: Test for libitm directory present first.
* configure.ac: Adjust srcdir for running libitm/configure.tgt.
* configure.ac: Test libitm/configure.tgt to disable libitm.
* configure: Rebuild.
2011-11-07 Aldy Hernandez <[email protected]>
Richard Henderson <[email protected]>
Merged from transactional-memory.
* Makefile.def (lang_env_dependencies): libitm is c++.
Add libitm target module.
* configure.ac: Likewise.
* config/mmap.m4: New file.
* contrib/gcc_update: Add libitm to touch data.
* Makefile.in, configure: Rebuild.
2011-11-02 Rainer Orth <[email protected]>
* Makefile.tpl (EXTRA_GCC_FLAGS): Remove LIBGCC2_CFLAGS,
LIBGCC2_DEBUG_CFLAGS, LIBGCC2_INCLUDES.
* Makefile.in: Regenerate.
2011-11-01 DJ Delorie <[email protected]>
* config.sub: Update to version 2011-10-29 (added rl78)
2011-10-27 Nick Clifton <[email protected]>
* config.sub: Import these changes from the config project:
2011-10-08 Joern Rennecke <[email protected]>
Ben Elliston <[email protected]>
* config.sub (epiphany): New.
2011-09-09 Linas Vepstas <[email protected]>
Ben Elliston <[email protected]>
* config.sub (hexagon, hexagon-*): New.
2011-08-23 Roland McGrath <[email protected]>
* config.sub: Rename 32eb to be32, 32el to le32, 64el to le64, and
64eb to be64.
2011-08-16 Roland McGrath <[email protected]>
* config.sub (32eb, 32el, 64eb, 64el): New (pseudo-)CPUs.
(nacl): Grok as alias for 32el-unknown-nacl.
2011-10-25 Kirill Yukhin <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2011-10-24 Teresa Johnson <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2011-09-21 Jakub Jelinek <[email protected]>
* MAINTAINERS (sparc port): Remove myself.
2011-09-14 Tom de Vries <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2011-08-14 Yao Qi <[email protected]>
* configure.ac (tic6x-*-*): Remove gdb from noconfigdirs.
* configure: Regenerate.
2011-07-26 Ian Lance Taylor <[email protected]>
* configure.ac: Set have_compiler based on whether gcc directory
exists, rather than on whether gcc is in configdirs.
* configure: Rebuild.
2011-07-21 Joseph Myers <[email protected]>
* MAINTAINERS (Global Reviewers): Add self.
2011-07-20 David Edelsohn <[email protected]>
* Makefile.tpl (POSTSTAGE1_CONFIGURE_FLAGS): Add libsupc++ to
link directories.
* Makefile.in: Rebuild.
2011-07-20 Ian Lance Taylor <[email protected]>
PR bootstrap/49787
* configure.ac: Move --enable-bootstrap handling earlier in file.
If --enable-bootstrap and either --enable-build-with-cxx or
--enable-build-poststage1-with-cxx, enable C++ automatically.
* configure: Rebuild.
2011-07-19 Ian Lance Taylor <[email protected]>
* configure.ac: Add --enable-build-poststage1-with-cxx. If set,
make C++ a boot_language. Set and substitute
POSTSTAGE1_CONFIGURE_FLAGS.
* Makefile.tpl (POSTSTAGE1_CONFIGURE_FLAGS): New variable.
(STAGE[+id+]_CONFIGURE_FLAGS): Add $(POSTSTAGE1_CONFIGURE_FLAGS).
* configure, Makefile.in: Rebuild.
2011-07-19 Vladimir Makarov <[email protected]>
* MAINTAINERS (Register Allocation): Move myself from reviewers to
maintainers.
2011-07-18 Jakub Jelinek <[email protected]>
* MAINTAINERS (Global Reviewers): Add myself.
2011-07-18 Rainer Orth <[email protected]>
* configure: Regenerate.
2011-07-16 Jason Merrill <[email protected]>
* Makefile.def (language=c++): Add check-c++0x and
check-target-libmudflap-c++.
* Makefile.tpl (check-target-libmudflap-c++): New.
* Makefile.in: Regenerate.
2011-07-16 Matthias Klose <[email protected]>
* Makefile.tpl (EXTRA_CONFIGARGS_LIBJAVA): Define.
* Makefile.def (target_modules/libjava): Pass
$(EXTRA_CONFIGARGS_LIBJAVA).
* configure.ac: Pass --disable-static in EXTRA_CONFIGARGS_LIBJAVA,
if not configured with --enable-static-libjava.
* Makefile.in: Regenerate.
* configure: Likewise.
2011-07-15 Jason Merrill <[email protected]>
* Makefile.in (check-c++): Move check-gcc-c++0x after
check-target-libstdc++-v3.
2011-07-15 Bernd Schmidt <[email protected]>
* MAINTAINERS (c6x port): New entry.
2011-07-13 Jason Merrill <[email protected]>
* Makefile.in (check-gcc-c++0x): New.
(check-c++): Depend on it.
2011-07-07 Rainer Orth <[email protected]>
PR target/39150
* configure.ac (i[3456789]86-*-solaris2*): Also accept
x86_64-*-solaris2.1[0-9]*.
* configure: Regenerate.
2011-06-29 Richard Sandiford <[email protected]>
* MAINTAINERS (RTL optimizers): Add self.
2011-06-27 Gabriel Charette <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2011-06-22 Hans-Peter Nilsson <[email protected]>
PR regression/47836
PR bootstrap/23656
PR other/47733
PR bootstrap/49247
PR c/48825
* configure.ac (target_libraries): Remove target-libiberty.
Remove case-statement setting skipdirs=target-libiberty for
multiple targets. Remove checking target_configdirs and
removing target-libiberty but keeping target-libgcc if
otherwise empty.
* Makefile.def (target_modules): Don't add libiberty.
(dependencies): Remove all traces of target-libiberty.
* configure, Makefile.in: Regenerate.
2011-06-13 Walter Lee <[email protected]>
* configure.ac (tilepro-*-*) New case.
(tilegx-*-*): Likewise.
* configure: Regenerate.
2011-06-06 Jing Yu <[email protected]>
* configure.ac: Skip target-libiberty for
arm*-*-linux-androideabi.
* configure: Regenerated.
2011-06-06 Nick Clifton <[email protected]>
* config.sub: Sync from upstream.
2011-06-05 Nenad Vukicevic <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2011-06-01 Daniel Jacobowitz <[email protected]>
* MAINTAINERS: Update my email address.
2011-05-27 Nathan Froyd <[email protected]>
* MAINTAINERS (Write After Approval): Update my email address.
2011-05-11 Paul Pluzhnikov <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2011-05-08 Doug Kwan <[email protected]>
* configure.ac: Propagate LDFLAGS_FOR_TARGET.
* configure: Regenerated.
* Makefile.tpl (LDFLAGS_FOR_TARGET): Use LDFLAGS_FOR_TARGET
value from configure.
* Makefile.in: Regenerated.
2011-05-05 Joseph Myers <[email protected]>
* configure.ac (alpha*-dec-osf*, i[[3456789]]86-*-rdos*,
sh*-*-pe|mips*-*-pe|arm-wince-pe, sparc-*-sunos4*, *-*-aix*,
*-*-beos*, *-*-chorusos, *-*-dragonfly*, *-*-freebsd*, *-*-linux*
| *-*-gnu* | *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu, *-*-lynxos*,
*-*-mingw*, *-*-netbsd*, *-*-netware*, *-*-tpf*, *-*-uclinux*,
*-*-vxworks*): Disable newlib and libgloss in separate case
statement.
(i[[3456789]]86-*-linux*): Move logic allowing newlib to be built
to separate case statement.
(*-*-chorusos, *-*-dragonfly*, *-*-freebsd*, *-*-netbsd*,
*-*-netware*, *-*-tpf*, *-*-uclinux*, *-*-vxworks*,
alpha*-dec-osf*, alpha*-*-linux*, am33_2.0-*-linux*, sh-*-linux*,
sh*-*-pe|mips*-*-pe|*arm-wince-pe, arm-*-coff, arm-*-elf* |
arm*-*-eabi*, arm*-*-linux-gnueabi, arm*-*-symbianelf*, avr-*-*,
bfin-*-*, cris-*-* | crisv32-*-*, frv-*-*, i[[3456789]]86-*-coff |
i[[3456789]]86-*-elf, i[[3456789]]86-w64-mingw*,
i[[3456789]]86-*-mingw*, x86_64-*-mingw*,
i[[3456789]]86-*-interix*, i[[3456789]]86-*-beos*,
i[[3456789]]86-*-rdos*, m32r-*-*,
m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*, m68k-*-elf*, m68*-*-*
| fido-*-*, powerpc-*-aix*, powerpc-*-beos*, powerpc-*-eabi,
powerpc-*-eabi* | powerpcle-*-eabi* | powerpc-*-rtems*,
rs6000-*-lynxos*, rs6000-*-aix*, mips*-*-linux*, sparclet-*-aout*
| sparc86x-*-*, sparc-*-elf*, sparc64-*-elf*, sparclite-*-*,
sparc-*-sunos4*, sparc-*-solaris* | sparc64-*-solaris* |
sparcv9-*-solaris*, *-*-linux* | *-*-gnu* | *-*-k*bsd*-gnu |
*-*-kopensolaris*-gnu, *-*-lynxos*, *-*-*): Don't disable newlib
and libgloss in main case over targets. Remove most empty cases
in main case over targets.
* configure: Regenerate.
2011-05-04 Janis Johnson <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2011-05-04 Joseph Myers <[email protected]>
* configure.ac: Remove code setting special library locations for
hppa*64*-*-hpux11*. Remove code setting compiler for
sparc-sun-solaris2*.
* configure: Regenerate.
2011-05-04 Joseph Myers <[email protected]>
* configure.ac: Separate libgloss_dir settings from general case
over targets.
* configure: Regenerate.
2011-04-28 Joseph Myers <[email protected]>
* configure.ac (*-*-dragonfly*, *-*-freebsd*, *-*-netbsd*,
alpha*-dec-osf*, alpha*-*-linux*, alpha*-*-*, sh-*-linux*,
arm-*-elf* | arm*-*-eabi*, arm*-*-linux-gnueabi, frv-*-*): Remove
cases in libgcj-disabling case statement.
(hppa*64*-*-linux*): Set unsupported_languages instead of
disabling target-zlib.
(hppa*64*-*-*): Restrict case in libgcj-disabling case statement
to hppa*64*-*-hpux*.
(hppa*-*-*): Restrict case in libgcj-disabling case statement to
hppa*-*-hpux*.
(ia64*-*-elf*, ia64*-**-hpux*, i[[3456789]]86-*-elf,
i[[3456789]]86-*-linux*, *-*-cygwin*, i[[3456789]]86-*-interix*,
i[[3456789]]86-*-solaris2*, m32r-*-*, m68k-*-elf*, m68*-*-* |
fido-*-*, powerpc-*-eabi, powerpc-*-eabi* | powerpcle-*-eabi* |
powerpc-*-rtems*, mips*-*-linux*, mips*-*-*, sh-*-* | sh64-*-*,
sparc-*-elf*, sparc64-*-elf*, sparc-*-solaris* |
sparc64-*-solaris* | sparcv9-*-solaris*, *-*-linux* | *-*-gnu* |
*-*-k*bsd*-gnu | *-*-kopensolaris*-gnu, *-*-*): Remove cases in
libgcj-disabling case statement.
* configure: Regenerate.
2011-04-28 Joseph Myers <[email protected]>
* configure.ac: Disable Java for targets not supporting libffi.
(*-*-chorusos, *-*-kaos*, am33_2.0-*-linux*, sh*-*-pe|mips*-*-pe):
Remove cases in Java-disabling statement.
(*arm-wince-pe): Change to arm-wince-pe.
(arc-*-*, arm-*-coff, arm-*-pe*, arm-*-riscix*, avr-*-*): Remove
cases in Java-disabling statement.
(bfin-*-*): Don't disable Java again.
(c4x-*-* | tic4x-*-*, tic54x-*-*, cr16-*-*, d10v-*-*, d30v-*-*,
fr30-*-elf*, moxie-*-*, h8300*-*-*, h8500-*-*, hppa1.1-*-osf* |
hppa1.1-*-bsd*, hppa*-*-*elf* | hppa*-*-lites* | hppa*-*-openbsd*,
hppa*-*-pro*, i960-*-*, i[[3456789]]86-*-coff,
i[[3456789]]86-*-pe, i[[3456789]]86-*-sco3.2v5*,
i[[3456789]]86-*-sco*, i[[3456789]]86-*-sysv4*,
i[[3456789]]86-*-beos*, i[[3456789]]86-*-rdos*,
m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*): Remove cases in
Java-disabling statement.
(mmix-*-*): Don't disable Java again.
(mt-*-*, powerpc*-*-winnt* | powerpc*-*-pe*, powerpcle-*-solaris*,
powerpc-*-beos*, rs6000-*-lynxos*, rs6000-*-*, m68k-apollo-*,
microblaze*, mips*-sde-elf*, mips*-*-irix5*, mips*-*-bsd*,
sparclet-*-aout* | sparc86x-*-*, sparclite-*-*, sparc-*-sunos4*,
tic6x-*-*, v810-*-*, vax-*-*): Remove cases in Java-disabling
statement.
* configure: Regenerate.
2011-04-28 Joseph Myers <[email protected]>
* configure.ac: Separate cases disabling Java and Java libraries
from general case over targets.
* configure: Regenerate.
2011-04-21 Jie Zhang <[email protected]>
* MAINTAINERS: Update my email address.
2011-04-20 Easwaran Raman <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2011-04-18 Jack Howarth <[email protected]>
PR lto/48086
* configure.ac: Re-enable LTO on *-apple-darwin9*.
* configure: Regenerate.
2011-04-16 Jim Meyering <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2011-04-15 Dodji Seketeli <[email protected]>
* MAINTAINERS: Update my email address.
2011-04-13 Georg-Johann Lay <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2011-04-12 Yufeng Zhang <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2011-04-07 Stuart Henderson <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2011-04-06 Joseph Myers <[email protected]>
* configure.ac (build_tools): Remove build-byacc.
(host_libs): Remove mmalloc.
(host_tools): Remove byacc make patch prms send-pr ash bash bzip2
autoconf automake libtool diff rcs fileutils shellutils time
textutils wdiff find uudecode hello tar gzip indent recode release
sed perl gawk findutils gettext zip.
(libgcj): Remove target-qthreads.
(target_tools): Remove target-examples target-gperf.
(YACC): Don't handle building byacc.
* configure: Regenerate.
* Makefile.def (ash, autoconf, automake, bash, byacc, bzip2, diff,
dosutils, examples, fileutils, find, findutils, gawk, gettext,
gnuserv, gperf, gzip, hello, indent, libtool, make, mmalloc,
patch, perl, prms, qthreads, rcs, recode, release, sed, send-pr,
shellutils, tar, textutils, time, uudecode, wdiff, zip): Don't
handle building components.
* Makefile.in: Regenerate.
2011-04-05 Sterling Augustine <[email protected]>
* MAINTAINERS: Update my email address as Xtensa maintainer.
2011-04-05 Ralf Wildenhues <[email protected]>
* config.sub: Sync from upstream.
2011-04-01 Joseph Myers <[email protected]>
* configure.ac (avr-*-*): Add comment about why libssp is disabled.
(microblaze*): Don't disable libssp.
* configure: Regenerate.
2011-04-01 Joseph Myers <[email protected]>
* configure.ac: Remove code setting CONFIG_SHELL, config_shell and
moveifchange.
* configure: Regenerate.
* Makefile.tpl: Use @SHELL@ not @config_shell@.
* Makefile.in: Regenerate.
2011-04-01 Joseph Myers <[email protected]>
* configure.ac (*-*-sysv4*): Don't enable libgomp.
(alpha*-*-*vms*, i[[34567]]86-*-sco3.2v5*, mn10300-*-*,
powerpc-*-chorusos*, powerpc*-*-eabi*, powerpc*-*-sysv*,
powerpc*-*-kaos*, s390x-ibm-tpf*, sparc64-*-elf*, v850*-*-*,
xtensa*-*-elf*, *-*-beos*, *-*-elf*, *-*-netware*, *-*-rtems*,
*-*-sysv[[45]]*, *-*-vxworks*, *-wrs-windiss): Remove
md_exec_prefix cases.
* configure: Regenerate.
2011-04-01 Joseph Myers <[email protected]>
* configure.ac: Separate cases disabling target-libssp,
target-libiberty, target-libstdc++-v3 and Fortran from general
case over targets.
* configure: Regenerate.
2011-04-01 Joseph Myers <[email protected]>
* configure.ac (*-*-chorusos): Don't disable libgcj.
(*-*-freebsd[[12]] | *-*-freebsd[[12]].* | *-*-freebsd*aout*):
Remove case.
(*-*-kaos*): Don't disable GCC libraries, zlib or fastjar.
(arm-*-coff): Don't disable libgcj.
(arm*-*-linux-gnueabi): Remove useless assignment.
(arm-*-riscix*): Don't disable libgcj.
(bfin-*-*): Don't enable target-bsp and target-cygmon depending on
configuration.
(c4x-*-* | tic4x-*-*): Don't disable GCC libraries.
(c54x*-*-*): Remove case.
(tic54x-*-*): Don't disable GCC or GCC libraries.
(cris-*-* | crisv32-*-*): Don't handle *-*-aout. Change *-*-elf
to *.
(d10v-*-*): Don't disable GCC libraries.
(d30v-*-*): Don't disable libgcj.
(h8500-*-*): Don't disable GCC libraries.
(i960-*-*): Don't disable libgcj.
(i[[3456789]]86-*-linux*): Don't handle *-*-*libc1*.
(i[[3456789]]86-*-sco3.2v5*, i[[3456789]]86-*-sco*,
i[[3456789]]86-*-sysv4*, i[[3456789]]86-*-beos*): Don't disable
libgcj.
(m68k-*-coff*): Remove case.
(mmix-*-*): Don't disable libgloss on host.
(mn10200-*-*, mn10300-*-*): Remove cases.
(powerpc*-*-winnt* | powerpc*-*-pe*, powerpcle-*-solaris*,
powerpc-*-beos*, m68k-apollo-*, mips*-*-irix5*, mips*-*-bsd*):
Don't disable libgcj.
(romp-*-*): Remove case.
(sparclite-*-*, sparc-*-sunos4*): Don't disable libgcj.
(sparc-*-solaris2.[[0-6]] | sparc-*-solaris2.[[0-6]].*): Remove
case.
(v810-*-*): Don't disable GCC libraries.
(v850*-*-*, vax-*-vms, xtensa*-*-*): Remove cases.
(ip2k-*-*): Don't disable GCC libraries.
* configure: Regenerate.
2011-03-28 Joseph Myers <[email protected]>
* configure.ac (i[[3456789]]86-*-msdosdjgpp*): Don't disable
libffi on host.
(x86_64-*-mingw*, i[[3456789]]86-*-mingw32*): Don't disable newlib
on host.
(c54x*-*-* | tic54x-*-*): Don't disable newlib on host.
* configure: Regenerate.
2011-03-26 John Marino <[email protected]>
* configure.ac: Add support for *-*-dragonfly*
* configure: Regenerate.
2011-03-25 Joseph Myers <[email protected]>
* configure.ac (native_only): Remove.
(i[[3456789]]86-*-msdosdjgpp*): Don't disable expect dejagnu
send-pr uudecode guile gnuserv on host.
(x86_64-*-mingw*): Don't disable expect dejagnu autoconf automake
send-pr rcs guile perl texinfo libtool on host.
(i[[3456789]]86-*-mingw32*): Don't disable expect dejagnu autoconf
automake send-pr rcs guile perl texinfo libtool on host.
(*-*-cygwin*, *-*-netbsd*): Remove host cases.
(*-*-kaos*): Don't disable target-examples target-gperf on target.
(alpha*-dec-osf*): Don't disable fileutils on target.
(sh*-*-pe|mips*-*-pe|*arm-wince-pe): Don't disable target-examples
texinfo send-pr expect dejagnu on target.
(arm-*-elf* | arm*-*-eabi*, arm*-*-linux-gnueabi): Don't disable
target-qthreads on target.
(hppa*-hp-hpux11*, hppa*-*-*): Don't disable shellutils on target.
(ia64*-*-elf*, ia64*-*-*vms*): Don't disable mmalloc on target.
(i[[3456789]]86-w64-mingw*, i[[3456789]]86-*-mingw*,
x86_64-*-mingw*): Don't disable expect on target.
(*-*-cygwin*): Don't disable target-gperf on target.
(powerpc*-*-winnt* | powerpc*-*-pe*): Don't disable make expect
gnuserv on target.
(powerpcle-*-solaris*): Don't disable make expect gnuserv on
target.
* configure: Regenerate.
2011-03-25 Joseph Myers <[email protected]>
* configure.ac (target_tools): Remove target-groff.
(native_only): Remove target-groff.
(hppa*64*-*-*): Don't disable byacc.
(i[[3456789]]86-*-mingw32*): Remove commented-out noconfigdirs
setting.
(*-*-kaos*): Don't skip target-librx and target-groff.
(*-*-netware*): Don't skip target-libmudflap.
(*-*-tpf*): Don't skip target-libmudflap.
(sh*-*-pe|mips*-*-pe|*arm-wince-pe): Don't condition configured
directories on the host.
(ia64*-*-*vms*): Don't skip tix.
(sh-*-* | sh64-*-*): Don't condition skipped directories on the
host.
* configure: Regenerate.
2011-03-24 Paolo Bonzini <[email protected]>
* configure.ac: Remove references to mt-mep, mt-netware,
mt-wince.
* Makefile.def: Add all-utils soft dependencies.
* Makefile.tpl: Remove GDB_NLM_DEPS.
* configure: Regenerate.
* Makefile.in: Regenerate.
2011-03-24 Paolo Bonzini <[email protected]>
* configure.ac: Do not include mh-x86omitfp.
* configure: Regenerate.
2011-03-24 Paolo Bonzini <[email protected]>
* configure.ac: Remove empty cases.
* configure: Regenerate.
2011-03-24 Paolo Bonzini <[email protected]>
* Makefile.def: Add dependency from termcap to gdb.
* Makefile.in: Regenerate.
2011-03-24 Paolo Bonzini <[email protected]>
* configure.ac: Remove all mentions of mh-sysv4 and mh-solaris.
* configure: Regenerate.
* Makefile.def: Remove all mentions of X11_FLAGS_TO_PASS.
* Makefile.tpl: Likewise.
* Makefile.in: Regenerate.
2011-03-24 Paolo Bonzini <[email protected]>
* configure.ac: Remove all mentions of tentative_cc.
* configure: Regenerate.
2011-03-24 Joseph Myers <[email protected]>
* configure.ac (i[[3456789]]86-*-vsta, i[[3456789]]86-*-go32*,
i[[3456789]]86-*-beos*, powerpc-*-beos*, m68k-hp-hpux*,
m68k-apollo-sysv*, m68k-apollo-bsd*, m88k-dg-dgux*,
m88k-harris-cxux*, m88k-motorola-sysv*, mips*-dec-ultrix*,
mips*-nec-sysv4*, mips*-sgi-irix4*, mips*-*-sysv4*, mips*-*-sysv*,
i370-ibm-opened*, i[[3456789]]86-*-sysv5*, i[[3456789]]86-*-dgux*,
i[[3456789]]86-ncr-sysv4.3*, i[[3456789]]86-ncr-sysv4*,
i[[3456789]]86-*-sco3.2v5*, i[[3456789]]86-*-sco*,
i[[3456789]]86-*-udk*, vax-*-ultrix2*, m68k-sun-sunos*,
hppa*-*-hiux*, *-*-hiux*, rs6000-*-lynxos*, *-*-sysv4*,
*-*-rhapsody*): Remove host cases.
* configure: Regenerate.
2011-03-24 Joseph Myers <[email protected]>
* configure.ac (ppc*-*-pe): Remove host case.
(strongarm-*-coff | xscale-*-coff, strongarm-*-elf* |
xscale-*-elf*, thumb-*-coff, thumb-*-elf, thumb-*-pe, ep9312-*-elf
| ep9312-*-coff, parisc*64*-*-linux*, ppc*-*-pe): Remove target
cases.
* configure: Regenerate.
2011-03-24 Joseph Myers <[email protected]>
* config.sub: Update to version 2011-03-23.
2011-03-22 Joseph Myers <[email protected]>
* configure.ac (arm-semi-aof, crx-*-*, parisc*-*-linux*,
i370-*-opened*, i[[3456789]]86-moss-msdos | i[[3456789]]86-*-moss*
| i[[3456789]]86-*-uwin*, mcore-*-pe*): Remove empty cases.
* configure: Regenerate.
2011-03-22 Joseph Myers <[email protected]>
* MAINTAINERS (crx port, m68hc11 port): Remove. Move maintainers
to Write After Approval.
* config-ml.in: Don't handle arc-*-elf*.
* configure.ac (arc-*-*, crx-*-*, i[[3456789]]86-*-pe,
m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*, mcore-*-pe*): Don't
handle GCC libraries.
* configure: Regenerate.
2011-03-21 Rainer Orth <[email protected]>
PR bootstrap/48120:
* configure.ac (pwllib): Use LIBS instead of LDFLAGS.
Add -lstdc++ -lm to LIBS.
* configure: Regenerate.
2011-03-18 David Edelsohn <[email protected]>
* config.guess: Update to version 2011-02-02
* config.sub: Update to version 2011-02-24
2011-03-16 Jack Howarth <[email protected]>
PR lto/48086
* configure.ac: Re-enable LTO on *-apple-darwin9.
* configure: Regenerate.
2011-03-13 Jack Howarth <[email protected]>
PR lto/48086
* configure.ac: Disable LTO on darwin due to an assembler change in
Xcode 3.2.6/4.0 that limits the total number of sections/segments to
under 256.
* configure: Regenerate.
2011-03-11 Chen Liqin <[email protected]>
* MAINTAINERS: Update myself as score backend maintainer, update my e-mail address.
2011-03-09 Xuepeng Guo <[email protected]>
* MAINTAINERS: Update my e-mail address.
2011-03-06 Joey Ye <[email protected]>
* MAINTAINERS: Update my e-mail address.
2011-03-02 Sebastian Pop <[email protected]>
* configure.ac: Adjust test of with_ppl.
* configure: Regenerated.
2011-03-02 Kai Tietz <[email protected]>
* MAINTAINERS: Adjust my e-mail address.
2011-03-02 Sebastian Pop <[email protected]>
* configure.ac: Add -lpwl to ppllibs.
* configure: Regenerated.
2011-03-02 Sebastian Pop <[email protected]>
* config/cloog.m4: Add -lisl to clooglibs.
* configure: Regenerated.
2011-02-24 Ramana Radhakrishnan <[email protected]>
* MAINTAINERS (CPU Port maintainers): Add self.
2011-02-16 Rainer Orth <[email protected]>
* MAINTAINERS: Add myself as testsuite maintainer.
2011-02-15 Mike Stump <[email protected]>
* MAINTAINERS: Add myself as testsuite maintainer.
2011-02-13 Ralf Wildenhues <[email protected]>
Import from Libtool and gnulib:
2011-01-27 Gerald Pfeifer <[email protected]>
Prepare for supporting FreeBSD 10.
* config.rpath: Remove handling of freebsd1* which soon would
match FreeBSD 10.0.
2011-01-20 Gerald Pfeifer <[email protected]> (tiny change)
Remove support for FreeBSD 1.x.
* libtool.m4 (_LT_LINKER_SHLIBS)
(_LT_SYS_DYNAMIC_LINKER): Remove handling of freebsd1* which
soon would incorrectly match FreeBSD 10.0.
2011-02-12 Ralf Wildenhues <[email protected]>
PR binutils/12283
* move-if-change: Import version from gnulib.
2011-02-12 Alexandre Oliva <[email protected]>
PR lto/47225
* Makefile.def (lto-plugin): Double dash for enable-shared.
(configure-gcc): Depend on all-lto-plugin.
* Makefile.in: Rebuilt.
2011-02-11 Ralf Wildenhues <[email protected]>
* configure.ac: Remove extra bracket.
* configure: Regenerate.
2011-02-08 Tobias Burnus <[email protected]>
* MAINTAINERS: Add myself as libquadmath maintainer.
2011-02-08 Thomas Schwinge <[email protected]>
* MAINTAINERS: Update my email address.
2011-02-07 Joseph Myers <[email protected]>
* MAINTAINERS (option handling): Add self.
2011-02-06 Kai Tietz <[email protected]>
PR lto/47225
* Makefile.def: Add dependency for install-gcc
on install-lto-plugin.
* Makfile.in: Regenerated
2011-02-01 Sebastien Bourdeauducq <[email protected]>
* MAINTAINERS (CPU Port Maintainers): Add myself.
2011-01-31 Alexandre Oliva <[email protected]>
PR libgcj/44341
* configure.ac: Discard --with-* flags for host when configuring
target libraries for cross build.
* configure: Rebuilt.
2011-01-25 Sebastian Pop <[email protected]>
* MAINTAINERS (linear loop transforms): Removed.
2011-01-25 Jakub Jelinek <[email protected]>
* configure.ac: If with_ppl is no, move setting with_cloog=no
after CLOOG_REQUESTED check.
* configure: Regenerated.
2011-01-25 Sebastian Pop <[email protected]>
* configure.ac: Call AC_MSG_ERROR when PPL 0.11 is not present and
CLooG has been requested.
* configure: Regenerated.
2011-01-25 Sebastian Pop <[email protected]>
* configure: Regenerated.
* configure.ac: Check for version 0.11 (or later revision) of PPL.
2011-01-25 Tobias Grosser <[email protected]>
* configure: Regenerated.
* configure.ac: Use CLOOG_CHECK_VERSION(0,16,1).
2011-01-21 Andreas Schwab <[email protected]>
* configure.ac: Use AS_HELP_STRING throughout.
* configure: Regenerate.
2011-01-18 Jie Zhang <[email protected]>
* configure.ac (bfin-*-*): Remove gdb from noconfigdirs.
* configure: Regenerate.
2011-01-13 John David Anglin <[email protected]>
* ltmain.sh (relink): Use absolute path when hardcoding with -L.
2011-01-13 Joel Brobecker <[email protected]>
* configure.ac: Remove readline, mmalloc, and gdb from noconfigdirs
for ia64-hpux.
* configure: Regenerate.
2011-01-07 Jan Hubicka <[email protected]>
PR lto/47225
* Makefile.in: Regenerate.
* Makefile.def (lto-plugin): Always pass enable-shared to the plugin
configure.
2011-01-07 Jan Hubicka <[email protected]>
* Makefile.in: Regenerate.
* Makefile.def (gcc host module) and soft dependency on lto-plugin
and configure dependency on lto-plugin configure.
(lto-plugin module): Remove dependency on GCC; add dependency on
liniberty.
2011-01-07 William Schmidt <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2010-12-23 Hariharan Sandanagobalane <[email protected]>
* configure: Regenerate.
2010-12-22 Hariharan Sandanagobalane <[email protected]>
* configure.ac: (picochip): Disable libiberty.
2010-12-14 Kaushik Phatak <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2010-12-10 Ian Lance Taylor <[email protected]>
PR bootstrap/46819
* configure.ac: For --disable-libgcj clear libgcj_saved.
* configure: Rebuild.
2010-12-10 Tobias Burnus <[email protected]>
PR fortran/46540
* configure.ac: Add --disable-libquadmath and
--disable-libquadmath-support.
* configure: Regenerate.
2010-12-03 Ian Lance Taylor <[email protected]>
* MAINTAINERS: Add myself as libgo maintainer.
2010-12-03 Hans-Peter Nilsson <[email protected]>
PR libffi/46792
* configure.ac (cris-*-elf, crisv32-*-elf): Disable target-libffi.
* configure: Regenerate.
2010-12-02 Ian Lance Taylor <[email protected]>
* configure.ac: Always set default for poststage1_ldflags to
-static-libstdc++ -static-libgcc.
2010-11-29 Andreas Schwab <[email protected]>
* configure.ac: Move comment to remove extra space in last argument
of GCC_TARGET_TOOL.
2010-11-26 Alexandre Oliva <[email protected]>
PR other/46026
* configure.ac (CXX_FOR_TARGET): Add -funconfigured-libstdc++-v3.
* Makefile.def (CXX_FOR_TARGET): Removed from flags_to_pass.
* Makefile.tpl (CXX_FOR_TARGET_FLAG_TO_PASS): New.
(BASE_FLAGS_TO_PASS): Use it.
* configure: Rebuilt.
* Makefile.in: Rebuilt.
2010-11-23 H.J. Lu <[email protected]>
PR binutils/12258