-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
4087 lines (2533 loc) · 119 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
2019-05-23 Jose E. Marchesi <jose.marchesi@oracle.com>
* config.sub (bpf): Recognise.
* testsuite/config-sub.data: Add test cases.
2019-05-01 Paul Eggert <eggert@cs.ucla.edu>
* config.guess: Remove space after "#endif", as Gnulib and some
other downstream projects frown on trailing white space.
2019-04-28 Urs Janßen <urs@tin.org>
* config.guess: Use utsname version instead of preprocessor macros
on vax-dec-ultrix and mips-dec-ultrix versions >= 3.0.
2019-04-14 John Ericson <git@johnericson.me>
* config.sub (wasm64, wasi): Recognise.
* testsuite/config-sub.data: Add test cases for wasm (Web Assembly) and
wasi (Web Assembly System Interface).
2019-03-29 Ben Elliston <bje@gnu.org>
* testsuite/config-sub.data: Sort.
2019-03-29 Urs Janßen <urs@tin.org>
Ben Elliston <bje@gnu.org>
* config.sub: Recognize m68k-next-openstep* as openstep*, not
nextstep3.
* testsuite/config-sub.data: Add test cases.
2019-03-23 Ben Elliston <bje@gnu.org>
* testsuite/config-sub.sh (run_one_config_sub): New.
(run_one_config_sub_idempotent): Likewise.
(run_config_sub): Parallelise test cases.
(run_config_sub_idempotent): Likewise.
2019-03-08 YunQiang Su <ysu@wavecomp.com>
* config.guess (mips:Linux:*:*): Detect ISA R6.
2019-03-04 Urs Janßen <urs@tin.org>
* config.guess (m68k-sony-newsos, mips-dec-ultrix3): Restore C
program that detects these systems.
2019-02-19 Urs Janßen <urs@tin.org>
* config.guess (i*86:*:5:[678]*): Fix Unixware output.
2019-01-20 Ben Elliston <bje@gnu.org>
* testsuite/config-guess.sh (run_config_guess): For clarity, write
uname replacement to './uname', not 'uname'.
2019-01-15 Ben Elliston <bje@gnu.org>
Revert:
2019-01-03 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* config.guess (sun4*:SunOS:5.*:*): Return sparcv9-sun-solaris2.*
with 64-bit compiler.
(tadpole*:SunOS:5.*:*): Likewise.
2019-01-05 Ben Elliston <bje@gnu.org>
* config.sub (shl): Recognise.
* testsuite/config-sub.data: Add a test case.
2019-01-05 Ben Elliston <bje@gnu.org>
* config.sub: Move v70, w65 and others into sort order.
2019-01-04 Ben Elliston <bje@gnu.org>
* config.sub (mips64eb): Recognise.
* testsuite/config-sub.data: Add a test case for mips64eb.
2019-01-03 Ben Elliston <bje@gnu.org>
* testsuite/config-guess.data: Add more test cases.
2019-01-03 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* config.guess (sun4*:SunOS:5.*:*): Return sparcv9-sun-solaris2.*
with 64-bit compiler.
(tadpole*:SunOS:5.*:*): Likewise.
2019-01-03 Ben Elliston <bje@gnu.org>
* testsuite/config-guess.data: Add a test for ARM Linux.
* testsuite/config-guess.data: Add new tests for Solaris on i386
and SPARC machines.
2019-01-03 Ben Elliston <bje@gnu.org>
* testsuite/config-guess.sh (run_config_guess): Set CC_FOR_BUILD
to no_compiler_found so that we don't erroneously use the compiler
of the host running the testsuite.
* testsuite/config-guess.data: Adjust ARM FreeBSD expected output.
2019-01-01 Ben Elliston <bje@gnu.org>
* config.guess: Update copyright years.
* config.sub: Likewise.
* doc/config.guess.1: Regenerate.
* doc/config.sub.1: Likewise.
2018-12-30 Keno Fischer <keno@juliacomputing.com>
* config.sub (*-emscripten): Recognise.
* testsute/config-sub.data: Add test cases.
2018-12-21 Ben Elliston <bje@gnu.org>
Revert 2018-07-18 change:
From Apostolos Syropoulos <asyropoulos@gmail.com>:
* config.guess (i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*): Use the
isainfo(1) command to guess what kind of system we have. Running
isainfo -b returns either "32" or "64".
2018-12-16 Ben Elliston <bje@gnu.org>
Revert 2018-05-05 change.
* config.sub: Don't pass the -r option to 'read'. Solaris 10 sh
does not support -r.
2018-12-07 Ben Elliston <bje@gnu.org>
* config.guess: No need to explicitly save $? in the EXIT trap
handler. This allows the same trap handler to be used as for other
common signals.
2018-11-26 Lauri Tirkkonen <lotheac@iki.fi>
* config.guess (*:Unleashed:*:*): New.
* config.sub (unleashed*): New.
* testsuite/config-sub.data: Add a test case.
* testsuite/config-guess.data: Likewise.
2018-11-20 Andrew Stubbs <ams@codesourcery.com>
* config.sub (amdgnu-amdhsa): Recognise.
* testsuite/config-sub.data: Test amdgcn-amdhsa.
2018-10-26 Ben Elliston <bje@gnu.org>
* config.guess (amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*): Set
manufacturer to 'pc'.
* testsuite/config-guess.data: Update test cases.
2018-10-20 Peter Kokot <peterkokot@gmail.com>
* config.sub: Direct diagnostic output to standard error.
2018-10-17 Urs Janßen <urs@tin.org>
* config.sub: Fix comment typos.
2018-08-29 Mikaël Urankar <mikael.urankar@gmail.com>
* config.guess (arm:FreeBSD:*:*): Match on 'arm' not 'arm*'.
2018-08-28 John Ericson <john.ericson@obsidian.systems>
* config.sub: Parse basic_machine into cpu and vendor. This adds
more lines, but makes a bunch of code simpler and easier to read.
sed(1) is used a lot less, for example.
2018-08-28 John Ericson <john.ericson@obsidian.systems>
* config.sub: More deduplication and organize more basic machines.
2018-08-28 John Ericson <john.ericson@obsidian.systems>
* config.sub: Deduplicate and organize more basic machines.
2018-08-28 John Ericson <john.ericson@obsidian.systems>
* config.sub: Remove redundant patterns from second `case
$basic_machine in`. The second case only needs to handle patterns
of the form *-*. We can drop some patterns without a change in
functionality.
2018-08-28 John Ericson <john.ericson@obsidian.systems>
* config.sub: Remove duplicates in the huge `case basic_machine
in` arms. These patterns whitelist canonical CPU types that are
allowed with any vendor. The former arm accepts a provided vendor,
and the latter arm defaults a vendor when none is provided. Split
`case $basic_machine in` in to two, and then pre-default the
missing vendor so that only the explicit-vendor rules are needed.
2018-08-24 Ben Elliston <bje@gnu.org>
From Justin Hibbits:
* config.sub (powerpcspe, powerpcspe-*): New.
* testsuite/config-sub.data: Add test cases.
2018-08-24 John Ericson <john.ericson@obsidian.systems>
* config.sub: Consolidate *-pc handling.
2018-08-24 John Ericson <john.ericson@obsidian.systems>
* config.sub (cr16-*): Do not clobber vendor.
* testsuite/config-sub.data (cr16-random-elf): Adjust test case.
2018-08-24 John Ericson <john.ericson@obsidian.systems>
* config.sub: Consolidate some *-* patterns above big patterns.
2018-08-24 Ben Elliston <bje@gnu.org>
* testsuite/config-sub.data: Add more tests.
2018-08-23 John Ericson <john.ericson@obsidian.systems>
* config.sub: Finish moving big patterns to the bottom.
2018-08-20 John Ericson <john.ericson@obsidian.systems>
* config.sub: Move the big patterns to the bottom in preparation
for de-duplication. It causes Shellcheck to see more overlapping
patterns. Fix miscellaneous problems identified by Shellcheck.
* testsuite/config-sub.data: Adjust tests.
2018-08-20 John Ericson <john.ericson@obsidian.systems>
* testsuite/config-sub.data: Add legacy test cases.
2018-08-14 John Ericson <john.ericson@obsidian.systems>
* config.sub (sequent): Make this a one-component alias.
* testsuite/config-sub.data (sequent-ptx): Adjust test case.
2018-08-14 John Ericson <john.ericson@obsidian.systems>
* config.sub: Move some erroneous foo-* aliases to be single
component aliases.
2018-08-13 Ben Elliston <bje@gnu.org>
* testsuite/config-sub.data: Add legacy test cases for cydra,
da30, dec3100, decstation, decstation-3100, decstatn, orion, pc98,
pmin, pmax, romp, rs6000, vax, x64, xps and xps100.
2018-08-13 John Ericson <john.ericson@obsidian.systems>
* config.sub: Make a few basic_machines short-hands only.
2018-08-13 John Ericson <john.ericson@obsidian.systems>
* config.sub: Combine match arms.
2018-08-13 John Ericson <john.ericson@obsidian.systems>
* config.sub (craynv): Move back as a basic_machine pattern.
* testsuite/config-sub.data: Add test case.
2018-08-13 Ben Elliston <bje@gnu.org>
* testsuite/config-sub.data: Add some legacy test cases.
2018-08-12 John Ericson <john.ericson@obsidian.systems>
* config.sub (basic_machine): Move up manufacturer-defaulting
patterns.
2018-08-08 John Ericson <john.ericson@obsidian.systems>
* config.sub: Eliminate some dead code for SH targets.
* testsuite/config-sub.data: Add tests for sh2ele and sh2ele-elf.
2018-08-08 John Ericson <john.ericson@obsidian.systems>
* config.sub (tile*): Only set 'os' to -linux-gnu if unset.
2018-08-08 John Ericson <john.ericson@obsidian.systems>
* config.sub (abacus, asmjs): Combine these redundant case arms.
2018-08-08 John Ericson <john.ericson@obsidian.systems>
* config.sub: Don't need 'os=${os:-none}' defaults because that is
already the default.
2018-08-08 John Ericson <john.ericson@obsidian.systems>
* testsuiteb/config-sub.sh (run_config_sub_idempotent): New.
* config.sub: Fixes to pass the testsuite.
2018-08-03 John Ericson <john.ericson@obsidian.systems>
* testsuite/config-guess.sh: Make 'rc' a local variable.
* testsuite/config-sub.sh: Likewise.
2018-08-02 John Ericson <john.ericson@obsidian.systems>
* testsuite/config-guess.sh: Re-indent with tabs.
* testsuite/config-sub.sh: Likewise.
2018-08-02 Ben Elliston <bje@gnu.org>
* config.guess: Fix SC2234 diagnostic from Shellcheck ("Remove
superfluous (..) around test command". Also remove redirection as
test(1) should never produce any output.
2018-07-30 Ben Elliston <bje@gnu.org>
* Makefile (check-guess, check-sub): Run tests under bash.
2018-07-25 John Ericson <john.ericson@obsidian.systems>
* config.sub: Fix some more i386-pc-* defaults.
* testsuite/config-sub.data: Update.
2018-07-18 Ben Elliston <bje@gnu.org>
From Apostolos Syropoulos <asyropoulos@gmail.com>:
* config.guess (i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*): Use the
isainfo(1) command to guess what kind of system we have. Running
isainfo -b returns either "32" or "64".
2018-07-18 Mikaël Urankar <mikael.urankar@gmail.com>
* config.guess (arm*:FreeBSD:*:*): New.
* testsuite/config-guess.data: Add a test case.
2018-07-15 Ben Elliston <bje@gnu.org>
* testsuite/config-guess.data: Sort.
2018-07-13 Ben Elliston <bje@gnu.org>
* testsuite/config-guess.sh: Strip off spaces around pipe
delimiter as test data is read in.
(run_config_guess): Set IFS to '|'.
* testsuite/config-guess.data: Use ' | ' as the delimeter.
2018-07-13 Ben Elliston <bje@gnu.org>
* config.guess (set_cc_for_build): Disable SC2039 ("In POSIX sh,
RANDOM is undefined").
* Makefile (shellcheck): Don't disable SC2039 globally.
2018-07-13 Ben Elliston <bje@gnu.org>
* config.guess: Disable SC2154 and SC2172 Shellcheck warnings.
* Makefile (shellcheck): Don't disable SC2172 globally.
2018-07-13 John Ericson <john.ericson@obsidian.systems>
* config.sub: Don't recognize every *-unknown as a basic_machine.
2018-07-12 Ben Elliston <bje@gnu.org>
* config.guess: Replace large 'set_cc_for_build' shell variable,
that is executed via eval, with a POSIX shell function.
* Makefile (shellcheck): Ignore SC2039 diagnostics ("In POSIX sh,
RANDOM is undefined") and SC2172 ("Trapping signals by number is
not well defined. Prefer signal names").
2018-07-06 Ben Elliston <bje@gnu.org>
* config.guess (set_cc_for_build): Suppress possible mkdir output.
2018-07-03 Liviu Ionescu <ilg@livius.net>
Ben Elliston <bje@gnu.org>
* config.sub: Do not rewrite riscv -> riscv32.
* testsuite/config-sub.data: Adjust tests.
2018-06-26 Sevan Janiyan <venture37@geeklan.co.uk>
Ben Elliston <bje@gnu.org>
* config.guess (*:Minix:*:*): Accept any machine.
* testsuite/config-guess.data: Add a test case.
2018-06-22 Palmer Dabbelt <palmer@sifive.com>
* config.sub: Add riscv-* as an alias for riscv32-*.
* testsuite/config-sub.data: Add tests.
2018-05-24 Ben Elliston <bje@gnu.org>
* testsuite/config-sub.data: Add tests for Sequent and DYNIX/ptx.
2018-05-24 John Ericson <john.ericson@obsidian.systems>
* config.sub: Consolidate $os checking.
2018-05-23 John Ericson <john.ericson@obsidian.systems>
* config.sub: Don't force basic_machine based on $os just for
"mint" and "clix".
2018-05-23 John Ericson <john.ericson@obsidian.systems>
* config.sub: No more OS-driven substitution of -pc with sed.
2018-05-23 John Ericson <john.ericson@obsidian.systems>
* config.sub: Simplify *-wrs handling.
2018-05-23 John Ericson <john.ericson@obsidian.systems>
* config.sub: Cordon off two-component aliases.
2018-05-21 John Ericson <john.ericson@obsidian.systems>
* testsuite/config-sub.data: Add clipper-clix and m68k-mint tests.
2018-05-19 Ben Elliston <bje@gnu.org>
* testsuite/config-sub.data: Sort.
2018-05-19 Ben Elliston <bje@gnu.org>
* config.guess (set_cc_for_build): Guard against $CC_FOR_BUILD,
$HOST_CC and $CC being undefined by using ${var-} style expansion.
(*:NetBSD:*:*): Likewise for $abi.
* testsuite/config-guess.sh: Run config.guess under `sh -eu'.
2018-05-19 Ben Elliston <bje@gnu.org>
* testsuite/config-guess.sh: Set -eu for robustness. Run
config.guess under `sh -e' to catch more problems.
* testsuite/config-sub.sh: Run config.sub under `sh -eu'.
2018-05-19 John Ericson <john.ericson@obsidian.systems>
* config.sub: Cordon off single component aliases.
2018-05-14 Ben Elliston <bje@gnu.org>
* Makefile (shellcheck): Include testsuite/*.sh scripts.
2018-05-14 John Ericson <john.ericson@obsidian.systems>
* config.sub: Don't prepend $os with '-' everywhere. Include it in
the output instead.
2018-05-13 John Ericson <john.ericson@obsidian.systems>
* config.sub: Error if there is more than four components.
2018-05-12 Ben Elliston <bje@gnu.org>
* config.sub: Remove do-nothing case.
2018-05-05 Ben Elliston <bje@gnu.org>
* config.sub: Simplify an if expression.
2018-05-05 John Ericson <john.ericson@obsidian.systems>
* config.sub (arm*-*-none-eabi): Recognise.
2018-05-05 Ben Elliston <bje@gnu.org>
* config.sub: Pass the -r option to 'read'.
2018-05-05 John Ericson <john.ericson@obsidian.systems>
* config.sub: Properly recognise configuration types with four
components. Re-work the old logic to simplify the shell code.
2018-05-04 Ben Elliston <bje@gnu.org>
* Makefile (shellcheck): New.
2018-05-01 Ben Elliston <bje@gnu.org>
* config.sub (maybe_os): Reindent this block.
2018-05-01 John Ericson <john.ericson@obsidian.systems>
* config.sub: Rewrite basic_machine 'if' with 'case'.
2018-05-01 Francois H. Theron <francois.theron@netronome.com>
Ben Elliston <bje@gnu.org>
* config.sub (nfp, nfp-*): New.
* testsuite/config-sub.data: Add test cases.
2018-04-24 John Ericson <john.ericson@obsidian.systems>
* config.sub (arm6m, armv[78][arm]): Recognise.
* testsuite/config-sub.data: Add tests.
2018-04-16 Mao Han <han_mao@c-sky.com>
* config.sub (csky, csky-*): Recognise.
* testsuite/config-sub.data: Add a test case.
2018-04-16 Ben Elliston <bje@gnu.org>
* testsuite/config-sub.data: Sort.
2018-04-16 John Darrington <john@darrington.wattle.id.au>
* config.sub (s12z, hcs12z, m68hcs12z, m9s12z): New.
* testsuite/config-sub.data: Add test cases.
2018-03-08 Paul Eggert <eggert@cs.ucla.edu>
* config.guess: Use before-save-hook not write-file-functions.
* config.sub: Ditto.
2018-03-01 Ben Elliston <bje@gnu.org>
Revert:
2018-02-24 James Clarke <jrtc27@jrtc27.com>
* config.guess (x86_64:Linux:*:*): Detect x32 ABI.
2018-02-28 Rishi Khan <rishi@extreme-scale.com>
* config.sub (hcos-*): Recognise.
* testsuite/config-sub.data: Add a test case.
2018-02-24 James Clarke <jrtc27@jrtc27.com>
* config.guess (x86_64:Linux:*:*): Detect x32 ABI.
2018-02-22 Ben Elliston <bje@gnu.org>
Reported by Nelson H. F. Beebe:
* config.sub (os): Recognise midnightbsd*.
* testsuite/config-sub.data: Add a test case.
2018-01-26 Henri Menke <henrimenke@gmail.com>
* config.guess: Try to detect musl libc on GNU/Linux systems using
ldd --version.
2018-01-16 Ben Elliston <bje@gnu.org>
* config.guess: Use double quotes on any remaining unquoted
variables to prevent globbing and word splitting.
2018-01-16 Ben Elliston <bje@gnu.org>
* config.guess: Change most ${foo} expansions to "$foo" to:
(1) double quote to prevent globbing and word splitting; and
(2) remove extraneous braces.
2018-01-16 Ben Elliston <bje@gnu.org>
* config.guess: Quote $dummy.c, $dummy.o and $dummy to prevent
globbing and word splitting in the filename.
2018-01-15 Ben Elliston <bje@gnu.org>
* config.sub: Double quote variables to silence warning SC2086
(double quote to prevent globbing and word splitting).
2018-01-14 Ben Elliston <bje@gnu.org>
* config.sub (os): Move -es1800* case above -es*.
* testsuite/config-sub.data: Add several test cases.
2018-01-14 Ben Elliston <bje@gnu.org>
* config.sub (os): Remove overlapping pattern -svr4*.
2018-01-14 Ben Elliston <bje@gnu.org>
* config.sub (maybe_os): Remove duplicate pattern -hms*.
* testsuite/config-sub.data: Add a test.
2018-01-14 Ben Elliston <bje@gnu.org>
* config.sub (maybe_os): Remove duplicate pattern -beos*.
* testsuite/config-sub.data: Add a test.
2018-01-14 Ben Elliston <bje@gnu.org>
* config.sub (maybe_os): Remove duplicate pattern -haiku*.
(basic_machine): Don't match haiku in the manufacturer field.
* testsuite/config-sub.data: Add a test.
2018-01-14 Ben Elliston <bje@gnu.org>
* config.sub (maybe_os): Remove duplicate pattern -opened* which
prevents the more specific case matching on line 1427.
* testsuite/config-sub.data: Add a test.
2018-01-14 Ben Elliston <bje@gnu.org>
* config.sub (maybe_os): Remove first and duplicate -none*
case. This is matched further down. Found by Shellcheck.
2018-01-13 Ben Elliston <bje@gnu.org>
* config.sub (maybe_os): Remove duplicate case for z8k.
2018-01-13 Ben Elliston <bje@gnu.org>
* config.sub (maybe_os): Remove duplicate case for sh.
* testsuite/config-sub.data: Add test cases for sh and sh-elf.
2018-01-13 Ben Elliston <bje@gnu.org>
* config.sub (maybe_os): Remove duplicate patterns for sparc,
sparcv8, sparcv9, sparcv9b and sparcv9v. Found by Shellcheck.
2018-01-13 Ben Elliston <bje@gnu.org>
* config.sub (maybe_os): Remove cases z8k-*-coff and z80-*-coff as
these are never matched. Found by Shellcheck.
2018-01-13 Ben Elliston <bje@gnu.org>
* config.sub (maybe_os): Remove duplicate m88k-omron* case.
Found by Shellcheck.
* testsuite/config-sub.data: Add a test case.
2018-01-13 Ben Elliston <bje@gnu.org>
* config.sub (maybe_os): Remove pdp10 case as it is handled above.
Found by Shellcheck.
2018-01-13 Ben Elliston <bje@gnu.org>
* config.sub (basic_machine): Remove first pdp11 case so that the
second, specialised case will match instead. Found by Shellcheck.
* testsuite/config-sub.data: Adjust test case.
2018-01-13 Ben Elliston <bje@gnu.org>
* config.sub (maybe_os): Clean up 386BSD.
* testsuite/config-sub.data: Adjust test cases.
2018-01-13 Ben Elliston <bje@gnu.org>
* testsuite/config-guess.data: Sort.
* testsuite/config-sub.data: Likewise.
2018-01-13 Ben Elliston <bje@gnu.org>
* config.sub (basic_machine): Remove sparclite-wrs pattern as it
is matched by sparclite-* above. Found by Shellcheck.
* testsuite/config-sub.data: Add test cases.
2018-01-13 Ben Elliston <bje@gnu.org>
* config.sub (maybe_os): Remove -rtmk-nova* pattern as it is
matched by -rtmk* immediately preceding it. Found by Shellcheck.
2018-01-13 Ben Elliston <bje@gnu.org>
* config.sub (maybe_os): Remove duplicate sh64 case as it is
matched above. Found by Shellcheck.
2018-01-13 Ben Elliston <bje@gnu.org>
* config.sub (maybe_os): Remove duplicate wasm32 case as it is
matched above. Found by Shellcheck.
2018-01-13 Ben Elliston <bje@gnu.org>
* config.sub (maybe_os): Remove duplicate -osfrose* and -osf*
cases as these are matched above by -osf*. Found by Shellcheck.
2018-01-13 Ben Elliston <bje@gnu.org>
* config.sub (maybe_os): Remove second and duplicate *-xenix case
as only the first will match. Found by Shellcheck.
* testsuite/config-sub.data: Add test case.
2018-01-13 Ben Elliston <bje@gnu.org>
* config.sub (maybe_os): Remove hppa-next which can never match
due to an earlier pattern. Found by Shellcheck.
* testsuite/config-sub.data: Add test cases.
2018-01-13 Ben Elliston <bje@gnu.org>
* config.sub (maybe_os): Remove i386-vsta which can never match
due to an earlier pattern (but retain vsta). Found by Shellcheck.
* testsuite/config-sub.data: Add test cases.
2018-01-13 Ben Elliston <bje@gnu.org>
* config.sub (maybe_os): Remove second and duplicate -aros*
case. Only the first will match. Found by Shellcheck.
2018-01-13 Ben Elliston <bje@gnu.org>
* config.sub (maybe_os): Remove second and duplicate *-next
case. Only the first will match. Found by Shellcheck.
2018-01-11 Randall S. Becker <rsbecker@nexbridge.com>
Ben Elliston <bje@gnu.org>
* config.guess (NSV-*:NONSTOP_KERNEL:*:*): New.
* config.sub (nsv-tandem): New.
* testsuite/config-guess.data: Add a test case.
* testsuite/config-sub.data: Likewise.
2018-01-01 Ben Elliston <bje@gnu.org>
* config.guess: Update copyright years.
* config.sub: Likewise.
* doc/config.guess.1: Regenerate.
* doc/config.sub.1: Likewise.
2017-12-31 Andrew Pinski <apinski@cavium.com>
* config.sub (-bme*): New.
* testsuite/config-sub.data: Add a test case.
2017-12-17 Henry Bent <henry.r.bent@gmail.com>
* config.guess (mips:OSF1:*:*): Recognise.
* testsuite/config-guess.data: Add a test case.
2017-11-23 Olivier Hainque <hainque@adacore.com>
* config.sub: Map -pikeos to baremetal.
* testsuite/config-sub.data: Add tests for a few pikeos
configuration variants.
2017-11-07 Ben Elliston <bje@gnu.org>
Thanks to Urs Janßen.
* config.guess (mips:*:*:UMIPS | mips:*:*:RISCos): Fix typo.
2017-11-07 Ben Elliston <bje@gnu.org>
Reported by Nelson H. F. Beebe:
* config.guess (*:MidnightBSD:*:*): Recognise.
* testsuite/config-guess.data: Add a test case.
2017-11-05 Ben Elliston <bje@gnu.org>
Also revert -- these parens were there for a reason. :-(
* config.guess: Remove unnecessary parentheses inside `..` command
substitutions to improve clarity.
2017-11-04 Ben Elliston <bje@gnu.org>
Revert -- it's too soon to make this change.
* config.guess: Replace old-style `..` command substitution with
the more modern $(..) form.
* config.sub: Likewise.
2017-11-04 Ben Elliston <bje@gnu.org>
* config.sub (we32k): Remove duplicate case so that `we32k'
properly canonicalises to `we32k-att-sysv'.
* testsuite/config-sub.data: Update test case.
2017-11-04 Ben Elliston <bje@gnu.org>
* config.guess: Improve usage text.
* config.sub: Likewise.
2017-11-03 Ben Elliston <bje@gnu.org>
* config.guess: Replace old-style `..` command substitution with
the more modern $(..) form.
* config.sub: Likewise.
2017-11-03 Ben Elliston <bje@gnu.org>
* config.guess: Remove unnecessary parentheses inside `..` command
substitutions to improve clarity.
2017-11-01 Ben Elliston <bje@gnu.org>
* config.guess (i*86:SYSTEM_V:4.*:*): Remove pattern as this is
already matched by i*86:*:4.*:*.
2017-11-01 Ben Elliston <bje@gnu.org>
* config.guess (romp-ibm:4.4BSD:*): Correct pattern so that it
does not match romp-ibm:BSD:* in the immediately following case.
2017-11-01 Ben Elliston <bje@gnu.org>
* config.guess (mips:*:*:UMIPS | mips:*:*:RISCos): Use explicit
escaping for \n.
2017-11-01 Ben Elliston <bje@gnu.org>
* config.guess: Whitespace fixes.
* config.sub: Ditto.
2017-11-01 Ben Elliston <bje@gnu.org>
* config.sub (maybe_os): Remove redundant dpx2*-bull pattern.
Already matched by dpx2*.
2017-10-26 Ben Elliston <bje@gnu.org>
* testsuite/config-guess.sh (run_config_guess): Simplify.
* testsuite/config-sub.sh (run_config_sub): Likewise.
2017-10-26 Ben Elliston <bje@gnu.org>
* testsuite/config-guess.sh: Fix issues identified by Shellcheck.
* testsuite/config-sub.sh: Likewise.
2017-09-26 Ben Elliston <bje@gnu.org>
* config.guess: Output a note that a C compiler may be needed when
guessing fails on MIPS GNU/Linux systems.
2017-09-26 Ben Elliston <bje@gnu.org>
* config.guess (Local variables): Use 'write-file-functions
instead of the deprecated 'write-file-hook (as of Emacs 22.1).
* config.sub: Likewise.
2017-09-16 Paul Eggert <eggert@cs.ucla.edu>
Prefer https: to http: for gnu.org
In Gnulib, Emacs, etc. we are changing ftp: and http: URLs to
use https:, to help defend against man-in-the-middle attacks.
Propagate these changes upstream to the config scripts.
* config.guess, config.sub: Use https: URLs in diagnostics
and in comments.
2017-09-15 Ben Elliston <bje@gnu.org>
* testsuite/config-sub.data (i386-windows): New test case.
(x86_64-windows): Likewise.
2017-09-13 Ben Elliston <bje@gnu.org>
* config.sub (maybe_os): Add x64 alias for x86_64.
2017-09-12 Ben Elliston <bje@gnu.org>
* config.sub (maybe_os): Remove -windowsnt*.
* config.guess (Alpha\ *:Windows_NT*:*): Remove obsolete case.
(21064:Windows_NT:50:3): Likewise.
(i*:windows32*:*): Likewise.
([345]86:Windows_95:*, [345]86:Windows_98:*): Likewise.
([345]86:Windows_NT:*): Likewise.
(8664:Windows_NT:*): Likewise.
(i*:Windows_NT*:* | Pentium*:Windows_NT*:*): Likewise.
(p*:CYGWIN*:*): Likewise.
* testsuite/config-guess.data: Remove relevant test cases.
2017-09-10 Ben Elliston <bje@gnu.org>
* config.sub: Improve comments.
2017-08-26 Ben Elliston <bje@gnu.org>
* testsuite/config-guess.data: Sort.
2017-08-08 Ian Douglas Scott <ian@iandouglasscott.com>
Ben Elliston <bje@gnu.org>
* config.guess (*:Redox:*:*): New.
* testsuite/config-guess.data: Add a test case.
2017-07-19 Ben Elliston <bje@gnu.org>
* config.guess: Improve "outdated script" message.
2017-05-27 Mojca Miklavec <mojca.miklavec.lists@gmail.com>
* config.guess (*:Darwin:*:*): Set UNAME_PROCESSOR to powerpc when
__POWERPC__ is defined (e.g. when building with gcc -arch ppc).
2017-05-11 Ben Elliston <bje@gnu.org>
* config.guess (NSR-*:NONSTOP_KERNEL:*:*): Match suffix with *.
(NEO-*:NONSTOP_KERNEL:*:*): Likewise.
* testsuite/config-guess.data: Add test cases.
2017-05-11 Ben Elliston <bje@gnu.org>
Reported by Hugues Lefebvre <hugues.lefebvre@lusis.fr>.
* config.guess (NSX-*:NONSTOP_KERNEL:*:*): Some L-SERIES systems
now have more than one letter in the suffix, so match with *.
* testsuite/config-guess.data: Add a test case.
2017-04-02 Andrew Jenner <andrew@codesourcery.com>
Rask Ingemann Lambertsen <rask@sygehus.dk>
* config.sub: Add support for 16-bit Intel x86.
2017-03-21 Pip Cet <pipcet@gmail.com>
* config.sub: Recognise wasm32.
* testsuite/config-sub.data: Add a test case.
2017-03-05 Gerald Pfeifer <gerald@pfeifer.com>
* config.guess (*:FreeBSD:*:*): Refactor CPU handling.
Canonicalize i386-*-freebsd* to i586-*-freebsd*.
2017-02-07 Ben Elliston <bje@gnu.org>
Reported by Hugues Lefebvre <hugues.lefebvre@lusis.fr>.
* config.guess (NSX-?:NONSTOP_KERNEL:*:*): New.
* config.sub (nsx-tandem): New.
* testsuite/config-guess.data: Add a test case.
* testsuite/config-sub.data: Likewise.
2017-01-01 Ben Elliston <bje@gnu.org>
* config.guess: Update copyright years.
* config.sub: Likewise.
* doc/config.guess.1: Regenerate.
* doc/config.sub.1: Likewise.
2016-12-28 Ben Elliston <bje@gnu.org>
* Makefile (doc/config.guess.1): Depend on config.guess.
(doc/config.sub.1): Depend on config.sub.
2016-12-28 Ben Elliston <bje@gnu.org>
* doc/config.guess.1: Regenerate.
* doc/config.sub.1: Likewise.
2016-12-28 Ben Elliston <bje@gnu.org>
* testsuite/config-guess.data: Align columns.
2016-12-27 Ben Elliston <bje@gnu.org>
* testsuite/config-sub.data: Align columns.
2016-12-27 Ben Elliston <bje@gnu.org>
* testsuite/config-guess.data: Sort.
* testsuite/config-sub.data: Likewise.
2016-12-24 Jeremy Soller <jackpot51@gmail.com>
* config.sub (-redox*): New.
* testsuite/config-sub.data: Add a test case.
2016-12-16 Dimitar Dimitrov <dimitar@dinux.eu>
* config.sub (pru, pru-*): Force ELF format.
* testsuite/config-sub.data: Update PRU test case.
2016-11-19 Ben Elliston <bje@gnu.org>
* config.sub (glidix-*): Recognise.
* testsuite/config-sub.data: Add a test case.
2016-11-04 Ben Elliston <bje@gnu.org>
* testsuite/config-sub.sh: Improve top-of-file comment.
2016-11-04 Dimitar Dimitrov <dimitar@dinux.eu>
* config.sub (pru, pru-*): New.
* testsuite/config-sub.data: Add test cases.
2016-11-03 Doug Evans <dje@google.com>
* config.sub (-fuchsia*): New.
* testsuite/config-sub.data: Add a test case.
2016-10-03 Ben Elliston <bje@gnu.org>
* config.guess (mips64el:Linux:*:*): New.
* testsuite/config-guess.data: Add a test case.
2016-09-11 David Abdurachmanov <david.abdurachmanov@gmail.com>
* config.guess (riscv32:Linux:*:*, riscv64:Linux:*:*): New.
* testsuite/config-guess.data: Add riscv32, riscv64.
2016-09-05 Ed Schouten <ed@nuxi.nl>
* config.sub (cloudabi*-eabi*): Recognise.
* testsuite/config-sub.data: Add a test case.
2016-08-28 Ben Elliston <bje@gnu.org>
* testsuite/config-sub.data: Add more retrospective test cases.
2016-08-25 Alan Modra <amodra@gmail.com>
* config.sub: Don't match -le and -little for ppc.
2016-07-07 Ben Elliston <bje@gnu.org>
* testsuite/config-guess.data: Add ppc64le test case.
2016-07-03 Ben Elliston <bje@gnu.org>