forked from gcc-mirror/gcc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
22581 lines (14153 loc) · 668 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
2024-04-16 Thomas Schwinge <[email protected]>
* configure.ac (have_cargo): Force to "no" in Canadian cross
configurations
* configure: Regenerate.
2024-04-16 Thomas Schwinge <[email protected]>
* configure: Regenerate.
2024-04-15 Pierre-Emmanuel Patry <[email protected]>
* configure: Regenerate.
* configure.ac: Emit an error message when cargo
is missing.
2024-04-04 Paul-Antoine Arras <[email protected]>
* MAINTAINERS: Update my email address.
2024-04-04 Kyrylo Tkachov <[email protected]>
* MAINTAINERS: Update my email details, remove myself as arm
maintainer. Add myself to DCO section.
2024-04-02 Jakub Jelinek <[email protected]>
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 <[email protected]>
* Makefile.tpl: Fix duplicated words; returns returns ->
returns.
2024-03-08 Filip Kastl <[email protected]>
* MAINTAINERS: Fix order of names in Write After Aproval
2024-03-04 demin.han <[email protected]>
* MAINTAINERS: Add myself
2024-02-28 Fangrui Song <[email protected]>
* MAINTAINERS: Add myself.
2024-02-26 Juergen Christ <[email protected]>
* MAINTAINERS: Add myself to write after approval and DCO.
2024-02-23 Xi Ruoyao <[email protected]>
* configure.ac (ENABLE_GOLD): Remove loongarch*-*-* from target
list.
* configure: Regenerate.
2024-02-23 Monk Chiang <[email protected]>
* MAINTAINERS: Add myself.
2024-02-10 Alexander Westbrooks <[email protected]>
* MAINTAINERS: Add myself to write after approval and DCO.
2024-02-03 Maciej W. Rozycki <[email protected]>
* MAINTAINERS: Update my e-mail address.
2024-02-02 Sandra Loosemore <[email protected]>
* MAINTAINERS: Update my e-mail address.
2024-01-29 Kwok Cheung Yeung <[email protected]>
* MAINTAINERS: Update my work email address.
2024-01-25 Chung-Lin Tang <[email protected]>
* MAINTAINERS: Update my work email address.
2024-01-24 Thomas Schwinge <[email protected]>
* MAINTAINERS: Update my work email address.
2024-01-23 Tobias Burnus <[email protected]>
* MAINTAINERS: Update my email address.
2024-01-23 Andrew Stubbs <[email protected]>
* MAINTAINERS: Update
2024-01-16 Pierre-Emmanuel Patry <[email protected]>
* Makefile.def: Add a dependency to libgrust for all-gcc.
* Makefile.in: Regenerate the file.
2024-01-16 Pierre-Emmanuel Patry <[email protected]>
* Makefile.def: Add libgrust target to bootstrap.
* Makefile.in: Regenerate.
2024-01-15 Andrew Pinski <[email protected]>
* MAINTAINERS (DCO): Add myself.
2024-01-09 Siddhesh Poyarekar <[email protected]>
* SECURITY.txt: Drop "exploitable" in the hardening section.
2024-01-09 Tom Tromey <[email protected]>
* Makefile.in: Rebuild.
* Makefile.tpl (BASE_EXPORTS): Add GUILE.
(GUILE): New variable.
* Makefile.def (flags_to_pass): Add GUILE.
2024-01-08 Joseph Myers <[email protected]>
* MAINTAINERS: Update my email address.
2023-12-30 Joseph Myers <[email protected]>
* MAINTAINERS: Update my email address.
2023-12-14 Pierre-Emmanuel Patry <[email protected]>
Thomas Schwinge <[email protected]>
* 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 <[email protected]>
Arthur Cohen <[email protected]>
* MAINTAINERS: Add maintainers for libgrust.
2023-12-13 Arsen Arsenović <[email protected]>
* 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 <[email protected]>
* MAINTAINERS: Add myself to write after approval
2023-12-12 Feng Wang <[email protected]>
* MAINTAINERS: Update my email address
2023-12-12 Feng Wang <[email protected]>
* MAINTAINERS: Add myself to write after approval
2023-11-23 Nathaniel Shead <[email protected]>
* MAINTAINERS: Add myself to write after approval and DCO
2023-11-22 Francois-Xavier Coudert <[email protected]>
* libtool.m4: Fix stray call
2023-11-19 Lewis Hyatt <[email protected]>
* Makefile.in: Regenerate.
* Makefile.tpl: Add dependency on site.exp to check-gcc-* targets
2023-11-18 Petter Tomner <[email protected]>
* MAINTAINERS: Update my email address.
2023-11-18 Frederik Harwath <[email protected]>
* MAINTAINERS: Change my address.
2023-11-16 Michal Jires <[email protected]>
* MAINTAINERS: Add myself.
2023-11-13 Arsen Arsenović <[email protected]>
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ć <[email protected]>
* intl/*: Remove.
2023-11-09 Jivan Hakobyan <[email protected]>
* MAINTAINERS: Add myself.
2023-11-09 YunQiang Su <[email protected]>
* MAINTAINERS: Update my email address.
2023-11-06 Carl Love <[email protected]>
* MAINTAINERS: Update my email address.
2023-11-01 Eric Gallager <[email protected]>
* .github/CONTRIBUTING.md: Wrap lines more tightly.
2023-11-01 Eric Gallager <[email protected]>
* .github/CONTRIBUTING.md: New file.
* .github/PULL_REQUEST_TEMPLATE.md: New file.
2023-10-22 Iain Sandoe <[email protected]>
* configure: Regenerate.
* configure.ac: Do not add default runpaths to GCC exes
when we are building -static-libstdc++/-static-libgcc (the
default).
* libtool.m4: Add 'enable-darwin-at-runpath'. Act on the
enable flag to alter Darwin libraries to use @rpath names.
2023-10-15 Mike Frysinger <[email protected]>
* Makefile.def: Add distclean-sim dependency on distclean-gnulib.
* Makefile.in: Regenerate.
2023-10-11 Filip Kastl <[email protected]>
* MAINTAINERS: Fix name order.
2023-10-10 Christoph Müllner <[email protected]>
* MAINTAINERS: Add myself.
2023-10-06 Sergei Trofimovich <[email protected]>
PR bootstrap/111663
* Makefile.tpl (STAGEfeedback_CONFIGURE_FLAGS): Disable -Werror.
* Makefile.in: Regenerate.
2023-10-05 Jan Engelhardt <[email protected]>
* SECURITY.txt: Fix up indentation.
2023-10-05 Jan Engelhardt <[email protected]>
* SECURITY.txt: Fix up commas.
2023-10-04 Siddhesh Poyarekar <[email protected]>
* SECURITY.txt: New file.
2023-09-18 Fei Gao <[email protected]>
* MAINTAINERS: Add myself.
2023-09-15 Yang Yujie <[email protected]>
* config-ml.in: Remove unneeded loongarch clause.
* configure.ac: Register custom makefile fragments mt-loongarch-*
for loongarch targets.
* configure: Regenerate.
2023-09-12 Edwin Lu <[email protected]>
* MAINTAINERS: Add myself
2023-09-12 Thomas Schwinge <[email protected]>
Chung-Lin Tang <[email protected]>
PR testsuite/109951
* Makefile.tpl (BASE_TARGET_EXPORTS): Add
'SYSROOT_CFLAGS_FOR_TARGET'.
* Makefile.in: Regenerate.
2023-09-05 Yang Yujie <[email protected]>
* config-ml.in: Do not build the multilib library variant
that is duplicate with the toplevel one.
2023-08-29 Tsukasa OI <[email protected]>
* MAINTAINERS: Add myself.
2023-08-22 Filip Kastl <[email protected]>
* MAINTAINERS: Update my email address.
2023-08-11 Eric Feng <[email protected]>
* MAINTAINERS: Add myself.
2023-08-07 Indu Bhagat <[email protected]>
* Makefile.def: Reflect that libsframe needs to installed before
libbfd. Reorder a bit to better track libsframe dependencies.
* Makefile.in: Regenerate.
2023-08-07 Indu Bhagat <[email protected]>
* Makefile.def: Add install dependency on libsframe for libbfd.
* Makefile.in: Regenerated.
2023-08-07 Nick Alcock <[email protected]>
* libtool.m4 (lt_cv_sys_global_symbol_pipe): Augment symcode for
Solaris 11.
2023-08-07 Alexander von Gluck IV <[email protected]>
* configure: Regenerate.
* configure.ac: Add Haiku to list of ELF OSes
* libtool.m4: Update sys_lib_dlsearch_path_spec on Haiku.
2023-08-07 Nick Alcock <[email protected]>
* libtool.m4 (LT_PATH_NM): Handle user-specified NM with
options, including options containing paths.
2023-08-07 Nick Alcock <[email protected]>
* libtool.m4 (LT_PATH_NM): Try BSDization flags with a user-provided
NM, if there is one. Run nm on itself, not on /dev/null, to avoid
errors from nms that refuse to work on non-regular files. Remove
other workarounds for this problem. Strip out blank lines from the
nm output.
2023-08-07 Arsen Arsenović <[email protected]>
* configure.ac: Reinstate 32b PA-RISC HP-UX targets
* configure: Regenerate.
2023-08-07 Simon Marchi <[email protected]>
* configure.ac: Add AC_SUBST(PKG_CONFIG_PATH).
* configure: Re-generate.
* Makefile.tpl (HOST_EXPORTS): Pass PKG_CONFIG_PATH.
(PKG_CONFIG_PATH): New.
* Makefile.in: Re-generate.
2023-08-07 Luis Machado <[email protected]>
* configure.ac: Disable year2038 by default on 32-bit hosts.
* configure: Regenerate.
2023-08-07 Vladimir Mezentsev <[email protected]>
* Makefile.def: Add gprofng module.
* configure.ac: Add --enable-gprofng option.
* Makefile.in: Regenerate.
* configure: Regenerate.
2023-08-07 Martin Liska <[email protected]>
* configure.ac: Add --enable-default-compressed-debug-sections-algorithm.
* configure: Regenerate.
2023-08-07 Fangrui Song <[email protected]>
* configure: Regenerate.
* configure.ac: Add --with-zstd.
2023-08-07 Arsen Arsenović <[email protected]>
* configure: Regenerate.
* configure.ac: Recover tilegx/tilepro targets.
2023-08-07 H.J. Lu <[email protected]>
* configure: Regenerated.
* libtool.m4 (_LT_CMD_OLD_ARCHIVE): Check if AR works with
--plugin and rc before enabling --plugin.
2023-08-07 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.
2023-08-07 Arsen Arsenović <[email protected]>
* Makefile.tpl: Substitute @GDCFLAGS@ instead of using
$(CFLAGS).
2023-08-07 David Faust <[email protected]>
* MAINTAINERS: Add the BPF port to my reviewer listing.
2023-08-02 Jan Beulich <[email protected]>
* MAINTAINERS: Correct my email address.
2023-08-02 Hu, Lin1 <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2023-08-01 Richard Ball <[email protected]>
* MAINTAINERS: Add myself.
2023-07-31 Andreas Schwab <[email protected]>
* configure.ac (GDCFLAGS): Set default from ${CFLAGS}.
* configure: Regenerate.
* Makefile.in (GDCFLAGS): Substitute @GDCFLAGS@.
2023-07-31 xuli <[email protected]>
* MAINTAINERS: Add myself.
2023-07-25 Thomas Schwinge <[email protected]>
* MAINTAINERS: List myself as "nvptx port" maintainer.
2023-07-21 Cupertino Miranda <[email protected]>
* MAINTAINERS: Add myself to write after approval
2023-07-18 Ju-Zhe Zhong <[email protected]>
* MAINTAINERS: Add myself as a reviewer for the riscv port.
2023-07-18 Robin Dapp <[email protected]>
* MAINTAINERS: Add myself as a reviewer for the riscv port.
2023-07-12 Hao Liu <[email protected]>
* MAINTAINERS: Add Hao Liu to write after approval
2023-07-12 Ken Matsui <[email protected]>
* MAINTAINERS: Add Ken Matsui to write after approval
2023-07-07 Eugene Rozenfeld <[email protected]>
* Makefile.in: Collect both kernel and user events for autofdo
* Makefile.tpl: Collect both kernel and user events for autofdo
2023-06-30 Rishi Raj <[email protected]>
* MAINTAINERS: Added myself to Write After Approval and DCO
2023-06-29 Eugene Rozenfeld <[email protected]>
* Makefile.in: Remove -gtoggle for STAGEautoprofile
* Makefile.tpl: Remove -gtoggle for STAGEautoprofile
2023-06-25 Lehua Ding <[email protected]>
* MAINTAINERS: Add Lehua Ding to write after approval
2023-06-25 Iain Sandoe <[email protected]>
* Makefile.def: Pass the enable-host-pie value to GCC configure.
* Makefile.in: Regenerate.
* configure: Regenerate.
* configure.ac: Adjust the logic for shared and PIE host flags to
ensure that PIE is passed for hosts that require it.
2023-06-16 YunQiang Su <[email protected]>
* MAINTAINERS (Write After Approval): move Matthew Fortune
to Write After Approval.
2023-06-15 Marek Polacek <[email protected]>
* configure.ac (--enable-host-pie): New check. Set PICFLAG after this
check.
* configure: Regenerate.
2023-06-14 Filip Kastl <[email protected]>
* MAINTAINERS: Add myself to write after approval
2023-06-02 YunQiang Su <[email protected]>
* MAINTAINERS (CPU Port Maintainers): Add myself as MIPS
port maintainer.
(Write After Approval): Remove myself.
2023-05-30 Jeevitha Palanisamy <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2023-05-29 Martin Jambor <[email protected]>
* MAINTAINERS: Replace spaces with tabs.
2023-05-27 Benjamin Priour <[email protected]>
* MAINTAINERS: New entry.
2023-05-18 Eugene Rozenfeld <[email protected]>
* Makefile.tpl: Disable warnings as errors for STAGEautofeedback
* Makefile.in: Regenerate
2023-05-17 Eugene Rozenfeld <[email protected]>
* Makefile.in: Disable warnings as errors for STAGEautofeedback
2023-05-11 Robin Dapp <[email protected]>
* MAINTAINERS: Sort.
2023-05-11 Ju-Zhe Zhong <[email protected]>
* MAINTAINERS: Add myself.
2023-05-10 Pan Li <[email protected]>
* MAINTAINERS: Add myself.
2023-04-28 Eugene Rozenfeld <[email protected]>
* Makefile.in: Define PROFILE_MERGER
* Makefile.tpl: Define PROFILE_MERGER
2023-04-27 Robin Dapp <[email protected]>
* MAINTAINERS: Change my email address.
2023-04-26 Patrick O'Neill <[email protected]>
* MAINTAINERS: Add myself.
2023-04-26 Martin Liska <[email protected]>
* MAINTAINERS: fix sorting
2023-04-25 Victor Do Nascimento <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2023-04-24 Martin Liska <[email protected]>
* MAINTAINERS: Fix sorting.
2023-04-21 Peter Foley <[email protected]>
* configure: Regenerate.
* configure.ac: Only create serdep.tmp if needed
2023-04-21 “[email protected]” <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
2023-04-21 Vineet Gupta <[email protected]>
* MAINTAINERS (Write After Approval): Add myself.
Ref: <[email protected]>
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.