forked from gcc-mirror/gcc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog
More file actions
23356 lines (14611 loc) · 689 KB
/
ChangeLog
File metadata and controls
23356 lines (14611 loc) · 689 KB
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
2026-01-22 Alejandro Colomar <alx@kernel.org>
* MAINTAINERS: Add myself to Write After Approval and DCO
2026-01-19 Stefan Schulze Frielinghaus <stefansf@gcc.gnu.org>
* configure: Regenerate.
* configure.ac: Deprecate -m31.
2026-01-14 Vineet Gupta <vineet.gupta@linux.dev>
* MAINTAINERS: Update to my linux.dev email.
2026-01-14 Jason Merrill <jason@redhat.com>
* MAINTAINERS: Update Paolo Carlini email address.
2026-01-14 Daniel Barboza <daniel.barboza@oss.qualcomm.com>
* MAINTAINERS: Add myself to write after approval.
2026-01-10 Jakub Jelinek <jakub@redhat.com>
PR ada/123490
* config-ml.in: Restore ml_subdir being empty instead of /.
for the primary multilib.
2026-01-09 Ben Boeckel <ben.boeckel@kitware.com>
* config-ml.in: Replace gcc-bugs@ with bug reporting link.
* symlink-tree: Replace gcc-bugs@ with bug reporting link.
2026-01-08 Aleksandar Rakic <aleksandar.rakic@htecgroup.com>
* config-ml.in: Use with_multi_buildlist to build multidirs.
Skip configuration for subdir returned by
--print-multi-directory.
* configure: Regenerate.
* configure.ac: Source target-specific configuration fragment
for GCC. Pass through with_multi_buildlist to host and target.
2026-01-08 Karl Meakin <karl.meakin@arm.com>
* MAINTAINERS: Add myself to write after approval.
2026-01-08 Pietro Monteiro <pietro@sociotechnical.xyz>
* .forgejo/workflows/build-containers.yaml: New file.
2026-01-06 Andrew Pinski <andrew.pinski@oss.qualcomm.com>
* MAINTAINERS: Add myself as global reviewer.
2026-01-06 supers1ngular <supers1ngular@baylibre.com>
* MAINTAINERS: Add my bugzilla account.
2026-01-05 Filip Kastl <fkastl@suse.cz>
* MAINTAINERS: Put <jeffrey.law@oss.qualcomm.com> before
<jeffreyalaw@gmail.com>.
2025-12-30 Jose E. Marchesi <jose.marchesi@oracle.com>
* Makefile.def (flags_to_pass): Rename GA68, GA68FLAGS,
GA68_FOR_TARGET, GA68FLAGS_FOR_TARGET to A68, A68FLAGS,
A68_FOR_TARGET and A68FLAGS_FOR_TARGET.
* Makefile.tpl: Use A68, A68FLAGS, A68_FOR_BUILD and
A68_FOR_TARGET rather than GA68, GA68FLAGS, GA68_FOR_BUILD and
GA68_FOR_TARGET.
* Makefile.in: Regenerate.
* configure.ac: Set A68_FOR_BUILD rather than GA68_FOR_BUILD, and
invoke ACX_PROG_A68 rather than ACX_PROG_GA68.
Subst A68_FOR_BUILD rather than GA68_FOR_BUILD.
Subst A68 and A68FLAGS rather than GA68 and GA68FLAGS.
Set A68_FOR_TARGET rather than GA68_FOR_TARGET.
* configure: Regenerate.
* config-ml.in: Handle A68FLAGS and define A68 in sub-configures.
2025-12-29 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* libtool.m4: Cherry-pick libtool commit
9196966580f6853a31187a7a3c7e7ff36ef08982.
2025-12-19 Lewis Hyatt <lhyatt@gmail.com>
PR bootstrap/12407
* configure.ac: Add feature to parsing of --enable-languages so that
a language can be disabled by prefixing it with a caret.
* configure: Regenerate.
2025-12-17 Jeff Law <jlaw@ventanamicro.com>
* MAINTAINERS: Use my oss.qualcomm.com address.
2025-12-15 Jose E. Marchesi <jose.marchesi@oracle.com>
* MAINTAINERS: Add myself to DCO section.
2025-12-12 Pietro Monteiro <pietro@sociotechnical.xyz>
* MAINTAINERS: add myself to write after approval
2025-12-11 Jeff Law <jlaw@ventanamicro.com>
* MAINTAINERS: Update entries for contributors formerly at
Ventana Microsystems to refer to Qualcomm instead.
2025-12-11 supers1ngular <supers1ngular@baylibre.com>
* MAINTAINERS: add myself to write after approval
2025-12-11 Pengxuan Zheng <pengxuan.zheng@oss.qualcomm.com>
* MAINTAINERS (Pengxuan Zheng): Update email address.
2025-12-08 Nathan Myers <ncm@cantrip.org>
* MAINTAINERS: add ncm
2025-11-30 Jose E. Marchesi <jose.marchesi@oracle.com>
* MAINTAINERS: Add Algol 68 subsystems.
* SECURITY.txt: add libga68 to list of libraries.
2025-11-20 Claudio Bantaloukas <claudio.bantaloukas@arm.com>
* MAINTAINERS: Add myself in forge integration maintainers
2025-11-20 Josef Melcr <josef.melcr@suse.com>
* MAINTAINERS: Update my email address.
2025-11-20 Arsen Arsenović <aarsenovic@baylibre.com>
* MAINTAINERS: Update my email.
2025-11-19 Martin Liska <martin.liska@hey.com>
* MAINTAINERS: Add myself to write after approval (DSO).
2025-11-16 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* configure.ac (md_exec_prefix): Don't set on Solaris.
* configure: Regenerate.
2025-11-03 Sam James <sam@gentoo.org>
* configure: Regenerate.
2025-10-30 Robin Dapp <rdapp@ventanamicro.com>
* MAINTAINERS: Add myself to reviewers/maintainers.
2025-10-28 Richard Earnshaw <rearnsha@arm.com>
* .editorconfig: Explicitly set tab_width whenever a
config rule has indent_style = tab and indent_size != 8.
2025-10-28 Artemiy Volkov <artemiy.volkov@arm.com>
* MAINTAINERS: Add myself to write after approval.
2025-10-27 Jennifer Schmitz <jschmitz@nvidia.com>
* MAINTAINERS: Change email address.
2025-10-24 Thomas Schwinge <tschwinge@baylibre.com>
PR driver/81358
* Makefile.tpl: Move generation of dependencies for libatomic out
of loop over 'target_modules'.
* Makefile.in: Regenerate.
2025-10-22 Josef Melcr <jmelcr02@gmail.com>
* MAINTAINERS: Update my contact information.
2025-10-20 Tamar Christina <tamar.christina@arm.com>
* MAINTAINERS (Various Maintainers): Add myself for the vectorizer.
2025-10-20 Christophe Lyon <christophe.lyon@linaro.org>
* .forgejo/workflows/sanity-checks.yaml: New file.
2025-10-20 Richard Biener <rguenther@suse.de>
* MAINTAINERS (auto-vectorizer): Change attribution to
vectorizer (+ tree-if-conv).
2025-10-15 Basil Milanich <bmilanich@gmail.com>
* Makefile.tpl (distclean): Remove extraenous semicolon.
* Makefile.in: Rebuilt.
2025-10-11 Ben Boeckel <ben.boeckel@kitware.com>
* config-ml.in: Update patch email address.
* symlink-tree: Ditto.
2025-10-09 Prathamesh Kulkarni <prathameshk@nvidia.com>
Matthew Malcolmson <mmalcolmson@nvidia.com>
PR driver/81358
* Makefile.def: Add no_atomic=true for libraries that don't depend on
libatomic.
* Makefile.tpl: Export TARGET_CONFIGDIRS and create rule to
add dependencies for libatomic.
* configure.ac: Add libatomic to bootstrap_target_libs.
* Makefile.in: Regenerate.
* configure: Regenerate.
2025-10-02 H.J. Lu <hjl.tools@gmail.com>
* Makefile.in: Regenerated.
* configure: Likewise.
* Makefile.tpl: Synced from binutils-gdb.
* configure.ac: Likewise.
* libtool.m4: Likewise.
2025-10-01 Richard Earnshaw <rearnsha@arm.com>
* .editorconfig: Unify the GCC and GDB/binutils root config.
2025-09-23 Richard Earnshaw <rearnsha@arm.com>
* .editorconfig: Fix glob patterns.
2025-09-22 Jonathan Wakely <jwakely@redhat.com>
* .editorconfig: New file.
2025-09-04 Wilco Dijkstra <wilco.dijkstra@arm.com>
* MAINTAINERS (Reviewers): Add myself for the aarch64 port.
2025-09-03 Alice Carlotti <alice.carlotti@arm.com>
* MAINTAINERS: Add myself as an aarch64 port reviewer.
2025-08-28 Yuao Ma <c8ef@outlook.com>
* MAINTAINERS: add myself to write after approval
2025-08-21 Richard Sandiford <rdsandiford@googlemail.com>
* MAINTAINERS: Update my email address and stand down as AArch64
maintainer.
2025-08-18 Spencer Abson <spencer.abson@student.manchester.ac.uk>
* MAINTAINERS: Update my email address.
2025-08-17 Filip Kastl <fkastl@suse.cz>
* MAINTAINERS: Switch around Andrew Pinski's entries in
Contributing under DCO.
2025-08-16 Mikael Pettersson <mikpelinux@gmail.com>
* MAINTAINERS: Add myself to write after approval.
2025-08-14 Avinash Jayakar <avinashd@linux.ibm.com>
* MAINTAINERS: Add myself to write after approval.
2025-08-08 Andrew Pinski <andrew.pinski@oss.qualcomm.com>
* MAINTAINERS (Andrew Pinski): Update email address.
2025-08-07 Pengfei Li <Pengfei.Li2@arm.com>
* MAINTAINERS: Add myself.
2025-08-05 Thomas Schwinge <tschwinge@baylibre.com>
* .gitignore: Remove 'libgrust/*/target/'.
2025-08-01 Luis Machado <luis.machado.foss@gmail.com>
* MAINTAINERS: Update my e-mail address.
2025-07-22 Patrick Palka <ppalka@redhat.com>
* MAINTAINERS: Add myself as C++ front end reviewer.
2025-07-07 Tamar Christina <tamar.christina@arm.com>
* MAINTAINERS: Add myself to AArch64 pot.
2025-07-04 Andrew Pinski <quic_apinski@quicinc.com>
* MAINTAINERS: Replace tabs with spaces.
2025-07-04 Alex Coplan <alex.coplan@arm.com>
* MAINTAINERS (Reviewers): Add myself for the aarch64 port.
2025-07-03 Andrew Pinski <quic_apinski@quicinc.com>
* MAINTAINERS: Add myself as an aarch64 port reviewer.
2025-06-22 Nicolas Boulenguez <nicolas@debian.org>
PR ada/120106
* Makefile.tpl: Add GNATMAKE_FOR_BUILD to {HOST,BASE_TARGET}_EXPORTS
* Makefile.in: Regenerate.
* configure.ac: Set the default and substitute the variable.
* configure: Regenerate.
2025-06-09 Kugan Vivekanandarajah <kvivekananda@nvidia.com>
* configure.ac: Special case cpu_type for x86_64.
* configure: Regenerate.
2025-06-09 Peter Bergner <bergner@tenstorrent.com>
* MAINTAINERS: Update my email address and add myself to DCO.
2025-05-28 Kugan Vivekanandarajah <kvivekananda@nvidia.com>
* Makefile.def: Fix typo in cpu_type
* Makefile.tpl: Add cpu_type
2025-05-26 Kugan Vivekanandarajah <kvivekananda@nvidia.com>
* Makefile.def: AUTO_PROFILE based on cpu_type.
* Makefile.in: Likewise.
* configure: Regenerate.
* configure.ac: Set autofdo_target.
2025-05-23 Kishan Parmar <kishan@linux.ibm.com>
* MAINTAINERS: Add myself to write after approval.
2025-05-23 Dhruv Chawla <dhruvc@nvidia.com>
* MAINTAINERS: Add myself to write after approval and DCO.
2025-05-21 Stephanos Ioannidis <root@stephanos.io>
* configure.ac: Always add pre-installed heades to search path.
* configure: Regenerate.
2025-05-16 Spencer Abson <spencer.abson@arm.com>
* MAINTAINERS: Add myself to write after approval.
2025-05-14 Richard Earnshaw <rearnsha@arm.com>
* MAINTAINERS: Marcus Shawcroft has resigned from the project.
2025-04-28 Kwok Cheung Yeung <kcyeung@baylibre.com>
* MAINTAINERS (kcy): Add gcc.gnu.org username.
2025-04-22 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
PR cobol/119217
* configure.ac: Restrict cobol to aarch64-*-linux*,
x86_64-*-linux*.
Fix indentation.
* configure: Regenerate.
2025-04-16 Waffl3x <waffl3x@baylibre.com>
* MAINTAINERS: Add myself.
2025-04-02 Iain Sandoe <iain@sandoe.co.uk>
* configure: Regenerate.
* configure.ac: Use -B instead of -L to specifiy the C++ runtime
paths on Darwin.
2025-03-31 Alice Carlotti <alice.carlotti@arm.com>
* MAINTAINERS: Update my name.
2025-03-28 Richard Biener <rguenther@suse.de>
PR bootstrap/119513
* configure.ac (compare_exclusions): Add gcc/cobol/parse\$(objext).
* configure: Regenerated.
2025-03-25 Iain Sandoe <iain@sandoe.co.uk>
PR cobol/119244
* Makefile.def: libgcobol configure depends on libquadmath build.
* Makefile.in: Regenerate.
2025-03-23 Iain Sandoe <iain@sandoe.co.uk>
PR libitm/88319
* Makefile.in: Regenerate.
* Makefile.tpl: Add CXX_FOR_TARGET to NORMAL_TARGET_EXPORTS.
2025-03-23 James K. Lowden <jklowden@cobolworx.com>
* MAINTAINERS: Add myself.
2025-03-17 Arthur Cohen <arthur.cohen@embecosm.com>
* .gitignore: Add libgrust target folders to the ignore list.
2025-03-14 Thomas Schwinge <thomas@codesourcery.com>
PR target/92713
PR target/101544
* configure.ac [GCN, nvptx] (noconfigdirs): Don't add
'target-libstdc++-v3'. Add 'target-libgrust'.
* configure: Regenerate.
2025-03-13 Matthias Klose <doko@ubuntu.com>
* config-ml.in (multi-do): Remove extra argument from subst macro.
2025-03-12 Robert Dubner <rdubner@symas.com>
* MAINTAINERS: Remove extraneous entries for "Robert Dubner"
2025-03-11 Bob Dubner <rdubner@symas.com>
* MAINTAINERS: Add myself.
2025-03-11 Jakub Jelinek <jakub@redhat.com>
PR cobol/119216
* configure.ac: Check for UNSUPPORTED set by libgcobol/configure.tgt
rather than LIBGCOBOL_SUPPORTED.
* configure: Regenerate.
2025-03-11 Iain Sandoe <iain@sandoe.co.uk>
* configure: Regenerate.
* configure.ac: Do not build COBOL on Darwin by default,
even for --enable-languages=all.
2025-03-11 James K. Lowden <jklowden@symas.com>
* Makefile.def: Add libgcobol module and cobol language.
* Makefile.in: Regenerate.
* configure.ac: Add libgcobol module and cobol language.
* configure: Regenerate.
2025-03-05 Tomasz Kamiński <tkaminsk@redhat.com>
* MAINTAINERS: Add myself.
2025-02-28 Giuseppe D'Angelo <giuseppe.dangelo@kdab.com>
* MAINTAINERS: Added myself as write after approval and DCO.
2025-02-19 Thomas Schwinge <tschwinge@baylibre.com>
* configure.ac (unsupported_languages) [GCN, nvptx]: Add 'ada'.
(noconfigdirs) [GCN, nvptx]: Add 'target-libobjc',
'target-libffi', 'target-libgo'.
* configure: Regenerate.
2025-02-05 Jin Ma <jinma@linux.alibaba.com>
* MAINTAINERS: Add myself.
2025-01-21 Alfie Richards <alfie.richards@arm.com>
* MAINTAINERS: Add myself to write after approval.
2025-01-13 Martin Jambor <mjambor@suse.cz>
* MAINTAINERS: Fix the name order of the Write After Approval section.
2024-12-23 Mark Harmstone <mark@harmstone.com>
* MAINTAINERS: Add myself to write after approval.
2024-12-18 Prathamesh Kulkarni <prathameshk@nvidia.com>
Revert:
2024-12-18 Prathamesh Kulkarni <prathameshk@nvidia.com>
Matthew Malcolmson <mmalcolmson@nvidia.com>
PR driver/81358
* Makefile.def: Add dependencies so libatomic is built before target
libraries are configured.
* Makefile.tpl: Export TARGET_CONFIGDIRS.
* configure.ac: Add libatomic to bootstrap_target_libs.
* Makefile.in: Regenerate.
* configure: Regenerate.
2024-12-18 Prathamesh Kulkarni <prathameshk@nvidia.com>
Matthew Malcolmson <mmalcolmson@nvidia.com>
PR driver/81358
* Makefile.def: Add dependencies so libatomic is built before target
libraries are configured.
* Makefile.tpl: Export TARGET_CONFIGDIRS.
* configure.ac: Add libatomic to bootstrap_target_libs.
* Makefile.in: Regenerate.
* configure: Regenerate.
2024-12-11 Matthieu Longo <matthieu.longo@arm.com>
* MAINTAINERS: Add myself to write after approval.
2024-12-02 Claudio Bantaloukas <claudio.bantaloukas@arm.com>
* MAINTAINERS: Add myself to write after approval.
2024-11-29 David Malcolm <dmalcolm@redhat.com>
* configure.ac: Rename "libdiagnostics" to "libgdiagnostics".
* configure: Regenerate.
2024-11-29 Yury Khrustalev <yury.khrustalev@arm.com>
* MAINTAINERS: Add myself to write after approval.
2024-11-25 Sandra Loosemore <sloosemore@baylibre.com>
* MAINTAINERS: Remove references to nios2.
* configure.ac: Likewise.
* configure: Regenerated.
2024-11-22 Sam James <sam@gentoo.org>
* configure: Regenerate.
* configure.ac: Sync with Binutils.
2024-11-22 Evgeny Karpov <evgeny.karpov@microsoft.com>
* MAINTAINERS: Add myself to write after approval.
2024-11-19 Florian Weimer <fweimer@redhat.com>
* SECURITY.txt: Remove Debian.
2024-11-18 David Malcolm <dmalcolm@redhat.com>
* configure.ac (--enable-libdiagnostics): New.
* configure: Regenerate.
2024-11-05 Nick Clifton <nickc@redhat.com>
* configure.ac: Add sim to noconfigdirs for ARM targets.
* configure: Regenerate.
2024-10-30 Soumya AR <soumyaa@nvidia.com>
* MAINTAINERS: Add myself to write after approval and DCO.
2024-10-28 Jason Merrill <jason@redhat.com>
* configure.ac: Update requirement to C++14.
* configure: Regenerate.
2024-10-25 Andrew Pinski <quic_apinski@quicinc.com>
PR bootstrap/105474
* configure: Regenerate.
* configure.ac: Error out if libstdc++ is not enabled
with bootstrapping.
2024-10-23 Jonathan Wakely <jwakely@redhat.com>
* .forgejo/PULL_REQUEST_TEMPLATE.md: New file.
2024-10-18 Alex Coplan <alex.coplan@arm.com>
* MAINTAINERS (CPU Port Maintainers): Add myself as aarch64 ldp/stp
maintainer.
(Various Maintainers): Add myself as pair fusion maintainer.
2024-10-16 Filip Kastl <fkastl@suse.cz>
* MAINTAINERS: Fix Write After Approval name order.
2024-10-14 Stefan Schulze Frielinghaus <stefansf@gcc.gnu.org>
* MAINTAINERS (s390 port): Add myself.
2024-10-13 Josef Melcr <melcrjos@fit.cvut.cz>
* MAINTAINERS: Add myself to write after approval
2024-10-12 Feng Xue <fxue@os.amperecomputing.com>
* MAINTAINERS: Add myself to write after approval.
2024-10-04 Thiago Jung Bauermann <thiago.bauermann@linaro.org>
* MAINTAINERS: Add myself to write after approval.
2024-09-27 Christophe Lyon <christophe.lyon@arm.com>
* MAINTAINERS: Add myself as MVE Reviewer for the AArch32 (arm)
port.
2024-09-25 Sam James <sam@gentoo.org>
* ltmain.sh (func_mode_link): Allow various flags through filter.
2024-09-24 Aldy Hernandez <aldyh@redhat.com>
* MAINTAINERS: Move my entry in DCO list into alphabetical order.
2024-09-23 Saurabh Jha <saurabh.jha@arm.com>
* MAINTAINERS: Fix sort order and add username.
2024-09-23 Saurabh Jha <saurabh.jha@arm.com>
* MAINTAINERS: Add myself to write after approval.
2024-09-23 Aldy Hernandez <aldy@quesejoda.com>
* MAINTAINERS: Update email and add myself to DCO.
2024-09-18 Andrew Kreimer <algonell@gmail.com>
* configure.ac: Fix typos.
* configure: Rebuilt.
2024-09-12 YunQiang Su <syq@gcc.gnu.org>
* .gitignore: Add .vscode.
2024-09-04 Marc Poulhiès <dkm@kataplop.net>
* configure: Regenerate.
* configure.ac: Save LIBS around calls to AC_SEARCH_LIBS.
2024-09-03 Szabolcs Nagy <szabolcs.nagy@arm.com>
* MAINTAINERS: Update my email address and add myself to DCO.
2024-08-22 Sam James <sam@gentoo.org>
* Makefile.in: Regenerate.
* Makefile.tpl: Fix whitespace.
2024-08-22 Sam James <sam@gentoo.org>
* Makefile.in: Regenerate.
* Makefile.tpl (STAGE1_CONFIGURE_FLAGS): Remove --disable-intermodule.
2024-08-07 navidr <navidr@gcc.gnu.org>
* MAINTAINERS: Changing my email to gnu email.
2024-08-05 Jennifer Schmitz <jschmitz@nvidia.com>
* MAINTAINERS: Add myself.
2024-07-31 Arsen Arsenović <arsen@aarsen.me>
* .dir-locals.el: Change c-mode to a list of C, C++ and ObjC
modes that Emacs currently provides.
2024-07-28 Jonathan Wakely <jwakely@redhat.com>
* .b4-config: New file.
2024-07-26 Sam James <sam@gentoo.org>
* MAINTAINERS: Add myself.
2024-07-24 Matthew Malcomson <mmalcomson@nvidia.com>
* MAINTAINERS: Update my email address.
2024-07-13 Richard Sandiford <richard.sandiford@arm.com>
* MAINTAINERS: Replace tabs with spaces. Add a bugzilla account
name column to the Write After Approval section. Line up the
email column and fix an entry that was missing the trailing ">".
2024-07-11 Kugan Vivekanandarajah <kvivekananda@nvidia.com>
* MAINTAINERS: Update my email address.
2024-07-05 Filip Kastl <fkastl@suse.cz>
* MAINTAINERS: Fix order in Contributing under the DCO.
2024-07-03 Prathamesh Kulkarni <prathameshk@nvidia.com>
* MAINTAINERS: Update my email address and add myself to DCO.
2024-07-01 Claudiu Zissulescu <claziss@gmail.com>
* MAINTAINERS: Update claziss email address.
2024-06-20 Collin Funk <collin.funk1@gmail.com>
PR bootstrap/115453
* configure.ac: Quote variable result of AC_SEARCH_LIBS. Fix
typo ac_cv_search_pthread_crate.
* configure: Regenerate.
2024-06-19 YunQiang Su <syq@gcc.gnu.org>
Revert:
2024-06-19 Collin Funk <collin.funk1@gmail.com>
* configure.ac: Quote variable result of AC_SEARCH_LIBS.
* configure: Regenerate.
2024-06-19 YunQiang Su <syq@gcc.gnu.org>
Revert:
2024-06-19 YunQiang Su <syq@gcc.gnu.org>
PR bootstrap/115453
* configure.ac: Fix typo ac_cv_search_pthread_crate.
* configure: Regnerate.
2024-06-19 YunQiang Su <syq@gcc.gnu.org>
PR bootstrap/115453
* configure.ac: Fix typo ac_cv_search_pthread_crate.
* configure: Regnerate.
2024-06-19 Collin Funk <collin.funk1@gmail.com>
* configure.ac: Quote variable result of AC_SEARCH_LIBS.
* configure: Regenerate.
2024-06-19 Ramana Radhakrishnan <ramanara@nvidia.com>
* MAINTAINERS: Update my email address.
2024-06-18 Kyrylo Tkachov <ktkachov@nvidia.com>
* MAINTAINERS (aarch64 port): Update my email address.
(DCO section): Likewise.
2024-06-11 Arthur Cohen <arthur.cohen@embecosm.com>
* Makefile.tpl: Add CRAB1_LIBS variable.
* Makefile.in: Regenerate.
* configure: Regenerate.
* configure.ac: Check if -ldl and -lpthread are needed, and if so, add
them to CRAB1_LIBS.
2024-05-31 Pengxuan Zheng <quic_pzheng@quicinc.com>
* MAINTAINERS: Add myself to Write After Approval and DCO.
2024-05-20 Gerald Pfeifer <gerald@pfeifer.com>
* MAINTAINERS: Move Joern Rennecke from arc and epiphany maintainer
to Write After Approval.
2024-05-17 Levy Hsu <admin@levyhsu.com>
* MAINTAINERS: Add myself.
2024-05-14 Filip Kastl <fkastl@suse.cz>
* MAINTAINERS: Use tabs between name and email.
2024-05-13 Xiao Zeng <zengxiao@eswincomputing.com>
* MAINTAINERS: Add myself.
2024-05-09 H.J. Lu <hjl.tools@gmail.com>
* MAINTAINERS: Add myself to DCO.
2024-05-06 YunQiang Su <syq@gcc.gnu.org>
* config-ml.in: Insert an -B option with multi-os-dir into
compiler commands used to build libraries.
2024-04-16 Thomas Schwinge <tschwinge@baylibre.com>
* configure.ac (have_cargo): Force to "no" in Canadian cross
configurations
* configure: Regenerate.
2024-04-16 Thomas Schwinge <tschwinge@baylibre.com>
* configure: Regenerate.
2024-04-15 Pierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com>
* configure: Regenerate.
* configure.ac: Emit an error message when cargo
is missing.
2024-04-04 Paul-Antoine Arras <parras@baylibre.com>
* MAINTAINERS: Update my email address.
2024-04-04 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
* MAINTAINERS: Update my email details, remove myself as arm
maintainer. Add myself to DCO section.
2024-04-02 Jakub Jelinek <jakub@redhat.com>
PR bootstrap/106472
* Makefile.tpl (make-postboot-target-dep): New lambda.
Use it to add --enable-bootstrap dependencies of target modules
on other target modules if the latter aren't bootstrapped.
* Makefile.in: Regenerate.
2024-04-02 Jakub Jelinek <jakub@redhat.com>
* Makefile.tpl: Fix duplicated words; returns returns ->
returns.
2024-03-08 Filip Kastl <fkastl@suse.cz>
* MAINTAINERS: Fix order of names in Write After Aproval
2024-03-04 demin.han <demin.han@starfivetech.com>
* MAINTAINERS: Add myself
2024-02-28 Fangrui Song <maskray@gcc.gnu.org>
* MAINTAINERS: Add myself.
2024-02-26 Juergen Christ <jchrist@linux.ibm.com>
* MAINTAINERS: Add myself to write after approval and DCO.
2024-02-23 Xi Ruoyao <xry111@xry111.site>
* configure.ac (ENABLE_GOLD): Remove loongarch*-*-* from target
list.
* configure: Regenerate.
2024-02-23 Monk Chiang <monk.chiang@sifive.com>
* MAINTAINERS: Add myself.
2024-02-10 Alexander Westbrooks <alexanderw@gcc.gnu.org>
* MAINTAINERS: Add myself to write after approval and DCO.
2024-02-03 Maciej W. Rozycki <macro@orcam.me.uk>
* MAINTAINERS: Update my e-mail address.
2024-02-02 Sandra Loosemore <sloosemore@baylibre.com>
* MAINTAINERS: Update my e-mail address.
2024-01-29 Kwok Cheung Yeung <kcy@codesourcery.com>
* MAINTAINERS: Update my work email address.
2024-01-25 Chung-Lin Tang <cltang@baylibre.com>
* MAINTAINERS: Update my work email address.
2024-01-24 Thomas Schwinge <tschwinge@baylibre.com>
* MAINTAINERS: Update my work email address.
2024-01-23 Tobias Burnus <tburnus@baylibre.com>
* MAINTAINERS: Update my email address.
2024-01-23 Andrew Stubbs <ams@baylibre.com>
* MAINTAINERS: Update
2024-01-16 Pierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com>
* Makefile.def: Add a dependency to libgrust for all-gcc.
* Makefile.in: Regenerate the file.
2024-01-16 Pierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com>
* Makefile.def: Add libgrust target to bootstrap.
* Makefile.in: Regenerate.
2024-01-15 Andrew Pinski <quic_apinski@quicinc.com>
* MAINTAINERS (DCO): Add myself.
2024-01-09 Siddhesh Poyarekar <siddhesh@gotplt.org>
* SECURITY.txt: Drop "exploitable" in the hardening section.
2024-01-09 Tom Tromey <tom@tromey.com>
* Makefile.in: Rebuild.
* Makefile.tpl (BASE_EXPORTS): Add GUILE.
(GUILE): New variable.
* Makefile.def (flags_to_pass): Add GUILE.
2024-01-08 Joseph Myers <josmyers@redhat.com>
* MAINTAINERS: Update my email address.
2023-12-30 Joseph Myers <jsm@polyomino.org.uk>
* MAINTAINERS: Update my email address.
2023-12-14 Pierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com>
Thomas Schwinge <thomas@codesourcery.com>
* Makefile.def: Add libgrust as host & target module.
* configure.ac: Add libgrust to host tools list. Add libgrust to
noconfigdirs if we're not building target libstdc++.
* Makefile.in: Regenerate.
* configure: Regenerate.
2023-12-14 Pierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com>
Arthur Cohen <arthur.cohen@embecosm.com>
* MAINTAINERS: Add maintainers for libgrust.
2023-12-13 Arsen Arsenović <arsen@aarsen.me>
* Makefile.def (gettext): Disable (via missing)
{install-,}{pdf,html,info,dvi} and TAGS targets. Set no_install
to true. Add --disable-threads --disable-libasprintf. Drop the
lib_path (as there are no shared libs).
* Makefile.in: Regenerate.
2023-12-12 Paul Iannetta <piannetta@kalrayinc.com>
* MAINTAINERS: Add myself to write after approval
2023-12-12 Feng Wang <wangfeng@eswincomputing.com>
* MAINTAINERS: Update my email address
2023-12-12 Feng Wang <wangfeng@eswincomputing.com>
* MAINTAINERS: Add myself to write after approval
2023-11-23 Nathaniel Shead <nathanieloshead@gmail.com>
* MAINTAINERS: Add myself to write after approval and DCO
2023-11-22 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
* libtool.m4: Fix stray call
2023-11-19 Lewis Hyatt <lhyatt@gmail.com>
* Makefile.in: Regenerate.
* Makefile.tpl: Add dependency on site.exp to check-gcc-* targets
2023-11-18 Petter Tomner <tomner@bahnhof.se>
* MAINTAINERS: Update my email address.
2023-11-18 Frederik Harwath <frederik@harwath.name>
* MAINTAINERS: Change my address.
2023-11-16 Michal Jires <mjires@suse.cz>
* MAINTAINERS: Add myself.
2023-11-13 Arsen Arsenović <arsen@aarsen.me>
PR bootstrap/12596
* .gitignore: Add '/gettext*'.
* configure.ac (host_libs): Replace intl with gettext.
(hbaseargs, bbaseargs, baseargs): Split baseargs into
{h,b}baseargs.
(skip_barg): New flag. Skips appending current flag to
bbaseargs.
<library exemptions>: Exempt --with-libintl-{type,prefix} from
target and build machine argument passing.
* configure: Regenerate.
* Makefile.def (host_modules): Replace intl module with gettext
module.
(configure-ld): Depend on configure-gettext.
* Makefile.in: Regenerate.
2023-11-13 Arsen Arsenović <arsen@aarsen.me>
* intl/*: Remove.
2023-11-09 Jivan Hakobyan <jivanhakobyan9@gmail.com>
* MAINTAINERS: Add myself.
2023-11-09 YunQiang Su <yunqiang.su@cipunited.com>
* MAINTAINERS: Update my email address.
2023-11-06 Carl Love <cel@linux.ibm.com>
* MAINTAINERS: Update my email address.
2023-11-01 Eric Gallager <egallager@gcc.gnu.org>
* .github/CONTRIBUTING.md: Wrap lines more tightly.