forked from gcc-mirror/gcc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
2407 lines (1445 loc) · 64.5 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
2022-11-14 Martin Liska <[email protected]>
Revert:
2022-11-09 Martin Liska <[email protected]>
* acx.m4: Do not wrap REPORT_BUGS_TO.
2022-11-09 Martin Liska <[email protected]>
* acx.m4: Do not wrap REPORT_BUGS_TO.
2022-10-19 LIU Hao <[email protected]>
* gthr.m4 (GCC_AC_THREAD_HEADER): Add new case for `mcf` thread
model
2022-08-31 Martin Liska <[email protected]>
* mh-pa-hpux10: Removed.
2022-08-01 Roger Sayle <[email protected]>
Arnaud Charlet <[email protected]>
* acx.m4 (AC_PROG_GNAT): Update conftest.adb to include
features required of the host gnat compiler.
2022-06-01 David Seifert <[email protected]>
PR plugins/95648
* gcc-plugin.m4: Use libtool's $ac_cv_prog_OBJDUMP.
2022-05-20 Christophe Lyon <[email protected]>
* dfp.m4: Add aarch64 support.
2022-05-03 Christophe Lyon <[email protected]>
* dfp.m4: Add license header.
2022-03-29 Chenghua Xu <[email protected]>
Lulu Cheng <[email protected]>
* picflag.m4: Default add build option '-fpic' for LoongArch.
2021-12-21 Iain Buclaw <[email protected]>
PR d/103528
* acx.m4 (ACX_PROG_GDC): Add check whether D compiler works.
2021-12-16 H.J. Lu <[email protected]>
Revert:
2021-12-16 H.J. Lu <[email protected]>
* gcc-plugin.m4 (GCC_PLUGIN_OPTION): New.
2021-12-15 H.J. Lu <[email protected]>
* gcc-plugin.m4 (GCC_PLUGIN_OPTION): New.
2021-12-15 Iain Sandoe <[email protected]>
* gcc-plugin.m4: Save and process CXXFLAGS.
2021-11-30 Iain Buclaw <[email protected]>
* acx.m4 (ACX_PROG_GDC): New m4 function.
2021-09-19 Andrew Pinski <[email protected]>
PR bootstrap/102389
* bootstrap-lto-lean.mk: Handle NM like RANLIB AND AR.
* bootstrap-lto.mk: Likewise.
2021-08-18 Iain Sandoe <[email protected]>
* mh-darwin: Require a non-shared host configuration to
enable mdynamic-no-pic where that is supported.
2021-07-09 Iain Sandoe <[email protected]>
* mh-darwin: Make this specific to handling the
mdynamic-no-pic case.
2021-06-14 Michael Forney <[email protected]>
* gettext.m4 (AM_GNU_GETTEXT): Skip checks for the internal
symbols _nl_msg_cat_cntr, _nl_domain_bindings, and
_nl_expand_alias, if __GNU_GETTEXT_SUPPORTED_REVISION is defined.
Backport of gettext serial 68 patch.
2021-05-18 Mike Frysinger <[email protected]>
* acinclude.m4 (CYG_AC_PATH_SIM, CYG_AC_PATH_DEVO): Delete.
2021-05-03 H.J. Lu <[email protected]>
PR bootstrap/99703
* cet.m4 (GCC_CET_HOST_FLAGS): Check if host supports multi-byte
NOPs.
2021-04-13 Martin Storsjö <[email protected]>
* mh-mingw: Set __USE_MINGW_ACCESS in missed C++ flags
variables
2021-01-05 Rainer Orth <[email protected]>
PR c++/98316
* ax_lib_socket_nsl.m4: Import from autoconf-archive.
2021-01-03 Mike Frysinger <[email protected]>
* pkg.m4: New file from pkg-config-0.29.2.
2020-11-25 Matthew Malcomson <[email protected]>
* bootstrap-hwasan.mk: Disable random frame tags for stack-tagging
during bootstrap.
2020-11-25 Matthew Malcomson <[email protected]>
* bootstrap-hwasan.mk: New file.
2020-09-09 Rainer Orth <[email protected]>
Sync from binutils-gdb.
2020-07-30 Rainer Orth <[email protected]>
* largefile.m4 (ACX_LARGEFILE) <sparc-*-solaris*|i?86-*-solaris*>:
Check for <sys/procfs.h> incompatilibity with large-file support
on Solaris.
Only disable large-file support and perhaps plugins if needed.
Set, substitute LARGEFILE_CPPFLAGS if so.
2020-08-20 Tobias Burnus <[email protected]>
PR bootstrap/96612
* ax_cxx_compile_stdcxx.m4: Add fourth argument to check also
the CXX_FOR_BUILD compiler.
2020-07-30 H.J. Lu <[email protected]>
PR bootstrap/96202
* cet.m4 (GCC_CET_HOST_FLAGS): Don't enable CET without CET
support in stage1 nor for build support.
2020-05-29 H.J. Lu <[email protected]>
PR bootstrap/95413
* cet.m4: Replace save_CFLAGS and save_LDFLAGS with
cet_save_CFLAGS and cet_save_LDFLAGS.
2020-05-18 Jason Merrill <[email protected]>
* ax_cxx_compile_stdcxx.m4: Import from autoconf archive with
an adjustment to try the default mode.
2020-05-15 H.J. Lu <[email protected]>
PR bootstrap/95147
* cet.m4 (GCC_CET_FLAGS): Also check if -fcf-protection works
when defaulting to auto.
2020-05-14 H.J. Lu <[email protected]>
* cet.m4 (GCC_CET_FLAGS): Change default to auto.
2020-05-12 H.J. Lu <[email protected]>
PR bootstrap/94998
* cet.m4 (GCC_CET_HOST_FLAGS): Enable CET in cross compiler if
possible.
2020-04-28 H.J. Lu <[email protected]>
PR bootstrap/94739
* cet.m4 (GCC_CET_HOST_FLAGS): Add -fcf-protection=none to
-Wl,-z,ibt,-z,shstk. Check whether -fcf-protection=none
-Wl,-z,ibt,-z,shstk works first.
2020-04-25 H.J. Lu <[email protected]>
PR bootstrap/94739
* cet.m4 (GCC_CET_HOST_FLAGS): New.
2020-04-22 Jakub Jelinek <[email protected]>
PR libfortran/94694
PR libfortran/94586
* math.m4 (GCC_CHECK_MATH_INLINE_BUILTIN_FALLBACK1,
GCC_CHECK_MATH_INLINE_BUILTIN_FALLBACK2): New.
2020-02-12 Sandra Loosemore <[email protected]>
PR libstdc++/79193
PR libstdc++/88999
* no-executables.m4: Use a non-empty program to test for linker
support.
2020-02-01 Andrew Burgess <[email protected]>
* lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Update shell syntax.
2020-01-27 Andrew Burgess <[email protected]>
* lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Add new
--with-libXXX-type=... option. Use this to guide the selection of
either a shared library or a static library.
2020-01-24 Maciej W. Rozycki <[email protected]>
* toolexeclibdir.m4: New file.
2019-09-10 Christophe Lyon <[email protected]>
* futex.m4: Handle *-uclinux*.
* tls.m4 (GCC_CHECK_TLS): Likewise.
2019-09-06 Florian Weimer <[email protected]>
* futex.m4 (GCC_LINUX_FUTEX): Include <unistd.h> for the syscall
function.
2019-07-08 Richard Sandiford <[email protected]>
* bootstrap-Og.mk: New file.
2019-06-25 Kwok Cheung Yeung <[email protected]>
Andrew Stubbs <[email protected]>
* gthr.m4 (GCC_AC_THREAD_HEADER): Add case for gcn.
2019-05-30 Rainer Orth <[email protected]>
* ax_count_cpus.m4: New file.
2019-05-02 Richard Biener <[email protected]>
PR bootstrap/85574
* bootstrap-lto.mk (extra-compare): Set to gcc/lto1$(exeext).
2019-04-16 Martin Liska <[email protected]>
* bootstrap-lto-lean.mk: Filter out -flto in STAGEtrain_CFLAGS.
2019-04-09 Martin Liska <[email protected]>
* bootstrap-lto-lean.mk: New file.
2019-03-02 Johannes Pfau <[email protected]>
* mh-mingw: Also set __USE_MINGW_ACCESS flag for C++ code.
2018-10-31 Joseph Myers <[email protected]>
PR bootstrap/82856
* math.m4, tls.m4: Use AC_LANG_SOURCE.
Merge from binutils-gdb:
2018-06-19 Simon Marchi <[email protected]>
* override.m4 (_GCC_AUTOCONF_VERSION): Bump from 2.64 to 2.69.
2018-10-28 Iain Buclaw <[email protected]>
* multi.m4: Set GDC.
2018-07-05 James Clarke <[email protected]>
* dfp.m4 (enable_decimal_float): Enable for x86_64*-*-gnu* to
catch x86_64 kFreeBSD and Hurd.
2018-06-08 Martin Liska <[email protected]>
* bootstrap-mpx.mk: Remove.
2018-05-10 Martin Liska <[email protected]>
PR bootstrap/64914
* bootstrap-ubsan.mk: Define UBSAN_BOOTSTRAP.
2018-05-09 Joshua Watt <[email protected]>
* ax_pthread.m4: Add file.
2018-05-08 Richard Biener <[email protected]>
PR bootstrap/85571
* bootstrap-lto-noplugin.mk: Disable compare.
* bootstrap-lto.mk: Supply contrib/compare-lto for do-compare.
2018-04-24 H.J. Lu <[email protected]>
PR bootstrap/85490
* bootstrap-cet.mk (STAGE4_CFLAGS): New.
2018-04-24 H.J. Lu <[email protected]>
PR target/85485
* bootstrap-cet.mk (STAGE2_CFLAGS): Remove -mcet.
(STAGE3_CFLAGS): Likewise.
2018-04-24 H.J. Lu <[email protected]>
PR target/85485
* cet.m4 (GCC_CET_FLAGS): Replace -mcet with -mshstk.
2018-04-19 Jakub Jelinek <[email protected]>
* cet.m4 (GCC_CET_FLAGS): Default to --disable-cet, replace
--enable-cet=default with --enable-cet=auto.
2018-04-18 David Malcolm <[email protected]>
PR jit/85384
* acx.m4 (GCC_BASE_VER): Remove \$\$ from sed expression.
2018-04-05 H.J. Lu <[email protected]>
PR gas/22318
* plugins.m4 (AC_PLUGINS): Use dlsym to check if libdl is needed.
2018-02-14 Igor Tsimbalist <[email protected]>
PR target/84148
* cet.m4: Check if target support multi-byte NOPS (SSE).
2018-02-06 Eric Botcazou <[email protected]>
* gcc-plugin.m4 (GCC_ENABLE_PLUGINS): Remove -q option passed to grep.
2017-11-14 Boris Kolpackov <[email protected]>
* gcc-plugin.m4: Add support for MinGW.
2017-11-17 Igor Tsimbalist <[email protected]>
* cet.m4: New file.
2017-11-15 Alexandre Oliva <[email protected]>
* bootstrap-debug-lean.mk (do-compare): Use the
contrib/compare-debug script.
2017-10-24 H.J. Lu <[email protected]>
* bootstrap-cet.mk: New file.
2017-06-19 Martin Liska <[email protected]>
* bootstrap-lto-noplugin.mk: Enable -flto in all PGO stages.
* bootstrap-lto.mk: Likewise.
2017-06-03 Eric Botcazou <[email protected]>
* mt-android: New file.
2017-02-13 Richard Biener <[email protected]>
* isl.m4: Remove support for ISL 0.14.
2017-01-19 Uros Bizjak <[email protected]>
PR target/78478
* ax_check_define.m4: New file.
2017-01-17 Jakub Jelinek <[email protected]>
PR other/79046
* acx.m4 (GCC_BASE_VER): New m4 function.
(ACX_TOOL_DIRS): Require GCC_BASE_VER, for
--with-gcc-major-version-only use just major number from BASE-VER.
2017-01-06 Rainer Orth <[email protected]>
PR go/78978
* hwcaps.m4 (GCC_CHECK_ASSEMBLER_HWCAP): New macro.
2017-01-04 Alan Modra <[email protected]>
* picflag.m4: Remove stray \xA0 in comment.
2016-12-12 Rainer Orth <[email protected]>
* hwcaps.m4: New file.
2016-12-08 Alan Modra <[email protected]>
* elf.m4: Revert 2016-06-21 change.
* picflag.m4: Likewise. Revert 2016-04-30 change too.
* override.m4 (AC_PROG_LEX): Import 2016-01-18 binutils fix
for PR binutils/19481.
2016-12-02 Maxim Ostapenko <[email protected]>
* bootstrap-asan.mk: Replace LSAN_OPTIONS=detect_leaks=0 with
ASAN_OPTIONS=detect_leaks=0:use_odr_indicator=1.
2016-12-01 Ma Jiang <[email protected]>
* acx.m4: Change "tail +16c" to "tail -c +17".
2016-12-01 Matthias Klose <[email protected]>
* pkg.m4: Remove.
2016-11-30 Matthias Klose <[email protected]>
* pkg.m4: New file.
2016-11-15 Matthias Klose <[email protected]>
multi.m4: Don't set GCJ.
2016-06-21 Trevor Saunders <[email protected]>
* elf.m4: Remove interix support.
* picflag.m4: Likewise.
2016-04-30 Oleg Endo <[email protected]>
* picflag.m4: Remove SH5 support.
2015-10-21 Maxim Ostapenko <[email protected]>
* bootstrap-asan.mk: Replace ASAN_OPTIONS=detect_leaks with
LSAN_OPTIONS=detect_leaks.
2015-08-24 Yaakov Selkowitz <[email protected]>
* iconv.m4 (AM_ICONV_LINK): Use in-tree libiconv when present.
2015-07-24 Micahel Darling <[email protected]>
PR other/66259
* gettext.m4: Reflects renaming of configure.in to configure.ac
* po.m4: Likewise
* stdint.m4: Likewise
* tcl.m4: Likewise
2015-07-14 H.J. Lu <[email protected]>
* zlib.m4: Sync with binutils-gdb.
2015-06-30 H.J. Lu <[email protected]>
* dfp.m4 (enable_decimal_float): Also set to yes for
i?86*-*-elfiamcu target.
2015-05-27 Jason Merrill <[email protected]>
PR bootstrap/66304
* warnings.m4 (ACX_PROG_CXX_WARNING_OPTS)
(ACX_PROG_CXX_WARNINGS_ARE_ERRORS)
(ACX_PROG_CXX_WARNING_ALMOST_PEDANTIC): New.
(ACX_PROG_CC_WARNING_OPTS, ACX_PROG_CC_WARNING_ALMOST_PEDANTIC)
(ACX_PROG_CC_WARNINGS_ARE_ERRORS): Push into C language context.
2015-05-13 Eric Botcazou <[email protected]>
* sjlj.m4: New file.
2015-05-04 Trevor Saunders <[email protected]>
* bitfields.m4: Change int to long long, and use bitfields of
width 1 instead of 0.
2015-05-01 Trevor Saunders <[email protected]>
* bitfields.m4: New file.
2015-04-14 H.J. Lu <[email protected]>
* bootstrap-mpx.mk: New file.
2015-04-10 Jakub Jelinek <[email protected]>
Iain Sandoe <[email protected]>
PR target/65351
* mh-darwin: Only apply -mdynamic-no-pic for m32 Darwin when the
compiler in use supports -mno-dynamic-no-pic.
* picflag.m4: Only append -mno-dynamic-no-pic for Darwin when
-mdynamic-no-pic is present in CFLAGS.
2015-04-07 Jakub Jelinek <[email protected]>
Iain Sandoe <[email protected]>
PR target/65351
* picflag.m4: Append -mno-dynamic-no-pic for Darwin.
2015-03-25 Uros Bizjak <[email protected]>
PR bootstrap/65537
* bootstrap-lto-noplugin.mk: New build configuration.
2015-02-18 Thomas Schwinge <[email protected]>
* elf.m4 (ACX_ELF_TARGET_IFELSE): nvptx-*-none isn't ELF.
2014-11-17 Bob Dunlop <[email protected]>
* mt-ospace (CFLAGS_FOR_TARGET): Append -g -Os rather than
overwriting.
(CXXFLAGS_FOR_TARGET): Similarly.
2014-11-17 H.J. Lu <[email protected]>
PR bootstrap/63888
* bootstrap-asan.mk (ASAN_OPTIONS): Export "detect_leaks=0".
2014-11-13 Kirill Yukhin <[email protected]>
* target-posix: New file.
2014-11-11 Tobias Burnus <[email protected]>
* cloog.m4: Remove.
2014-10-27 Tom Tromey <[email protected]>
* gcc-plugin.m4: New file.
2014-09-01 Andi Kleen <[email protected]>
* bootstrap-lto.mk: Implement slim bootstrap.
2014-08-21 Bin Cheng <[email protected]>
* isl.m4 (ISL_CHECK_VERSION): Check link of isl library
for cross_compiling.
2014-08-19 Alan Modra <[email protected]>
* plugins.m4 (AC_PLUGINS): If plugins are enabled, add -ldl to
LIBS via AC_SEARCH_LIBS.
2014-08-18 Roman Gareev <[email protected]>
* cloog.m4: Remove the path to isllibs from clooglibs.
* isl.m4: Add paths to islinc, isllibs.
2014-08-14 Alan Modra <[email protected]>
* plugins.m4: Test for dlfcn.h or windows.h here to set default
for --enable-plugins. Report error if someone tries to enable
plugins on a host we don't support.
2014-07-26 Uros Bizjak <[email protected]>
PR target/47230
* mh-alpha-linux: New file.
2014-05-14 Sandra Loosemore <[email protected]>
* mt-nios2-elf: New file.
2014-04-25 Marc Glisse <[email protected]>
PR target/43538
* mt-gnu: Don't reset CXXFLAGS_FOR_TARGET.
2013-12-07 Mike Frysinger <[email protected]>
* acinclude.m4: Remove +x file mode.
2013-11-29 Marek Polacek <[email protected]>
* bootstrap-ubsan.mk (POSTSTAGE1_LDFLAGS): Remove -lpthread -ldl.
Add -B$$r/prev-$(TARGET_SUBDIR)/libsanitizer/.
2013-11-29 H.J. Lu <[email protected]>
* bootstrap-asan.mk (POSTSTAGE1_LDFLAGS): Add
-B$$r/prev-$(TARGET_SUBDIR)/libsanitizer/.
2013-11-19 Marek Polacek <[email protected]>
* bootstrap-ubsan.mk (POSTSTAGE1_LDFLAGS): Add -ldl.
2013-11-18 Jan Hubicka <[email protected]>
* bootstrap-lto.mk: Use -ffat-lto-objects.
2013-11-15 Andreas Schwab <[email protected]>
* picflag.m4 (m68k-*-*): Use default PIC flag.
2013-09-29 Iain Sandoe <[email protected]>
* mh-darwin (BOOT_CFLAGS): Only add -mdynamic-no-pic for m32 hosts.
(STAGE1_CFLAGS, STAGE1_LDFLAGS): New.
Fix over-length lines and amend comments.
2013-08-30 Marek Polacek <[email protected]>
* bootstrap-ubsan.mk: New.
2013-03-27 Kai Tietz <[email protected]>
* dfp.m4: Add support for cygwin x64 target.
* picflag.m4: Likewise.
2013-02-25 H.J. Lu <[email protected]>
* bootstrap-asan.mk (POSTSTAGE1_LDFLAGS): Add
-B$$r/prev-$(TARGET_SUBDIR)/libsanitizer/asan/.
2013-01-23 Shenghou Ma <[email protected]>
* isl.m4: don't echo $CFLAGS for ISL_CHECK_VERSION.
2013-01-15 Richard Biener <[email protected]>
PR other/55973
* isl.m4 (ISL_INIT_FLAGS): Warn about disabled version check
for in-tree build.
(ISL_CHECK_VERSION): Do not use AC_CACHE_CHECK.
* cloog.m4 (CLOOG_INIT_FLAGS): Disable version check for
in-tree build and warn about that.
(CLOOG_CHECK_VERSION): Do not use AC_CACHE_CHECK.
2013-01-07 H.J. Lu <[email protected]>
* libstdc++-raw-cxx.m4 (GCC_LIBSTDCXX_RAW_CXX_FLAGS): Remove
"-I" from LIBSTDCXX_RAW_CXX_LDFLAGS.
2012-12-12 H.J. Lu <[email protected]>
* libstdc++-raw-cxx.m4 (GCC_LIBSTDCXX_RAW_CXX_FLAGS): Also
AC_SUBST LIBSTDCXX_RAW_CXX_LDFLAGS.
2012-12-11 H.J. Lu <[email protected]>
PR sanitizer/55533
* libstdc++-raw-cxx.m4: New file.
2012-11-28 H.J. Lu <[email protected]>
* bootstrap-asan.mk: New file.
2012-11-04 Thomas Schwinge <[email protected]>
* dfp.m4 (enable_decimal_float): Enable for i?86*-*-gnu*.
2012-10-15 Pavel Chupin <[email protected]>
* gthr.m4: New. Define GCC_AC_THREAD_HEADER.
2012-09-19 Steve Ellcey <[email protected]>
* mt-sde: Change -mcode-xonly to -mcode-readable=pcrel.
2012-09-03 Richard Guenther <[email protected]>
PR bootstrap/54138
* config/cloog.m4: Adjust for toplevel reorg.
* config/isl.m4: Adjust.
2012-08-26 Art Haas <[email protected]>
* cloog.m4 (CLOOG_INIT_FLAGS): Use = instead of == in test.
2012-07-04 Tristan Gingold <[email protected]>
* isl.m4 (ISL_CHECK_VERSION): Set to yes if cross-compiling.
Fix comments.
2012-07-03 Richard Guenther <[email protected]>
* cloog.m4: Remove debugging print.
2012-07-03 Rainer Orth <[email protected]>
* isl.m4 (ISL_CHECK_VERSION): Add -lisl to LIBS, not LDFLAGS.
2012-07-02 Richard Guenther <[email protected]>
* isl.m4 (_ISL_CHECK_CT_PROG): Omit main function header/footer.
Fix version test.
2012-07-02 Richard Guenther <[email protected]>
Michael Matz <[email protected]>
Tobias Grosser <[email protected]>
Sebastian Pop <[email protected]>
* cloog.m4: Set up to work against ISL only.
* isl.m4: New file.
2012-05-29 Joseph Myers <[email protected]>
* mt-sde: Fix typos.
* stdint.m4: Fix typos.
* tcl.m4: Fix typos.
2012-05-03 Olivier Hainque <[email protected]>
* mh-ppc-aix (LDFLAGS): Quote $(CC).
2012-04-03 Tristan Gingold <[email protected]>
* mmap.m4: Use *vms* instead of vms*.
2012-04-02 Tristan Gingold <[email protected]>
* math.m4 (GCC_CHECK_MATH_FUNC): Remove if-present
argument. Define the variable.
2012-03-26 Tristan Gingold <[email protected]>
* math.m4: New file.
2012-03-12 Rainer Orth <[email protected]>
* weakref.m4 (GCC_CHECK_ELF_STYLE_WEAKREF): Remove
alpha*-dec-osf*.
2012-01-22 Douglas B Rupp <[email protected]>
* config/mh-interix: Remove as unneeded.
* config/picflag.m4 (i[[34567]]86-*-interix3*):
Change triplet to i[[34567]]86-*-interix[[3-9]]*.
2012-01-04 Andreas Krebbel <[email protected]>
PR bootstrap/51734
* picflag.m4: Remove s390 case statement.
2011-12-20 Andreas Schwab <[email protected]>
* warnings.m4 (ACX_PROG_CC_WARNING_OPTS): Avoid leading dash in
expr call.
2011-12-19 Andreas Schwab <[email protected]>
PR bootstrap/51388
* warnings.m4 (ACX_PROG_CC_WARNING_OPTS)
(ACX_PROG_CC_WARNING_ALMOST_PEDANTIC): Run the test without the
no- prefix.
2011-12-18 Eric Botcazou <[email protected]>
* acx.m4 (Test for GNAT): Update comment and add quotes in final test.
2011-11-22 Iain Sandoe <[email protected]>
* weakref.m4: New file.
2011-11-09 Richard Henderson <[email protected]>
* asmcfi.m4: New file.
2011-11-02 Rainer Orth <[email protected]>
* mh-interix (LIBGCC2_DEBUG_CFLAGS): Remove.
2011-08-22 Rainer Orth <[email protected]>
* picflag.m4: New file.
2011-07-18 Rainer Orth <[email protected]>
* elf.m4 (target_elf): Remove *-netware*.
2011-07-06 Uros Bizjak <[email protected]>
* mt-alphaieee (GOCFLAGS_FOR_TARGET): Add -mieee.
2011-06-15 Mike Stump <[email protected]>
PR target/49461
* mh-darwin: Turn off -pie on darwin11 and later.
2011-04-20 Eric Botcazou <[email protected]>
* bootstrap-lto.mk: Remove obsolete requirement.
2011-03-24 Paolo Bonzini <[email protected]>
* mt-mep: Remove, obsolete.
* mt-netware: Remove, obsolete.
* mt-wince: Remove, obsolete.
* mt-v810: Remove, unused.
2011-03-24 Paolo Bonzini <[email protected]>
* mh-x86omitfp: Remove.
2011-03-24 Paolo Bonzini <[email protected]>
* mh-cygwin: Remove obsolete variables and dependencies.
2011-03-24 Paolo Bonzini <[email protected]>
* mh-sysv4: Remove.
* mh-solaris: Remove.
2011-03-24 Paolo Bonzini <[email protected]>
* mh-sysv4: Remove AR_CFLAGS.
2011-03-24 Joseph Myers <[email protected]>
* mh-cxux, mh-decstation, mh-dgux386, mh-lynxrs6k, mh-ncr3000,
mh-necv4, mh-sco, mh-sysv5: Remove.
2011-03-05 Ralf Wildenhues <[email protected]>
Eric Blake <[email protected]>
* override.m4: Error out if a buggy M4 was detected, to
avoid spurious diffs in generated files.
2011-01-25 Jakub Jelinek <[email protected]>
* cloog.m4 (CLOOG_REQUESTED): Use $2 if --without-cloog.
2011-01-10 Jan Hubicka <[email protected]>
* bootstrap-lto.mk: -fuse-linker-plugin is default now;
pass -fno-lto to STAGEprofile.
2010-12-06 Dave Korn <[email protected]>
PR target/40125
PR lto/46695
* lthostflags.m4: New file.
(ACX_LT_HOST_FLAGS): Define.
2010-12-02 Dave Korn <[email protected]>
* mh-cygwin (LDFLAGS): Turn up stack allocation to 12MB.
(BOOT_LDFLAGS): Add matching stack size flag.
* mh-mingw (LDFLAGS): Likewise.
(BOOT_LDFLAGS): Likewise.
2010-11-27 Eric Botcazou <[email protected]>
* bootstrap-lto.mk (BOOT_ADAFLAGS): Delete.
2010-11-19 Tobias Grosser <[email protected]>
* cloog.m4: Use AS_HELP_STRING and fix help formatting.
2010-11-15 Andreas Schwab <[email protected]>
* cloog.m4 (CLOOG_INIT_FLAGS): Fix spelling in option names.
2010-11-12 Tobias Grosser <[email protected]>
* cloog.m4: Add -enable-cloog-backend=(isl|ppl|ppl-legacy) to
define the cloog backend to use. Furthermore, only pass the ppllibs to
the configure checks, if necessary.
2010-11-12 Tobias Grosser <[email protected]>
* cloog.m4: Use CLooG predefined macro to check for CLooG PPL.
2010-11-12 Tobias Grosser <[email protected]>
* cloog.m4: Fix typo. verison -> version.
2010-11-12 Tobias Grosser <[email protected]>
* cloog.m4: Pass ppl libraries to the CLooG version check.
2010-11-11 Jan Hubicka <[email protected]>
* bootstrap-lto: Use -flto.
2010-11-04 Iain Sandoe <[email protected]>
* mh-darwin: Renamed from mh-ppc-darwin.
2010-06-27 Ralf Wildenhues <[email protected]>
* po.m4 (AM_PO_SUBDIRS): Fix unportable shell quoting.
2010-09-10 Jonathan Yong <[email protected]>
* dfp.m4: Enable decimal float for i?86 cygwin
and mingw, and for x86_64 mingw.
2010-09-06 H.J. Lu <[email protected]>
PR target/45524
* dfp.m4: Don't set enable_decimal_float to dpd if DFP is
disabled. Set default_decimal_float.
2010-09-06 Andreas Schwab <[email protected]>
* dfp.m4: Quote argument of AC_MSG_WARN.
2010-09-03 Andreas Krebbel <[email protected]>
* dfp.m4: New file.
2010-09-01 Andi Kleen <[email protected]>
* bootstrap-lto.mk (STAGE2_CFLAGS, STAGE3_CFLAGS): Change
to -fwhopr=jobserver -fuse-linker-plugin -frandom-seed=1.
2010-08-21 Ralf Wildenhues <[email protected]>
PR target/45084
* stdint.m4 (GCC_HEADER_STDINT): Use m4 quotes for arguments
of AC_MSG_ERROR.
2010-07-02 Rainer Orth <[email protected]>
* gc++filt.m4: New file.
2010-06-20 Alexandre Oliva <[email protected]>
* bootstrap-lto.mk: New.
2010-06-10 Paolo Bonzini <[email protected]>
* override.m4: Remove obsolete (<2.64) definitions.
2010-06-09 Iain Sandoe <[email protected]>
PR bootstrap/43170
* tls.m4 (GCC_CHECK_TLS): Add volatile qualifier to the test
references. Move the main () test reference ahead of
pthread_create(). Add a comment to explain the requirements
of the test.
2010-06-03 Joern Rennecke <[email protected]>
Ralf Wildenhues <[email protected]>
PR bootstrap/42798
* override.m4 (_AC_CHECK_DECL_BODY, _AC_CHECK_DECLS): Import
definitions from git Autoconf.
2010-04-13 Steve Ellcey <[email protected]>
* elf.m4: Add hppa[12]*-*-hpux* to list of non-elf platforms.
2010-03-23 Kai Tietz <[email protected]>
* mh-mingw: Revert accidentally checking r156315.
2010-01-05 Rainer Orth <[email protected]>
* stdint.m4 (GCC_HEADER_STDINT): Don't typedef uint8_t etc. if
corresponding macros already exist.
2010-01-02 Richard Guenther <[email protected]>
PR lto/41529
* elf.m4: New file.
2009-11-30 Joseph Myers <[email protected]>
* largefile.m4 (ACX_LARGEFILE): Require AC_CANONICAL_HOST and
AC_CANONICAL_TARGET.
2009-11-24 Joel Brobecker <[email protected]>
* zlib.m4: New file.
2009-11-09 Jan Kratochvil <[email protected]>
* largefile.m4 (ACX_LARGEFILE): Call AC_PLUGINS.
2009-11-06 Jan Kratochvil <[email protected]>
Joel Brobecker <[email protected]>
Paolo Bonzini <[email protected]>
* largefile.m4: New file.
2009-10-23 Rainer Orth <[email protected]>
* acx.m4 (ACX_CHECK_CYGWIN_CAT_WORKS): Use = with test.
2009-09-09 Paolo Bonzini <[email protected]>
* stdint.m4 (GCC_HEADER_STDINT): Revert changes to this macro in
the previous two patches.
2009-09-09 Paolo Bonzini <[email protected]>
* stdint.m4: Store temporary file in $tmp/_GCC_STDINT_H.
2009-09-08 Paolo Bonzini <[email protected]>
* stdint.m4: Rewrite by using autoconf 2.64 features.
2009-09-03 Alexandre Oliva <[email protected]>
* bootstrap-debug-big.mk (STAGE2_CFLAGS): Drop -gtoggle.
* bootstrap-debug-lean.mk: Update comments.
(STAGE2_CFLAGS): Likewise.
(do-compare): Don't override.
2009-09-01 Alexandre Oliva <[email protected]>
* bootstrap-debug.mk: Add comments.
* bootstrap-debug-big.mk: New.
* bootstrap-debug-lean.mk: New.