forked from embecosm/gcc-for-llvm-testing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
22016 lines (13818 loc) · 653 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
2023-04-26 Release Manager
* GCC 13.1.0 released.
2023-04-18 Jakub Jelinek <[email protected]>
* configure.ac: For --enable-languages= mentioning explicitly
rust emit an error, if included in all etc., silently disable
rust.
* configure: Regenerated.
2023-04-06 Indu Bhagat <[email protected]>
* MAINTAINERS: Add myself.
2023-03-22 Tobias Burnus <[email protected]>
* MAINTAINERS: Add myself as OpenMP and libgomp maintainer.
2023-03-10 Arsen Arsenović <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2023-02-16 Martin Liska <[email protected]>
* MAINTAINERS: I'm stepping down from my positions.
2023-01-10 Philip Herron <[email protected]>
* MAINTAINERS: Add Philip Herron as Rust front-end maintainer
2023-01-06 Clément Chigot <[email protected]>
* configure.ac: Skip GMP and MPFR when --disable-gdb is
provided.
* configure: Regenerate.
2023-01-04 Gaius Mulley <[email protected]>
* MAINTAINERS: Add Gaius Mulley as Modula-2 front-end maintainer.
2022-12-31 Iain Sandoe <[email protected]>
* Makefile.def: Do not build shared libffi.
* Makefile.in: Regenerate.
2022-12-21 Andrew Pinski <[email protected]>
* Makefile.def: Add configure-gdb dependencies
on all-gmp and all-mpfr.
* configure.ac: Split out MPC checking from MPFR.
Require GMP and MPFR if the gdb directory exist.
* Makefile.in: Regenerate.
* configure: Regenerate.
2022-12-14 Gaius Mulley <[email protected]>
* configure.ac (target_libraries): Add target-libgm2.
Add NCN_STRICT_CHECK_TARGET_TOOLS entry for gm2.
Add GCC_TARGET_TOOL entry for gm2.
(compare_exclusions): Add gcc/m2/gm2-compiler/M2Version,
gcc/m2/gm2-compiler-boot/SYSTEM and gcc/m2/gm2version.
* Makefile.def (target_modules): Add libgm2.
(flags_to_pass): Add GM2_FOR_TARGET, GM2FLAGS_FOR_TARGET.
(dependencies): Add all-target-libgm2 and on=all-target-libatomic.
(languages): Add entry for language=m2 with gcc-check-target=check-m2
and lib-check-target=check-target-libgm2.
* Makefile.tpl (BUILD_EXPORTS): Add definition for GM2 and GM2FLAGS.
(HOST_EXPORTS): Add definition for GM2.
(BASE_TARGET_EXPORTS): Add definition for GM2.
(GM2_FOR_BUILD): Defined.
(GM2FLAGS): Defined.
(GM2_FOR_TARGET): Defined.
(GM2FLAGS_FOR_TARGET): Defined.
(EXTRA_HOST_FLAGS): Defined.
(POSTSTAGE1_FLAGS_TO_PASS): Add GM2 and GM2_FOR_BUILD.
(EXTRA_TARGET_FLAGS): Add GM2 and GM2FLAGS.
(EXTRA_GCC_FLAGS): Add GM2_FOR_TARGET.
* configure: Rebuilt.
* Makefile.in: Rebuilt.
2022-12-13 Philip Herron <[email protected]>
* Makefile.def: Add Rust language.
* Makefile.in: Regenerate via autogen.
2022-12-09 Martin Liska <[email protected]>
* MAINTAINERS: Fix spacing.
2022-12-07 Arthur Cohen <[email protected]>
* MAINTAINERS: Add Arthur Cohen as Rust front-end maintainer.
2022-12-07 Iain Sandoe <[email protected]>
* Makefile.def: Pass host_libs_picflag to host dependent library
configures.
* Makefile.in: Regenerate.
* configure: Regenerate.
* configure.ac (host_libs_picflag): New configure variable set to
'--with-pic' when building 'host_shared'.
2022-11-25 Weimin Pan <[email protected]>
* Makefile.def: Add libsframe as new module with its dependencies.
* Makefile.in: Regenerated.
* configure.ac: Add libsframe to host_libs.
* configure: Regenerated.
2022-11-23 Marek Polacek <[email protected]>
Revert:
2022-11-23 Marek Polacek <[email protected]>
* Makefile.def: Pass $(PICFLAG) to AM_CFLAGS for gmp, mpfr, mpc, and
isl.
* Makefile.in: Regenerate.
* Makefile.tpl: Set PICFLAG.
* configure.ac (--enable-host-pie): New check. Set PICFLAG after this
check.
* configure: Regenerate.
2022-11-23 Marek Polacek <[email protected]>
* Makefile.def: Pass $(PICFLAG) to AM_CFLAGS for gmp, mpfr, mpc, and
isl.
* Makefile.in: Regenerate.
* Makefile.tpl: Set PICFLAG.
* configure.ac (--enable-host-pie): New check. Set PICFLAG after this
check.
* configure: Regenerate.
2022-11-14 Martin Liska <[email protected]>
Revert:
2022-11-09 Martin Liska <[email protected]>
* doc/Makefile: New file.
* doc/_static/custom.css: New file.
* doc/baseconf.py: New file.
* doc/bsd.rst: New file.
* doc/contrib.rst: New file.
* doc/contribute.rst: New file.
* doc/cppdiropts.rst: New file.
* doc/cppenv.rst: New file.
* doc/cppopts.rst: New file.
* doc/cppwarnopts.rst: New file.
* doc/favicon.ico: New file.
* doc/funding.rst: New file.
* doc/gcc_sphinx.py: New file.
* doc/gnu.rst: New file.
* doc/gnu_free_documentation_license.rst: New file.
* doc/gpl-3.0.rst: New file.
* doc/indices-and-tables.rst: New file.
* doc/lgpl-2.1.rst: New file.
* doc/logo.pdf: New file.
* doc/logo.svg: New file.
* doc/md.rst: New file.
* doc/requirements.txt: New file.
2022-11-14 Martin Liska <[email protected]>
Revert:
2022-11-09 Martin Liska <[email protected]>
* doc/baseconf.py: Port to GCC sources.
2022-11-14 Martin Liska <[email protected]>
Revert:
2022-11-14 Martin Liska <[email protected]>
* configure: Regenerate.
* configure.ac: Support Sphinx based documentation.
2022-11-14 Martin Liska <[email protected]>
Revert:
2022-11-09 Martin Liska <[email protected]>
* doc/baseconf.py: Simplify BUGURL and VERSION_PACKAGE,
provide a default.
2022-11-14 Martin Liska <[email protected]>
Revert:
2022-11-09 Martin Liska <[email protected]>
* doc/bsd.rst:
Add trailing newline.
* doc/contrib.rst:
Add trailing newline.
* doc/contribute.rst:
Add trailing newline.
* doc/cppdiropts.rst:
Add trailing newline.
* doc/cppenv.rst:
Add trailing newline.
* doc/cppopts.rst:
Add trailing newline.
* doc/cppwarnopts.rst:
Add trailing newline.
* doc/funding.rst:
Add trailing newline.
* doc/gnu.rst:
Add trailing newline.
* doc/gnu_free_documentation_license.rst:
Add trailing newline.
* doc/gpl-3.0.rst:
Add trailing newline.
* doc/indices-and-tables.rst:
Add trailing newline.
* doc/lgpl-2.1.rst:
Add trailing newline.
* doc/md.rst:
Add trailing newline.
2022-11-14 Martin Liska <[email protected]>
Revert:
2022-11-09 Martin Liska <[email protected]>
* configure.ac: Use new install URL.
* configure: Regenerate.
2022-11-14 Martin Liska <[email protected]>
Revert:
2022-11-10 Arsen Arsenović <[email protected]>
* doc/baseconf.py: Inject dirname(__file__)/'modules' to path
instead of just ``.''.
* doc/gcc_sphinx.py: Moved to...
* doc/modules/gcc_sphinx.py: ...here.
2022-11-14 Martin Liska <[email protected]>
Revert:
2022-11-10 Martin Liska <[email protected]>
* doc/baseconf.py: Modernize by using pathlib.
2022-11-14 Martin Liska <[email protected]>
Revert:
2022-11-11 Martin Liska <[email protected]>
* doc/Makefile: Disable -j auto.
2022-11-14 Martin Liska <[email protected]>
Revert:
2022-11-11 Martin Liska <[email protected]>
* doc/Makefile: Update comment.
2022-11-14 Martin Liska <[email protected]>
Revert:
2022-11-11 Martin Liska <[email protected]>
* doc/indices-and-tables.rst: Rename Indexes to Indices.
2022-11-14 Martin Liska <[email protected]>
Revert:
2022-11-13 Martin Liska <[email protected]>
PR web/107643
* doc/baseconf.py: Set include_todo tag if INCLUDE_TODO env
is set.
* doc/indices-and-tables.rst: Use include_todo tag.
2022-11-14 Martin Liska <[email protected]>
Revert:
2022-11-13 Philipp Tomsich <[email protected]>
* doc/contrib.rst: Update Jeff Law's email address.
2022-11-13 Philipp Tomsich <[email protected]>
* doc/contrib.rst: Update Jeff Law's email address.
2022-11-13 Martin Liska <[email protected]>
PR web/107643
* doc/baseconf.py: Set include_todo tag if INCLUDE_TODO env
is set.
* doc/indices-and-tables.rst: Use include_todo tag.
2022-11-11 Martin Liska <[email protected]>
* doc/indices-and-tables.rst: Rename Indexes to Indices.
2022-11-11 Martin Liska <[email protected]>
* doc/Makefile: Update comment.
2022-11-11 Martin Liska <[email protected]>
* doc/Makefile: Disable -j auto.
2022-11-10 Martin Liska <[email protected]>
* doc/baseconf.py: Modernize by using pathlib.
2022-11-10 Arsen Arsenović <[email protected]>
* doc/baseconf.py: Inject dirname(__file__)/'modules' to path
instead of just ``.''.
* doc/gcc_sphinx.py: Moved to...
* doc/modules/gcc_sphinx.py: ...here.
2022-11-09 Martin Liska <[email protected]>
* configure.ac: Use new install URL.
* configure: Regenerate.
2022-11-09 Martin Liska <[email protected]>
* doc/bsd.rst:
Add trailing newline.
* doc/contrib.rst:
Add trailing newline.
* doc/contribute.rst:
Add trailing newline.
* doc/cppdiropts.rst:
Add trailing newline.
* doc/cppenv.rst:
Add trailing newline.
* doc/cppopts.rst:
Add trailing newline.
* doc/cppwarnopts.rst:
Add trailing newline.
* doc/funding.rst:
Add trailing newline.
* doc/gnu.rst:
Add trailing newline.
* doc/gnu_free_documentation_license.rst:
Add trailing newline.
* doc/gpl-3.0.rst:
Add trailing newline.
* doc/indices-and-tables.rst:
Add trailing newline.
* doc/lgpl-2.1.rst:
Add trailing newline.
* doc/md.rst:
Add trailing newline.
2022-11-09 Martin Liska <[email protected]>
* doc/baseconf.py: Simplify BUGURL and VERSION_PACKAGE,
provide a default.
2022-11-09 Martin Liska <[email protected]>
* configure: Regenerate.
* configure.ac: Support Sphinx based documentation.
2022-11-09 Martin Liska <[email protected]>
* doc/baseconf.py: Port to GCC sources.
2022-11-09 Martin Liska <[email protected]>
* doc/Makefile: New file.
* doc/_static/custom.css: New file.
* doc/baseconf.py: New file.
* doc/bsd.rst: New file.
* doc/contrib.rst: New file.
* doc/contribute.rst: New file.
* doc/cppdiropts.rst: New file.
* doc/cppenv.rst: New file.
* doc/cppopts.rst: New file.
* doc/cppwarnopts.rst: New file.
* doc/favicon.ico: New file.
* doc/funding.rst: New file.
* doc/gcc_sphinx.py: New file.
* doc/gnu.rst: New file.
* doc/gnu_free_documentation_license.rst: New file.
* doc/gpl-3.0.rst: New file.
* doc/indices-and-tables.rst: New file.
* doc/lgpl-2.1.rst: New file.
* doc/logo.pdf: New file.
* doc/logo.svg: New file.
* doc/md.rst: New file.
* doc/requirements.txt: New file.
2022-11-04 Thomas Schwinge <[email protected]>
* Makefile.def: Remove module 'liboffloadmic'.
* Makefile.in: Regenerate.
* configure.ac: Remove 'liboffloadmic' handling.
* configure: Regenerate.
2022-10-31 Ramana Radhakrishnan <[email protected]>
* MAINTAINERS: Update email address.
2022-10-21 Дилян Палаузов <[email protected]>
* configure.ac: Don't configure readline if --with-system-readline is
used.
* configure: Re-generate.
2022-10-12 Cui,Lili <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2022-10-11 Olivier Hainque <[email protected]>
* libtool.m4 (*vxworks*): When enable_shared, set dynamic_linker
and friends for rtp !large. Assume the linker has the required
abilities and set lt_cv_deplibs_check_method.
2022-09-30 Olivier Hainque <[email protected]>
* configure.ac (*vxworks*): If enable_shared is not
set, set to "no" and add --disable-shared to target and
host_configargs.
* configure: Regenerate.
2022-09-26 Jeff Law <[email protected]>
* MAINTAINERS: Update my email address and DCO entry.
2022-09-23 Paul-Antoine Arras <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2022-09-15 Torbjörn SVENSSON <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2022-09-07 Jeff Law <[email protected]>
* MAINTAINERS: Update my email address.
2022-09-07 Tom de Vries <[email protected]>
* configure.ac: Set extra_host_libiberty_configure_flags and
extra_host_zlib_configure_flags in separate case statements.
* configure: Regenerate.
2022-09-06 Xianmiao Qu <[email protected]>
* MAINTAINERS: Update c-sky port maintainers' emails.
2022-08-31 Martin Liska <[email protected]>
* configure: Regenerate.
* configure.ac: Delete hpux9 and hpux10.
2022-08-18 Sergei Trofimovich <[email protected]>
* Makefile.def: Drop libelf module and gcc-configure dependency
on it.
* Makefile.in: Regenerate with 'autogen Makefile.def'.
* Makefile.tpl (HOST_EXPORTS): Drop unused LIBELFLIBS and
LIBELFINC.
* configure: Regenrate.
* configure.ac (host_libs): Drop unused libelf.
2022-08-18 Sergei Trofimovich <[email protected]>
* Makefile.in: Regenerate.
2022-08-04 Eugene Rozenfeld <[email protected]>
* MAINTAINERS: Add myself as AutoFDO maintainer.
2022-08-01 Roger Sayle <[email protected]>
Arnaud Charlet <[email protected]>
* configure: Regenerate.
2022-07-31 Roger Sayle <[email protected]>
PR bootstrap/106472
* Makefile.def (dependencies): Make configure-target-libgo depend
upon all-target-libbacktrace.
2022-07-27 David Faust <[email protected]>
* MAINTAINERS: Add myself as reviewer for CTF and BTF.
2022-07-27 Richard Biener <[email protected]>
* MAINTAINERS (Roger Sayle): Update e-mail address.
2022-07-21 Sam Feifer <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2022-07-21 Marc Poulhiès <[email protected]>
* MAINTAINERS: Add myself as Ada front end co-maintainer.
2022-07-19 Alexander Monakov <[email protected]>
* .gitignore: Do not ignore config.h.
2022-07-15 Andrew Carlotti <[email protected]>
* MAINTAINERS: Add myself to Write After Approval.
2022-07-04 Martin Liska <[email protected]>
* MAINTAINERS: fix sorting of names
2022-07-03 Immad Mir <[email protected]>
* MAINTAINERS: add myself.
2022-07-03 Immad Mir <[email protected]>
* MAINTAINERS: Add myself to write after approval and DCO.
2022-07-02 Tim Lange <[email protected]>
* MAINTAINERS: Add myself.
2022-07-01 Haochen Jiang <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2022-06-30 Cui,Lili <[email protected]>
Revert:
2022-06-30 Cui,Lili <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2022-06-30 Cui,Lili <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2022-06-28 Alexandre Oliva <[email protected]>
* Makefile.tpl (HOST_EXPORTS): Add TFLAGS to GCC_FOR_TARGET.
(EXTRA_GCC_FLAGS): Likewise.
* Makefile.in: Rebuilt.
2022-06-28 konglin1 <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2022-06-27 Tom de Vries <[email protected]>
* configure.ac: Build libiberty pic variant for gdbserver.
* configure: Regenerate.
2022-06-26 Iain Sandoe <[email protected]>
* configure: Regenerate.
* configure.ac: Correct use of $host.
2022-06-25 Jeff Law <[email protected]>
* MAINTAINERS: Remove tilegx and tilepro entries.
* configure.ac: Remove tilegx and tilepro stanzas.
* configure: Rebuilt.
2022-05-28 Bruce Korb <[email protected]>
* .gitignore: Ignore vim swap files
2022-05-13 Surya Kumari Jangala <[email protected]>
* MAINTAINERS: Add myself to write after approval.
2022-05-11 Kewen Lin <[email protected]>
* MAINTAINERS: Remove myself from DCO section.
2022-05-09 Xi Ruoyao <[email protected]>
* MAINTAINERS: Update my email address.
2022-05-09 Clément Chigot <[email protected]>
* MAINTAINERS: Update my email address.
2022-05-05 Kewen Lin <[email protected]>
* MAINTAINERS: Add myself as PowerPC port co-maintainer and to DCO
section.
2022-04-19 Richard Henderson <[email protected]>
* MAINTAINERS: Update my email address.
2022-04-01 Qian Jianhua <[email protected]>
* MAINTAINERS: Update my email address.
2022-03-29 Chenghua Xu <[email protected]>
* MAINTAINERS: (CPU Port Maintainers): Add myself and
Lulu as LoongArch port maintainer.
2022-03-29 Chenghua Xu <[email protected]>
Lulu Cheng <[email protected]>
* configure.ac: Add LoongArch tuples.
* configure: Regenerate.
2022-03-28 Tom Tromey <[email protected]>
* configure.ac: Remove --with-mpfr-dir and --with-gmp-dir.
* configure: Rebuild.
2022-03-24 Bill Schmidt <[email protected]>
* MAINTAINERS: Change my information.
2022-03-16 Chung-Ju Wu <[email protected]>
* MAINTAINERS: Add myself to DCO section.
2022-03-14 Jonathan Wakely <[email protected]>
* configure.ac: Fix incorrect option in comment.
* configure: Regenerate.
2022-03-09 Hans-Peter Nilsson <[email protected]>
* Makefile.def (dependencies): Make configure-sim depend on
all-readline.
* Makefile.in: Regenerate.
2022-02-22 Christophe Lyon <[email protected]>
* MAINTAINERS (Write After Approval): Update my e-mail address.
2022-02-08 Ulrich Weigand <[email protected]>
* MAINTAINERS: Remove Hartmut Penner as s390 maintainer.
2022-01-31 Ed Smith-Rowland <[email protected]>
* MAINTAINERS: Update my email and add myself to the DCO list.
2022-01-25 Thomas Schwinge <[email protected]>
Revert:
2021-09-16 Andrew Pinski <[email protected]>
PR bootstrap/67102
* Makefile.def: Have configure-target-libffi depend on
all-target-libstdc++-v3.
* Makefile.in: Regenerate.
2022-01-22 Jakub Jelinek <[email protected]>
PR other/104181
* build.log: Remove.
2022-01-20 Martin Liska <[email protected]>
* MAINTAINERS: Adjust email address based on IRC request.
2022-01-18 Xionghu Luo <[email protected]>
* MAINTAINERS: Update my email address.
2022-01-17 Martin Liska <[email protected]>
* MAINTAINERS: Rename .c names to .cc.
2022-01-13 Jakub Jelinek <[email protected]>
* Makefile.am: Remove.
2022-01-11 Thomas Koenig <[email protected]>
* Makefile.am: New file.
2022-01-11 Martin Liska <[email protected]>
* MAINTAINERS: Sort 2 names.
2022-01-10 Martin Liska <[email protected]>
* MAINTAINERS: Fix obvious issues with sorting.
2022-01-07 liuhongt <[email protected]>
* build.log: New file.
2022-01-05 Nathan Sidwell <[email protected]>
* MAINTAINERS: Add DCO entry. Sort that list.
2022-01-04 Gaius Mulley <[email protected]>
* MAINTAINERS: Change of email address in both DCO and
Write After Approval list.
2021-12-21 Iain Buclaw <[email protected]>
* configure: Regenerate.
2021-12-21 Martin Liska <[email protected]>
* config.sub: Change mode back to 755.
2021-12-17 Martin Liska <[email protected]>
* config.sub: Sync from master.
2021-12-17 Martin Liska <[email protected]>
Revert:
2021-12-16 Matthias Seidel <[email protected]>
* config.sub: Fix typo.
2021-12-16 Matthias Seidel <[email protected]>
* config.sub: Fix typo.
2021-12-16 H.J. Lu <[email protected]>
Revert:
2021-12-15 H.J. Lu <[email protected]>
* Makefile.tpl (AR): Add @AR_PLUGIN_OPTION@
(RANLIB): Add @RANLIB_PLUGIN_OPTION@.
* configure.ac: Include config/gcc-plugin.m4.
AC_SUBST AR_PLUGIN_OPTION and RANLIB_PLUGIN_OPTION.
* libtool.m4 (_LT_CMD_OLD_ARCHIVE): Pass --plugin to AR and
RANLIB if possible.
* Makefile.in: Regenerated.
* configure: Likewise.
2021-12-15 H.J. Lu <[email protected]>
* Makefile.tpl (BUILD_CFLAGS): New.
(CFLAGS): Append $(BUILD_CFLAGS).
(CXXFLAGS): Likewise.
(PGO_BUILD_GEN_FLAGS_TO_PASS): New.
(PGO_BUILD_TRAINING_CFLAGS): Likewise.
(PGO_BUILD_TRAINING_CXXFLAGS): Likewise.
(PGO_BUILD_TRAINING_FLAGS_TO_PASS): Likewise.
(PGO_BUILD_TRAINING_MFLAGS): Likewise.
(PGO_BUILD_USE_FLAGS_TO_PASS): Likewise.
(PGO-TRAINING-TARGETS): Likewise.
(PGO_BUILD_TRAINING): Likewise.
(all): Add '+' to the command line for recursive make. Support
the PGO build.
* configure.ac: Add --enable-pgo-build[=lto].
AC_SUBST PGO_BUILD_GEN_CFLAGS, PGO_BUILD_USE_CFLAGS and
PGO_BUILD_LTO_CFLAGS. Enable the PGO build in Makefile.
* Makefile.in: Regenerated.
* configure: Likewise.
2021-12-15 H.J. Lu <[email protected]>
* Makefile.tpl (AR): Add @AR_PLUGIN_OPTION@
(RANLIB): Add @RANLIB_PLUGIN_OPTION@.
* configure.ac: Include config/gcc-plugin.m4.
AC_SUBST AR_PLUGIN_OPTION and RANLIB_PLUGIN_OPTION.
* libtool.m4 (_LT_CMD_OLD_ARCHIVE): Pass --plugin to AR and
RANLIB if possible.
* Makefile.in: Regenerated.
* configure: Likewise.
2021-12-14 Marc Poulhiès <[email protected]>
* MAINTAINERS: Add myself to write after approval.
2021-12-06 Navid Rahimi <[email protected]>
* MAINTAINERS: Adding myself.
2021-12-02 Pekka Seppänen <[email protected]>
* configure: Regenerate.
* configure.ac: For CPP_FOR_BUILD use $(CC_FOR_BUILD) -E instead of
$(CPP).
2021-11-30 Iain Buclaw <[email protected]>
* Makefile.def: Add bootstrap to libbacktrace, libphobos, zlib, and
libatomic.
* Makefile.in: Regenerate.
* Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Fix command for GDC.
(STAGE1_CONFIGURE_FLAGS): Add --with-libphobos-druntime-only if
target-libphobos-bootstrap.
(STAGE2_CONFIGURE_FLAGS): Likewise.
* configure: Regenerate.
* configure.ac: Add support for bootstrapping D front-end.
2021-11-16 Martin Uecker <[email protected]>
* MAINTAINERS: Add myself to DCO section and update email address.
2021-11-16 Iain Sandoe <[email protected]>
* configure: Regenerate.
* configure.ac: Ensure that PIC (shared) defaults are set
correctly for Darwin.
2021-11-16 Jim Wilson <[email protected]>
* MAINTAINERS: Update my address.
2021-11-12 Alan Modra <[email protected]>
* Makefile.def (configure-opcodes): Depend on configure-bfd.
* Makefile.in: Regenerate.
2021-11-03 Maciej W. Rozycki <[email protected]>
* MAINTAINERS: Clarify the policy WRT the Write After Approval
list.
2021-11-02 Andrew Burgess <[email protected]>
* MAINTAINERS (Reviewers, arc): Remove my entry.
(Write After Approval): Add an entry for myself.
2021-10-28 Richard Purdie <[email protected]>
* Makefile.tpl: Add CPP_FOR_BUILD and CPPFLAGS_FOR_BUILD support
* Makefile.in: Regenerate.
* configure: Regenerate.
* configure.ac: Add CPP_FOR_BUILD and CPPFLAGS_FOR_BUILD support
2021-10-26 Jeff Law <[email protected]>
* MAINTAINERS: Fix up Maciej's entries.
2021-10-26 Maciej W. Rozycki <[email protected]>
* MAINTAINERS (CPU Port Maintainers): Add myself as a VAX port
maintainer.
2021-10-22 Eric Gallager <[email protected]>
PR other/102663
* Makefile.def: Handle install-dvi target.
* Makefile.tpl: Likewise.
* Makefile.in: Regenerate.
2021-10-19 Clément Chigot <[email protected]>
* MAINTAINERS: Add myself for write after approval.
2021-10-12 Eric Gallager <[email protected]>
* Makefile.def: Mark libcody, libdecnumber,
c++tools, libgcc, and libobjc as missing TAGS
targets.
* Makefile.in: Regenerate.
2021-10-07 Siddhesh Poyarekar <[email protected]>
* MAINTAINERS: Add myself to DCO section and update email
address.
2021-09-29 Jonathan Wakely <[email protected]>
* MAINTAINERS: Add myself to DCO section.
2021-09-28 Andrew Burgess <[email protected]>
* configure: Regenerate.
* configure.ac (skipdirs): Add the contents of target_configdirs if
we are not building gcc.
2021-09-24 Andrew Burgess <[email protected]>
* Makefile.def: Back-port commits ba4d88ad892f and
755ba58ebef0 from binutils-gdb repository.
* Makefile.in: Regenerated.
2021-09-20 Harald Anlauf <[email protected]>
* MAINTAINERS (Reviewers): Add myself as Fortran reviewer.
2021-09-17 Iain Sandoe <[email protected]>
* Makefile.def: Add a jit check target for the jit
language.
* Makefile.in: Regenerate.
2021-09-16 Andrew Pinski <[email protected]>
PR bootstrap/67102
* Makefile.def: Have configure-target-libffi depend on
all-target-libstdc++-v3.
* Makefile.in: Regenerate.
2021-09-10 Petter Tomner <[email protected]>
* MAINTAINERS: Me added to DCO and write after approval
2021-09-01 YunQiang Su <[email protected]>
* MAINTAINERS: Add myself for write after approval.
2021-08-31 Andrew Burgess <[email protected]>
* Makefile.def: Add all-gdb dependency on all-libbacktrace.
* Makefile.in: Regenerate.
2021-08-21 Dragan Mladjenovic <[email protected]>
* MAINTAINERS: Add myself for write after approval.
2021-08-18 Iain Sandoe <[email protected]>
* Makefile.in: Regenerate.
* Makefile.tpl: Make the state of the configured host
shared flag available to makefile fragements.
2021-08-09 Hongyu Wang <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2021-07-20 Richard Earnshaw <[email protected]>
* .dir-locals.el (bug-reference-url-format): Use https.
2021-07-20 Richard Earnshaw <[email protected]>
* .dir-locals.el (c-mode): Change fill-column to 79.
2021-07-15 Trevor Saunders <[email protected]>
* MAINTAINERS: Add myself to DCO section.
2021-07-09 Iain Sandoe <[email protected]>
* configure: Regenerate.
* configure.ac: Adjust cases for which it is necessary to
include the Darwin host config fragment.
2021-07-06 Gaius Mulley <[email protected]>
* MAINTAINERS: Add myself for write after approval and DCO.
2021-07-05 Iain Sandoe <[email protected]>
* Makefile.def: Add dsymutil defs.
* Makefile.in: Regenerated.
* Makefile.tpl: Add dsymutil to flags.
* configure: Regenerated.
* configure.ac: Add dsymutil to target and build recipes.
2021-07-01 Ankur Saini <[email protected]>
* MAINTAINERS: Add myself for write after approval.
2021-06-30 Xi Ruoyao <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2021-06-25 Matthias Kretz <[email protected]>
* MAINTAINERS: Add myself for write after approval and DCO
2021-06-24 prathamesh.kulkarni <[email protected]>
* .gitignore: Add entry for cscope.out.
2021-06-22 liuhongt <[email protected]>
* MAINTAINERS: Remove my Write After Approval entry.
2021-06-21 liuhongt <[email protected]>
* MAINTAINERS: Add myself as maintainer of the i386 vector
extensions.
2021-06-18 Antoni Boucher <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2021-06-17 Aldy Hernandez <[email protected]>
* MAINTAINERS (Various Maintainers): Add Andrew and myself
as *vrp and ranger maintainers.
2021-06-05 Jeff Law <[email protected]>
* MAINTAINERS: Adjust my entry in the DCO section so that it does
not trigger testsuite failures.
2021-06-05 Jeff Law <[email protected]>
* MAINTAINERS: Add myself to DCO section with both email addresses.
2021-06-03 Jason Merrill <[email protected]>
* MAINTAINERS: Add DCO version number.