forked from Rust-GCC/gccrs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
22005 lines (13811 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-06 Indu Bhagat <indu.bhagat@oracle.com>
* MAINTAINERS: Add myself.
2023-03-22 Tobias Burnus <tobias@codesourcery.com>
* MAINTAINERS: Add myself as OpenMP and libgomp maintainer.
2023-03-10 Arsen Arsenović <arsen@aarsen.me>
* MAINTAINERS (Write After Approval): Add myself.
2023-02-16 Martin Liska <mliska@suse.cz>
* MAINTAINERS: I'm stepping down from my positions.
2023-01-10 Philip Herron <herron.philip@googlemail.com>
* MAINTAINERS: Add Philip Herron as Rust front-end maintainer
2023-01-06 Clément Chigot <chigot@adacore.com>
* configure.ac: Skip GMP and MPFR when --disable-gdb is
provided.
* configure: Regenerate.
2023-01-04 Gaius Mulley <gaiusmod2@gmail.com>
* MAINTAINERS: Add Gaius Mulley as Modula-2 front-end maintainer.
2022-12-31 Iain Sandoe <iain@sandoe.co.uk>
* Makefile.def: Do not build shared libffi.
* Makefile.in: Regenerate.
2022-12-21 Andrew Pinski <apinski@marvell.com>
* 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 <gaiusmod2@gmail.com>
* 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 <philip.herron@embecosm.com>
* Makefile.def: Add Rust language.
* Makefile.in: Regenerate via autogen.
2022-12-09 Martin Liska <mliska@suse.cz>
* MAINTAINERS: Fix spacing.
2022-12-07 Arthur Cohen <arthur.cohen@embecosm.com>
* MAINTAINERS: Add Arthur Cohen as Rust front-end maintainer.
2022-12-07 Iain Sandoe <iain@sandoe.co.uk>
* 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 <weimin.pan@oracle.com>
* 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 <polacek@redhat.com>
Revert:
2022-11-23 Marek Polacek <polacek@redhat.com>
* 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 <polacek@redhat.com>
* 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 <mliska@suse.cz>
Revert:
2022-11-09 Martin Liska <mliska@suse.cz>
* 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 <mliska@suse.cz>
Revert:
2022-11-09 Martin Liska <mliska@suse.cz>
* doc/baseconf.py: Port to GCC sources.
2022-11-14 Martin Liska <mliska@suse.cz>
Revert:
2022-11-14 Martin Liska <mliska@suse.cz>
* configure: Regenerate.
* configure.ac: Support Sphinx based documentation.
2022-11-14 Martin Liska <mliska@suse.cz>
Revert:
2022-11-09 Martin Liska <mliska@suse.cz>
* doc/baseconf.py: Simplify BUGURL and VERSION_PACKAGE,
provide a default.
2022-11-14 Martin Liska <mliska@suse.cz>
Revert:
2022-11-09 Martin Liska <mliska@suse.cz>
* 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 <mliska@suse.cz>
Revert:
2022-11-09 Martin Liska <mliska@suse.cz>
* configure.ac: Use new install URL.
* configure: Regenerate.
2022-11-14 Martin Liska <mliska@suse.cz>
Revert:
2022-11-10 Arsen Arsenović <arsen@aarsen.me>
* 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 <mliska@suse.cz>
Revert:
2022-11-10 Martin Liska <mliska@suse.cz>
* doc/baseconf.py: Modernize by using pathlib.
2022-11-14 Martin Liska <mliska@suse.cz>
Revert:
2022-11-11 Martin Liska <mliska@suse.cz>
* doc/Makefile: Disable -j auto.
2022-11-14 Martin Liska <mliska@suse.cz>
Revert:
2022-11-11 Martin Liska <mliska@suse.cz>
* doc/Makefile: Update comment.
2022-11-14 Martin Liska <mliska@suse.cz>
Revert:
2022-11-11 Martin Liska <mliska@suse.cz>
* doc/indices-and-tables.rst: Rename Indexes to Indices.
2022-11-14 Martin Liska <mliska@suse.cz>
Revert:
2022-11-13 Martin Liska <mliska@suse.cz>
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 <mliska@suse.cz>
Revert:
2022-11-13 Philipp Tomsich <philipp.tomsich@vrull.eu>
* doc/contrib.rst: Update Jeff Law's email address.
2022-11-13 Philipp Tomsich <philipp.tomsich@vrull.eu>
* doc/contrib.rst: Update Jeff Law's email address.
2022-11-13 Martin Liska <mliska@suse.cz>
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 <mliska@suse.cz>
* doc/indices-and-tables.rst: Rename Indexes to Indices.
2022-11-11 Martin Liska <mliska@suse.cz>
* doc/Makefile: Update comment.
2022-11-11 Martin Liska <mliska@suse.cz>
* doc/Makefile: Disable -j auto.
2022-11-10 Martin Liska <mliska@suse.cz>
* doc/baseconf.py: Modernize by using pathlib.
2022-11-10 Arsen Arsenović <arsen@aarsen.me>
* 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 <mliska@suse.cz>
* configure.ac: Use new install URL.
* configure: Regenerate.
2022-11-09 Martin Liska <mliska@suse.cz>
* 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 <mliska@suse.cz>
* doc/baseconf.py: Simplify BUGURL and VERSION_PACKAGE,
provide a default.
2022-11-09 Martin Liska <mliska@suse.cz>
* configure: Regenerate.
* configure.ac: Support Sphinx based documentation.
2022-11-09 Martin Liska <mliska@suse.cz>
* doc/baseconf.py: Port to GCC sources.
2022-11-09 Martin Liska <mliska@suse.cz>
* 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 <thomas@codesourcery.com>
* Makefile.def: Remove module 'liboffloadmic'.
* Makefile.in: Regenerate.
* configure.ac: Remove 'liboffloadmic' handling.
* configure: Regenerate.
2022-10-31 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
* MAINTAINERS: Update email address.
2022-10-21 Дилян Палаузов <dilyan.palauzov@aegee.org>
* configure.ac: Don't configure readline if --with-system-readline is
used.
* configure: Re-generate.
2022-10-12 Cui,Lili <lili.cui@intel.com>
* MAINTAINERS (Write After Approval): Add myself.
2022-10-11 Olivier Hainque <hainque@adacore.com>
* 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 <hainque@adacore.com>
* 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 <jlaw@ventanamicro.com>
* MAINTAINERS: Update my email address and DCO entry.
2022-09-23 Paul-Antoine Arras <pa@codesourcery.com>
* MAINTAINERS (Write After Approval): Add myself.
2022-09-15 Torbjörn SVENSSON <torbjorn.svensson@foss.st.com>
* MAINTAINERS (Write After Approval): Add myself.
2022-09-07 Jeff Law <jeffreyalaw@gmail.com>
* MAINTAINERS: Update my email address.
2022-09-07 Tom de Vries <tdevries@suse.de>
* 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 <cooper.qu@linux.alibaba.com>
* MAINTAINERS: Update c-sky port maintainers' emails.
2022-08-31 Martin Liska <mliska@suse.cz>
* configure: Regenerate.
* configure.ac: Delete hpux9 and hpux10.
2022-08-18 Sergei Trofimovich <siarheit@google.com>
* 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 <siarheit@google.com>
* Makefile.in: Regenerate.
2022-08-04 Eugene Rozenfeld <erozen@microsoft.com>
* MAINTAINERS: Add myself as AutoFDO maintainer.
2022-08-01 Roger Sayle <roger@nextmovesoftware.com>
Arnaud Charlet <charlet@adacore.com>
* configure: Regenerate.
2022-07-31 Roger Sayle <roger@nextmovesoftware.com>
PR bootstrap/106472
* Makefile.def (dependencies): Make configure-target-libgo depend
upon all-target-libbacktrace.
2022-07-27 David Faust <david.faust@oracle.com>
* MAINTAINERS: Add myself as reviewer for CTF and BTF.
2022-07-27 Richard Biener <rguenther@suse.de>
* MAINTAINERS (Roger Sayle): Update e-mail address.
2022-07-21 Sam Feifer <sfeifer@redhat.com>
* MAINTAINERS (Write After Approval): Add myself.
2022-07-21 Marc Poulhiès <poulhies@adacore.com>
* MAINTAINERS: Add myself as Ada front end co-maintainer.
2022-07-19 Alexander Monakov <amonakov@ispras.ru>
* .gitignore: Do not ignore config.h.
2022-07-15 Andrew Carlotti <andrew.carlotti@arm.com>
* MAINTAINERS: Add myself to Write After Approval.
2022-07-04 Martin Liska <mliska@suse.cz>
* MAINTAINERS: fix sorting of names
2022-07-03 Immad Mir <mirimmad17@gmail.com>
* MAINTAINERS: add myself.
2022-07-03 Immad Mir <mirimmad17@gmail.com>
* MAINTAINERS: Add myself to write after approval and DCO.
2022-07-02 Tim Lange <mail@tim-lange.me>
* MAINTAINERS: Add myself.
2022-07-01 Haochen Jiang <haochen.jiang@intel.com>
* MAINTAINERS (Write After Approval): Add myself.
2022-06-30 Cui,Lili <lili.cui@intel.com>
Revert:
2022-06-30 Cui,Lili <lili.cui@intel.com>
* MAINTAINERS (Write After Approval): Add myself.
2022-06-30 Cui,Lili <lili.cui@intel.com>
* MAINTAINERS (Write After Approval): Add myself.
2022-06-28 Alexandre Oliva <oliva@adacore.com>
* Makefile.tpl (HOST_EXPORTS): Add TFLAGS to GCC_FOR_TARGET.
(EXTRA_GCC_FLAGS): Likewise.
* Makefile.in: Rebuilt.
2022-06-28 konglin1 <lingling.kong@intel.com>
* MAINTAINERS (Write After Approval): Add myself.
2022-06-27 Tom de Vries <tdevries@suse.de>
* configure.ac: Build libiberty pic variant for gdbserver.
* configure: Regenerate.
2022-06-26 Iain Sandoe <iain@sandoe.co.uk>
* configure: Regenerate.
* configure.ac: Correct use of $host.
2022-06-25 Jeff Law <jeffreyalaw@gmail.com>
* MAINTAINERS: Remove tilegx and tilepro entries.
* configure.ac: Remove tilegx and tilepro stanzas.
* configure: Rebuilt.
2022-05-28 Bruce Korb <bkorb@gnu.org>
* .gitignore: Ignore vim swap files
2022-05-13 Surya Kumari Jangala <jskumari@linux.ibm.com>
* MAINTAINERS: Add myself to write after approval.
2022-05-11 Kewen Lin <linkw@linux.ibm.com>
* MAINTAINERS: Remove myself from DCO section.
2022-05-09 Xi Ruoyao <xry111@xry111.site>
* MAINTAINERS: Update my email address.
2022-05-09 Clément Chigot <chigot@adacore.com>
* MAINTAINERS: Update my email address.
2022-05-05 Kewen Lin <linkw@linux.ibm.com>
* MAINTAINERS: Add myself as PowerPC port co-maintainer and to DCO
section.
2022-04-19 Richard Henderson <rth@gcc.gnu.org>
* MAINTAINERS: Update my email address.
2022-04-01 Qian Jianhua <qianjh@fujitsu.com>
* MAINTAINERS: Update my email address.
2022-03-29 Chenghua Xu <xuchenghua@loongson.cn>
* MAINTAINERS: (CPU Port Maintainers): Add myself and
Lulu as LoongArch port maintainer.
2022-03-29 Chenghua Xu <xuchenghua@loongson.cn>
Lulu Cheng <chenglulu@loongson.cn>
* configure.ac: Add LoongArch tuples.
* configure: Regenerate.
2022-03-28 Tom Tromey <tromey@adacore.com>
* configure.ac: Remove --with-mpfr-dir and --with-gmp-dir.
* configure: Rebuild.
2022-03-24 Bill Schmidt <bill.schmidt@gmail.com>
* MAINTAINERS: Change my information.
2022-03-16 Chung-Ju Wu <jasonwucj@gmail.com>
* MAINTAINERS: Add myself to DCO section.
2022-03-14 Jonathan Wakely <jwakely@redhat.com>
* configure.ac: Fix incorrect option in comment.
* configure: Regenerate.
2022-03-09 Hans-Peter Nilsson <hp@axis.com>
* Makefile.def (dependencies): Make configure-sim depend on
all-readline.
* Makefile.in: Regenerate.
2022-02-22 Christophe Lyon <christophe.lyon@foss.st.com>
* MAINTAINERS (Write After Approval): Update my e-mail address.
2022-02-08 Ulrich Weigand <ulrich.weigand@de.ibm.com>
* MAINTAINERS: Remove Hartmut Penner as s390 maintainer.
2022-01-31 Ed Smith-Rowland <esmithrowland@gmail.com>
* MAINTAINERS: Update my email and add myself to the DCO list.
2022-01-25 Thomas Schwinge <thomas@codesourcery.com>
Revert:
2021-09-16 Andrew Pinski <apinski@marvell.com>
PR bootstrap/67102
* Makefile.def: Have configure-target-libffi depend on
all-target-libstdc++-v3.
* Makefile.in: Regenerate.
2022-01-22 Jakub Jelinek <jakub@redhat.com>
PR other/104181
* build.log: Remove.
2022-01-20 Martin Liska <mliska@suse.cz>
* MAINTAINERS: Adjust email address based on IRC request.
2022-01-18 Xionghu Luo <luoxhu@linux.ibm.com>
* MAINTAINERS: Update my email address.
2022-01-17 Martin Liska <mliska@suse.cz>
* MAINTAINERS: Rename .c names to .cc.
2022-01-13 Jakub Jelinek <jakub@redhat.com>
* Makefile.am: Remove.
2022-01-11 Thomas Koenig <tkoenig@gcc.gnu.org>
* Makefile.am: New file.
2022-01-11 Martin Liska <mliska@suse.cz>
* MAINTAINERS: Sort 2 names.
2022-01-10 Martin Liska <mliska@suse.cz>
* MAINTAINERS: Fix obvious issues with sorting.
2022-01-07 liuhongt <hongtao.liu@intel.com>
* build.log: New file.
2022-01-05 Nathan Sidwell <nathan@acm.org>
* MAINTAINERS: Add DCO entry. Sort that list.
2022-01-04 Gaius Mulley <gaiusmod2@gmail.com>
* MAINTAINERS: Change of email address in both DCO and
Write After Approval list.
2021-12-21 Iain Buclaw <ibuclaw@gdcproject.org>
* configure: Regenerate.
2021-12-21 Martin Liska <mliska@suse.cz>
* config.sub: Change mode back to 755.
2021-12-17 Martin Liska <mliska@suse.cz>
* config.sub: Sync from master.
2021-12-17 Martin Liska <mliska@suse.cz>
Revert:
2021-12-16 Matthias Seidel <mseidel@apache.org>
* config.sub: Fix typo.
2021-12-16 Matthias Seidel <mseidel@apache.org>
* config.sub: Fix typo.
2021-12-16 H.J. Lu <hjl.tools@gmail.com>
Revert:
2021-12-15 H.J. Lu <hjl.tools@gmail.com>
* 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 <hjl.tools@gmail.com>
* 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 <hjl.tools@gmail.com>
* 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 <poulhies@adacore.com>
* MAINTAINERS: Add myself to write after approval.
2021-12-06 Navid Rahimi <navidrahimi@microsoft.com>
* MAINTAINERS: Adding myself.
2021-12-02 Pekka Seppänen <pexu@gcc.mail.kapsi.fi>
* configure: Regenerate.
* configure.ac: For CPP_FOR_BUILD use $(CC_FOR_BUILD) -E instead of
$(CPP).
2021-11-30 Iain Buclaw <ibuclaw@gdcproject.org>
* 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 <uecker@gcc.gnu.org>
* MAINTAINERS: Add myself to DCO section and update email address.
2021-11-16 Iain Sandoe <iain@sandoe.co.uk>
* configure: Regenerate.
* configure.ac: Ensure that PIC (shared) defaults are set
correctly for Darwin.
2021-11-16 Jim Wilson <jim.wilson.gcc@gmail.com>
* MAINTAINERS: Update my address.
2021-11-12 Alan Modra <amodra@gmail.com>
* Makefile.def (configure-opcodes): Depend on configure-bfd.
* Makefile.in: Regenerate.
2021-11-03 Maciej W. Rozycki <macro@embecosm.com>
* MAINTAINERS: Clarify the policy WRT the Write After Approval
list.
2021-11-02 Andrew Burgess <andrew.burgess@embecosm.com>
* MAINTAINERS (Reviewers, arc): Remove my entry.
(Write After Approval): Add an entry for myself.
2021-10-28 Richard Purdie <richard.purdie@linuxfoundation.org>
* 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 <jeffreyalaw@gmail.com>
* MAINTAINERS: Fix up Maciej's entries.
2021-10-26 Maciej W. Rozycki <macro@embecosm.com>
* MAINTAINERS (CPU Port Maintainers): Add myself as a VAX port
maintainer.
2021-10-22 Eric Gallager <egallager@gcc.gnu.org>
PR other/102663
* Makefile.def: Handle install-dvi target.
* Makefile.tpl: Likewise.
* Makefile.in: Regenerate.
2021-10-19 Clément Chigot <clement.chigot@atos.net>
* MAINTAINERS: Add myself for write after approval.
2021-10-12 Eric Gallager <egallager@gcc.gnu.org>
* Makefile.def: Mark libcody, libdecnumber,
c++tools, libgcc, and libobjc as missing TAGS
targets.
* Makefile.in: Regenerate.
2021-10-07 Siddhesh Poyarekar <siddhesh@gotplt.org>
* MAINTAINERS: Add myself to DCO section and update email
address.
2021-09-29 Jonathan Wakely <jwakely@redhat.com>
* MAINTAINERS: Add myself to DCO section.
2021-09-28 Andrew Burgess <andrew.burgess@embecosm.com>
* configure: Regenerate.
* configure.ac (skipdirs): Add the contents of target_configdirs if
we are not building gcc.
2021-09-24 Andrew Burgess <andrew.burgess@embecosm.com>
* Makefile.def: Back-port commits ba4d88ad892f and
755ba58ebef0 from binutils-gdb repository.
* Makefile.in: Regenerated.
2021-09-20 Harald Anlauf <anlauf@gmx.de>
* MAINTAINERS (Reviewers): Add myself as Fortran reviewer.
2021-09-17 Iain Sandoe <iain@sandoe.co.uk>
* Makefile.def: Add a jit check target for the jit
language.
* Makefile.in: Regenerate.
2021-09-16 Andrew Pinski <apinski@marvell.com>
PR bootstrap/67102
* Makefile.def: Have configure-target-libffi depend on
all-target-libstdc++-v3.
* Makefile.in: Regenerate.
2021-09-10 Petter Tomner <tomner@kth.se>
* MAINTAINERS: Me added to DCO and write after approval
2021-09-01 YunQiang Su <syq@debian.org>
* MAINTAINERS: Add myself for write after approval.
2021-08-31 Andrew Burgess <andrew.burgess@embecosm.com>
* Makefile.def: Add all-gdb dependency on all-libbacktrace.
* Makefile.in: Regenerate.
2021-08-21 Dragan Mladjenovic <Dragan.Mladjenovic@syrmia.com>
* MAINTAINERS: Add myself for write after approval.
2021-08-18 Iain Sandoe <iain@sandoe.co.uk>
* Makefile.in: Regenerate.
* Makefile.tpl: Make the state of the configured host
shared flag available to makefile fragements.
2021-08-09 Hongyu Wang <hongyu.wang@intel.com>
* MAINTAINERS (Write After Approval): Add myself.
2021-07-20 Richard Earnshaw <rearnsha@arm.com>
* .dir-locals.el (bug-reference-url-format): Use https.
2021-07-20 Richard Earnshaw <rearnsha@arm.com>
* .dir-locals.el (c-mode): Change fill-column to 79.
2021-07-15 Trevor Saunders <tbsaunde@tbsaunde.org>
* MAINTAINERS: Add myself to DCO section.
2021-07-09 Iain Sandoe <iain@sandoe.co.uk>
* configure: Regenerate.
* configure.ac: Adjust cases for which it is necessary to
include the Darwin host config fragment.
2021-07-06 Gaius Mulley <gaius.mulley@southwales.ac.uk>
* MAINTAINERS: Add myself for write after approval and DCO.
2021-07-05 Iain Sandoe <iain@sandoe.co.uk>
* 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 <arsenic@sourceware.org>
* MAINTAINERS: Add myself for write after approval.
2021-06-30 Xi Ruoyao <xry111@mengyan1223.wang>
* MAINTAINERS (Write After Approval): Add myself.
2021-06-25 Matthias Kretz <m.kretz@gsi.de>
* MAINTAINERS: Add myself for write after approval and DCO
2021-06-24 prathamesh.kulkarni <prathamesh.kulkarni@linaro.org>
* .gitignore: Add entry for cscope.out.
2021-06-22 liuhongt <hongtao.liu@intel.com>
* MAINTAINERS: Remove my Write After Approval entry.
2021-06-21 liuhongt <hongtao.liu@intel.com>
* MAINTAINERS: Add myself as maintainer of the i386 vector
extensions.
2021-06-18 Antoni Boucher <bouanto@zoho.com>
* MAINTAINERS (Write After Approval): Add myself.
2021-06-17 Aldy Hernandez <aldyh@redhat.com>
* MAINTAINERS (Various Maintainers): Add Andrew and myself
as *vrp and ranger maintainers.
2021-06-05 Jeff Law <jeffreyalaw@gmail.com>
* MAINTAINERS: Adjust my entry in the DCO section so that it does
not trigger testsuite failures.
2021-06-05 Jeff Law <jeffreyalaw@gmail.com>
* MAINTAINERS: Add myself to DCO section with both email addresses.
2021-06-03 Jason Merrill <jason@redhat.com>
* MAINTAINERS: Add DCO version number.
2021-06-02 Jason Merrill <jason@redhat.com>
* MAINTAINERS: Add DCO section.
2021-05-31 Indu Bhagat <indu.bhagat@oracle.com>
* MAINTAINERS (Write After Approval): Add myself.
2021-05-29 Mike Frysinger <vapier@gentoo.org>