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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
|
/* Compiler driver program that can handle many languages.
Copyright (C) 1987,1989 Free Software Foundation, Inc.
This file is part of GNU CC.
GNU CC is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 1, or (at your option)
any later version.
GNU CC is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU CC; see the file COPYING. If not, write to
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
This paragraph is here to try to keep Sun CC from dying.
The number of chars here seems crucial!!!! */
void record_temp_file ();
/* This program is the user interface to the C compiler and possibly to
other compilers. It is used because compilation is a complicated procedure
which involves running several programs and passing temporary files between
them, forwarding the users switches to those programs selectively,
and deleting the temporary files at the end.
CC recognizes how to compile each input file by suffixes in the file names.
Once it knows which kind of compilation to perform, the procedure for
compilation is specified by a string called a "spec".
Specs are strings containing lines, each of which (if not blank)
is made up of a program name, and arguments separated by spaces.
The program name must be exact and start from root, since no path
is searched and it is unreliable to depend on the current working directory.
Redirection of input or output is not supported; the subprograms must
accept filenames saying what files to read and write.
In addition, the specs can contain %-sequences to substitute variable text
or for conditional text. Here is a table of all defined %-sequences.
Note that spaces are not generated automatically around the results of
expanding these sequences; therefore, you can concatenate them together
or with constant text in a single argument.
%% substitute one % into the program name or argument.
%i substitute the name of the input file being processed.
%b substitute the basename of the input file being processed.
This is the substring up to (and not including) the last period.
%g substitute the temporary-file-name-base. This is a string chosen
once per compilation. Different temporary file names are made by
concatenation of constant strings on the end, as in `%g.s'.
%g also has the same effect of %d.
%d marks the argument containing or following the %d as a
temporary file name, so that that file will be deleted if CC exits
successfully. Unlike %g, this contributes no text to the argument.
%w marks the argument containing or following the %w as the
"output file" of this compilation. This puts the argument
into the sequence of arguments that %o will substitute later.
%W{...}
like %{...} but mark last argument supplied within
as a file to be deleted on failure.
%o substitutes the names of all the output files, with spaces
automatically placed around them. You should write spaces
around the %o as well or the results are undefined.
%o is for use in the specs for running the linker.
Input files whose names have no recognized suffix are not compiled
at all, but they are included among the output files, so they will
be linked.
%p substitutes the standard macro predefinitions for the
current target machine. Use this when running cpp.
%P like %p, but puts `__' before and after the name of each macro.
This is for ANSI C.
%s current argument is the name of a library or startup file of some sort.
Search for that file in a standard list of directories
and substitute the full pathname found.
%eSTR Print STR as an error message. STR is terminated by a newline.
Use this when inconsistent options are detected.
%a process ASM_SPEC as a spec.
This allows config.h to specify part of the spec for running as.
%l process LINK_SPEC as a spec.
%L process LIB_SPEC as a spec.
%G process LIBG_SPEC as a spec. A capital G is actually used here.
%S process STARTFILE_SPEC as a spec. A capital S is actually used here.
%E process ENDFILE_SPEC as a spec. A capital E is actually used here.
%c process SIGNED_CHAR_SPEC as a spec.
%C process CPP_SPEC as a spec. A capital C is actually used here.
%1 process CC1_SPEC as a spec.
%{S} substitutes the -S switch, if that switch was given to CC.
If that switch was not specified, this substitutes nothing.
Here S is a metasyntactic variable.
%{S*} substitutes all the switches specified to CC whose names start
with -S. This is used for -o, -D, -I, etc; switches that take
arguments. CC considers `-o foo' as being one switch whose
name starts with `o'. %{o*} would substitute this text,
including the space; thus, two arguments would be generated.
%{S:X} substitutes X, but only if the -S switch was given to CC.
%{!S:X} substitutes X, but only if the -S switch was NOT given to CC.
%{|S:X} like %{S:X}, but if no S switch, substitute `-'.
%{|!S:X} like %{!S:X}, but if there is an S switch, substitute `-'.
The conditional text X in a %{S:X} or %{!S:X} construct may contain
other nested % constructs or spaces, or even newlines.
They are processed as usual, as described above.
The character | is used to indicate that a command should be piped to
the following command, but only if -pipe is specified.
Note that it is built into CC which switches take arguments and which
do not. You might think it would be useful to generalize this to
allow each compiler's spec to say which switches take arguments. But
this cannot be done in a consistent fashion. CC cannot even decide
which input files have been specified without knowing which switches
take arguments, and it must know which input files to compile in order
to tell which compilers to run.
CC also knows implicitly that arguments starting in `-l' are to
be treated as compiler output files, and passed to the linker in their proper
position among the other output files.
*/
#include <stdio.h>
#include <sys/types.h>
#include <signal.h>
#include <sys/file.h>
#include <sys/stat.h>
#include "config.h"
#include "obstack.h"
#include "gvarargs.h"
#ifdef USG
#ifndef R_OK
#define R_OK 4
#define W_OK 2
#define X_OK 1
#endif
#define vfork fork
#endif /* USG */
#define obstack_chunk_alloc xmalloc
#define obstack_chunk_free free
extern int xmalloc ();
extern void free ();
/* If a stage of compilation returns an exit status >= 1,
compilation of that file ceases. */
#define MIN_FATAL_STATUS 1
/* This is the obstack which we use to allocate many strings. */
struct obstack obstack;
char *handle_braces ();
char *save_string ();
char *concat ();
int do_spec ();
int do_spec_1 ();
char *find_file ();
static char *find_exec_file ();
void validate_switches ();
void validate_all_switches ();
void fancy_abort ();
/* config.h can define ASM_SPEC to provide extra args to the assembler
or extra switch-translations. */
#ifndef ASM_SPEC
#define ASM_SPEC ""
#endif
/* config.h can define CPP_SPEC to provide extra args to the C preprocessor
or extra switch-translations. */
#ifndef CPP_SPEC
#define CPP_SPEC ""
#endif
/* config.h can define CC1_SPEC to provide extra args to cc1
or extra switch-translations. */
#ifndef CC1_SPEC
#define CC1_SPEC ""
#endif
/* config.h can define LINK_SPEC to provide extra args to the linker
or extra switch-translations. */
#ifndef LINK_SPEC
#define LINK_SPEC ""
#endif
/* config.h can define LIB_SPEC to override the default libraries. */
#ifndef LIB_SPEC
#define LIB_SPEC "%{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}"
#endif
/* config.h can define ENDFILE_SPEC to override the default crtn files. */
#ifndef ENDFILE_SPEC
#define ENDFILE_SPEC ""
#endif
/* config.h can define LIBG_SPEC to override the default debug libraries. */
#ifndef LIBG_SPEC
#define LIBG_SPEC "%{g:-lg}"
#endif
/* config.h can define STARTFILE_SPEC to override the default crt0 files. */
#ifndef STARTFILE_SPEC
#define STARTFILE_SPEC \
"%{pg:gcrt0.o%s}%{!pg:%{p:mcrt0.o%s}%{!p:crt0.o%s}}"
#endif
/* This spec is used for telling cpp whether char is signed or not. */
#define SIGNED_CHAR_SPEC \
(DEFAULT_SIGNED_CHAR ? "%{funsigned-char:-D__CHAR_UNSIGNED__}" \
: "%{!fsigned-char:-D__CHAR_UNSIGNED__}")
/* This defines which switch letters take arguments. */
#ifndef SWITCH_TAKES_ARG
#define SWITCH_TAKES_ARG(CHAR) \
((CHAR) == 'D' || (CHAR) == 'U' || (CHAR) == 'o' \
|| (CHAR) == 'e' || (CHAR) == 'T' || (CHAR) == 'u' \
|| (CHAR) == 'I' || (CHAR) == 'Y' || (CHAR) == 'm' \
|| (CHAR) == 'L' || (CHAR) == 'i' || (CHAR) == 'A')
#endif
/* This defines which multi-letter switches take arguments. */
#ifndef WORD_SWITCH_TAKES_ARG
#define WORD_SWITCH_TAKES_ARG(STR) (!strcmp (STR, "Tdata"))
#endif
/* This structure says how to run one compiler, and when to do so. */
struct compiler
{
char *suffix; /* Use this compiler for input files
whose names end in this suffix. */
char *spec; /* To use this compiler, pass this spec
to do_spec. */
};
/* Here are the specs for compiling files with various known suffixes.
A file that does not end in any of these suffixes will be passed
unchanged to the loader and nothing else will be done to it. */
struct compiler compilers[] =
{
{".c",
"cpp %{nostdinc} %{C} %{v} %{D*} %{U*} %{I*} %{M*} %{i*} %{trigraphs} -undef \
-D__GNUC__ %{ansi:-trigraphs -$ -D__STRICT_ANSI__} %{!ansi:%p} %P\
%c %{O:-D__OPTIMIZE__} %{traditional} %{pedantic} %{P}\
%{Wcomment*} %{Wtrigraphs} %{Wall} %{w} %C\
%i %{!M*:%{!E:%{!pipe:%g.cpp}}}%{E:%W{o*}}%{M*:%W{o*}} |\n\
%{!M*:%{!E:cc1 %{!pipe:%g.cpp} %1 \
%{!Q:-quiet} -dumpbase %i %{Y*} %{d*} %{m*} %{f*} %{a}\
%{g} %{O} %{W*} %{w} %{pedantic} %{ansi} %{traditional}\
%{v:-version} %{gg:-symout %g.sym} %{pg:-p} %{p}\
%{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
%{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} |\n\
%{!S:as %{R} %{j} %{J} %{h} %{d2} %a %{gg:-G %g.sym}\
%{c:%W{o*}%{!o*:-o %w%b.o}}%{!c:-o %d%w%b.o}\
%{!pipe:%g.s}\n }}}"},
{".cc",
"cpp -+ %{nostdinc} %{C} %{v} %{D*} %{U*} %{I*} %{M*} %{i*} \
-undef -D__GNUC__ -D__GNUG__ %p %P\
%c %{O:-D__OPTIMIZE__} %{traditional} %{pedantic} %{P}\
%{Wcomment*} %{Wtrigraphs} %{Wall} %{w} %C\
%i %{!M*:%{!E:%{!pipe:%g.cpp}}}%{E:%W{o*}}%{M*:%W{o*}} |\n\
%{!M*:%{!E:cc1plus %{!pipe:%g.cpp} %1\
%{!Q:-quiet} -dumpbase %i %{Y*} %{d*} %{m*} %{f*} %{a}\
%{g} %{O} %{W*} %{w} %{pedantic} %{traditional}\
%{v:-version} %{gg:-symout %g.sym} %{pg:-p} %{p}\
%{pg:%{fomit-frame-pointer:%e-pg and -fomit-frame-pointer are incompatible}}\
%{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} |\n\
%{!S:as %{R} %{j} %{J} %{h} %{d2} %a %{gg:-G %g.sym}\
%{c:%W{o*}%{!o*:-o %w%b.o}}%{!c:-o %d%w%b.o}\
%{!pipe:%g.s}\n }}}"},
{".i",
"cc1 %i %1 %{!Q:-quiet} %{Y*} %{d*} %{m*} %{f*} %{a}\
%{g} %{O} %{W*} %{w} %{pedantic} %{ansi} %{traditional}\
%{v:-version} %{gg:-symout %g.sym} %{pg:-p} %{p}\
%{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} |\n\
%{!S:as %{R} %{j} %{J} %{h} %{d2} %a %{gg:-G %g.sym}\
%{c:%W{o*}%{!o*:-o %w%b.o}}%{!c:-o %d%w%b.o} %{!pipe:%g.s}\n }"},
{".s",
"%{!S:as %{R} %{j} %{J} %{h} %{d2} %a \
%{c:%W{o*}%{!o*:-o %w%b.o}}%{!c:-o %d%w%b.o} %i\n }"},
{".S",
"cpp %{nostdinc} %{C} %{v} %{D*} %{U*} %{I*} %{M*} %{trigraphs} \
-undef -D__GNUC__ -$ %p %P\
%c %{O:-D__OPTIMIZE__} %{traditional} %{pedantic} %{P}\
%{Wcomment*} %{Wtrigraphs} %{Wall} %{w} %C\
%i %{!M*:%{!E:%{!pipe:%g.s}}}%{E:%W{o*}}%{M*:%W{o*}} |\n\
%{!M*:%{!E:%{!S:as %{R} %{j} %{J} %{h} %{d2} %a \
%{c:%W{o*}%{!o*:-o %w%b.o}}%{!c:-o %d%w%b.o}\
%{!pipe:%g.s}\n }}}"},
/* Mark end of table */
{0, 0}
};
/* Here is the spec for running the linker, after compiling all files. */
char *link_spec = "%{!c:%{!M*:%{!E:%{!S:ld %{o*} %l\
%{A} %{d} %{e*} %{N} %{n} %{r} %{s} %{S} %{T*} %{t} %{u*} %{X} %{x} %{z}\
%{y*} %{!A:%{!nostdlib:%S}} \
%{L*} %o %{!nostdlib:%G gnulib%s %L gnulib%s %{!A:%E}}\n }}}}";
/* Accumulate a command (program name and args), and run it. */
/* Vector of pointers to arguments in the current line of specifications. */
char **argbuf;
/* Number of elements allocated in argbuf. */
int argbuf_length;
/* Number of elements in argbuf currently in use (containing args). */
int argbuf_index;
/* Number of commands executed so far. */
int execution_count;
/* Flag indicating whether we should print the command and arguments */
unsigned char vflag;
/* Name with which this program was invoked. */
char *programname;
/* User-specified -B prefix to attach to command names,
or 0 if none specified. */
char *user_exec_prefix = 0;
/* Environment-specified prefix to attach to command names,
or 0 if none specified. */
char *env_exec_prefix = 0;
/* Suffix to attach to directories searched for commands. */
char *machine_suffix = 0;
/* Default prefixes to attach to command names. */
#ifndef STANDARD_EXEC_PREFIX
#define STANDARD_EXEC_PREFIX "/usr/local/lib/gcc-"
#endif /* !defined STANDARD_EXEC_PREFIX */
char *standard_exec_prefix = STANDARD_EXEC_PREFIX;
char *standard_exec_prefix_1 = "/usr/lib/gcc-";
#ifndef STANDARD_STARTFILE_PREFIX
#define STANDARD_STARTFILE_PREFIX "/usr/local/lib/"
#endif /* !defined STANDARD_STARTFILE_PREFIX */
char *standard_startfile_prefix = STANDARD_STARTFILE_PREFIX;
char *standard_startfile_prefix_1 = "/lib/";
char *standard_startfile_prefix_2 = "/usr/lib/";
/* Clear out the vector of arguments (after a command is executed). */
void
clear_args ()
{
argbuf_index = 0;
}
/* Add one argument to the vector at the end.
This is done when a space is seen or at the end of the line.
If DELETE_ALWAYS is nonzero, the arg is a filename
and the file should be deleted eventually.
If DELETE_FAILURE is nonzero, the arg is a filename
and the file should be deleted if this compilation fails. */
void
store_arg (arg, delete_always, delete_failure)
char *arg;
int delete_always, delete_failure;
{
if (argbuf_index + 1 == argbuf_length)
argbuf = (char **) xrealloc (argbuf, (argbuf_length *= 2) * sizeof (char *));
argbuf[argbuf_index++] = arg;
argbuf[argbuf_index] = 0;
if (delete_always || delete_failure)
record_temp_file (arg, delete_always, delete_failure);
}
/* Record the names of temporary files we tell compilers to write,
and delete them at the end of the run. */
/* This is the common prefix we use to make temp file names.
It is chosen once for each run of this program.
It is substituted into a spec by %g.
Thus, all temp file names contain this prefix.
In practice, all temp file names start with this prefix.
This prefix comes from the envvar TMPDIR if it is defined;
otherwise, from the P_tmpdir macro if that is defined;
otherwise, in /usr/tmp or /tmp. */
char *temp_filename;
/* Length of the prefix. */
int temp_filename_length;
/* Define the list of temporary files to delete. */
struct temp_file
{
char *name;
struct temp_file *next;
};
/* Queue of files to delete on success or failure of compilation. */
struct temp_file *always_delete_queue;
/* Queue of files to delete on failure of compilation. */
struct temp_file *failure_delete_queue;
/* Record FILENAME as a file to be deleted automatically.
ALWAYS_DELETE nonzero means delete it if all compilation succeeds;
otherwise delete it in any case.
FAIL_DELETE nonzero means delete it if a compilation step fails;
otherwise delete it in any case. */
void
record_temp_file (filename, always_delete, fail_delete)
char *filename;
int always_delete;
int fail_delete;
{
register char *name;
name = (char *) xmalloc (strlen (filename) + 1);
strcpy (name, filename);
if (always_delete)
{
register struct temp_file *temp;
for (temp = always_delete_queue; temp; temp = temp->next)
if (! strcmp (name, temp->name))
goto already1;
temp = (struct temp_file *) xmalloc (sizeof (struct temp_file));
temp->next = always_delete_queue;
temp->name = name;
always_delete_queue = temp;
already1:;
}
if (fail_delete)
{
register struct temp_file *temp;
for (temp = failure_delete_queue; temp; temp = temp->next)
if (! strcmp (name, temp->name))
goto already2;
temp = (struct temp_file *) xmalloc (sizeof (struct temp_file));
temp->next = failure_delete_queue;
temp->name = name;
failure_delete_queue = temp;
already2:;
}
}
/* Delete all the temporary files whose names we previously recorded. */
void
delete_temp_files ()
{
register struct temp_file *temp;
for (temp = always_delete_queue; temp; temp = temp->next)
{
#ifdef DEBUG
int i;
printf ("Delete %s? (y or n) ", temp->name);
fflush (stdout);
i = getchar ();
if (i != '\n')
while (getchar () != '\n') ;
if (i == 'y' || i == 'Y')
#endif /* DEBUG */
{
struct stat st;
if (stat (temp->name, &st) >= 0)
{
/* Delete only ordinary files. */
if ((st.st_mode & S_IFMT) == S_IFREG)
if (unlink (temp->name) < 0)
if (vflag)
perror_with_name (temp->name);
}
}
}
always_delete_queue = 0;
}
/* Delete all the files to be deleted on error. */
void
delete_failure_queue ()
{
register struct temp_file *temp;
for (temp = failure_delete_queue; temp; temp = temp->next)
{
#ifdef DEBUG
int i;
printf ("Delete %s? (y or n) ", temp->name);
fflush (stdout);
i = getchar ();
if (i != '\n')
while (getchar () != '\n') ;
if (i == 'y' || i == 'Y')
#endif /* DEBUG */
{
if (unlink (temp->name) < 0)
if (vflag)
perror_with_name (temp->name);
}
}
}
void
clear_failure_queue ()
{
failure_delete_queue = 0;
}
/* Compute a string to use as the base of all temporary file names.
It is substituted for %g. */
void
choose_temp_base ()
{
extern char *getenv ();
char *base = getenv ("TMPDIR");
int len;
if (base == (char *)0)
{
#ifdef P_tmpdir
if (access (P_tmpdir, R_OK | W_OK) == 0)
base = P_tmpdir;
#endif
if (base == (char *)0)
{
if (access ("/usr/tmp", R_OK | W_OK) == 0)
base = "/usr/tmp/";
else
base = "/tmp/";
}
}
len = strlen (base);
temp_filename = (char *) xmalloc (len + sizeof("/ccXXXXXX"));
strcpy (temp_filename, base);
if (len > 0 && temp_filename[len-1] != '/')
temp_filename[len++] = '/';
strcpy (temp_filename + len, "ccXXXXXX");
mktemp (temp_filename);
temp_filename_length = strlen (temp_filename);
}
/* Search for an execute file through our search path.
Return 0 if not found, otherwise return its name, allocated with malloc. */
static char *
find_exec_file (prog)
char *prog;
{
int win = 0;
char *temp;
int size;
size = strlen (standard_exec_prefix);
if (user_exec_prefix != 0 && strlen (user_exec_prefix) > size)
size = strlen (user_exec_prefix);
if (env_exec_prefix != 0 && strlen (env_exec_prefix) > size)
size = strlen (env_exec_prefix);
if (strlen (standard_exec_prefix_1) > size)
size = strlen (standard_exec_prefix_1);
size += strlen (prog) + 1;
if (machine_suffix)
size += strlen (machine_suffix) + 1;
temp = (char *) xmalloc (size);
/* Determine the filename to execute. */
if (user_exec_prefix)
{
if (machine_suffix)
{
strcpy (temp, user_exec_prefix);
strcat (temp, machine_suffix);
strcat (temp, prog);
win = (access (temp, X_OK) == 0);
}
if (!win)
{
strcpy (temp, user_exec_prefix);
strcat (temp, prog);
win = (access (temp, X_OK) == 0);
}
}
if (!win && env_exec_prefix)
{
if (machine_suffix)
{
strcpy (temp, env_exec_prefix);
strcat (temp, machine_suffix);
strcat (temp, prog);
win = (access (temp, X_OK) == 0);
}
if (!win)
{
strcpy (temp, env_exec_prefix);
strcat (temp, prog);
win = (access (temp, X_OK) == 0);
}
}
if (!win)
{
if (machine_suffix)
{
strcpy (temp, standard_exec_prefix);
strcat (temp, machine_suffix);
strcat (temp, prog);
win = (access (temp, X_OK) == 0);
}
if (!win)
{
strcpy (temp, standard_exec_prefix);
strcat (temp, prog);
win = (access (temp, X_OK) == 0);
}
}
if (!win)
{
if (machine_suffix)
{
strcpy (temp, standard_exec_prefix_1);
strcat (temp, machine_suffix);
strcat (temp, prog);
win = (access (temp, X_OK) == 0);
}
if (!win)
{
strcpy (temp, standard_exec_prefix_1);
strcat (temp, prog);
win = (access (temp, X_OK) == 0);
}
}
if (win)
return temp;
else
return 0;
}
/* stdin file number. */
#define STDIN_FILE_NO 0
/* stdout file number. */
#define STDOUT_FILE_NO 1
/* value of `pipe': port index for reading. */
#define READ_PORT 0
/* value of `pipe': port index for writing. */
#define WRITE_PORT 1
/* Pipe waiting from last process, to be used as input for the next one.
Value is STDIN_FILE_NO if no pipe is waiting
(i.e. the next command is the first of a group). */
int last_pipe_input;
/* Fork one piped subcommand. FUNC is the system call to use
(either execv or execvp). ARGV is the arg vector to use.
NOT_LAST is nonzero if this is not the last subcommand
(i.e. its output should be piped to the next one.) */
static int
pexecute (func, program, argv, not_last)
char *program;
int (*func)();
char *argv[];
int not_last;
{
int pid;
int pdes[2];
int input_desc = last_pipe_input;
int output_desc = STDOUT_FILE_NO;
/* If this isn't the last process, make a pipe for its output,
and record it as waiting to be the input to the next process. */
if (not_last)
{
if (pipe (pdes) < 0)
pfatal_with_name ("pipe");
output_desc = pdes[WRITE_PORT];
last_pipe_input = pdes[READ_PORT];
}
else
last_pipe_input = STDIN_FILE_NO;
pid = vfork ();
switch (pid)
{
case -1:
pfatal_with_name ("vfork");
break;
case 0: /* child */
/* Move the input and output pipes into place, if nec. */
if (input_desc != STDIN_FILE_NO)
{
close (STDIN_FILE_NO);
dup (input_desc);
close (input_desc);
}
if (output_desc != STDOUT_FILE_NO)
{
close (STDOUT_FILE_NO);
dup (output_desc);
close (output_desc);
}
/* Close the parent's descs that aren't wanted here. */
if (last_pipe_input != STDIN_FILE_NO)
close (last_pipe_input);
/* Exec the program. */
(*func) (program, argv);
perror_exec (program);
exit (-1);
/* NOTREACHED */
default:
/* In the parent, after forking.
Close the descriptors that we made for this child. */
if (input_desc != STDIN_FILE_NO)
close (input_desc);
if (output_desc != STDOUT_FILE_NO)
close (output_desc);
/* Return child's process number. */
return pid;
}
}
/* Execute the command specified by the arguments on the current line of spec.
When using pipes, this includes several piped-together commands
with `|' between them.
Return 0 if successful, -1 if failed. */
int
execute ()
{
int i, j;
int n_commands; /* # of command. */
char *string;
struct command
{
char *prog; /* program name. */
char **argv; /* vector of args. */
int pid; /* pid of process for this command. */
};
struct command *commands; /* each command buffer with above info. */
/* Count # of piped commands. */
for (n_commands = 1, i = 0; i < argbuf_index; i++)
if (strcmp (argbuf[i], "|") == 0)
n_commands++;
/* Get storage for each command. */
commands
= (struct command *) alloca (n_commands * sizeof (struct command));
/* Split argbuf into its separate piped processes,
and record info about each one.
Also search for the programs that are to be run. */
commands[0].prog = argbuf[0]; /* first command. */
commands[0].argv = &argbuf[0];
string = find_exec_file (commands[0].prog);
if (string)
commands[0].argv[0] = string;
for (n_commands = 1, i = 0; i < argbuf_index; i++)
if (strcmp (argbuf[i], "|") == 0)
{ /* each command. */
argbuf[i] = 0; /* termination of command args. */
commands[n_commands].prog = argbuf[i + 1];
commands[n_commands].argv = &argbuf[i + 1];
string = find_exec_file (commands[n_commands].prog);
if (string)
commands[n_commands].argv[0] = string;
n_commands++;
}
argbuf[argbuf_index] = 0;
/* If -v, print what we are about to do, and maybe query. */
if (vflag)
{
/* Print each piped command as a separate line. */
for (i = 0; i < n_commands ; i++)
{
char **j;
for (j = commands[i].argv; *j; j++)
fprintf (stderr, " %s", *j);
/* Print a pipe symbol after all but the last command. */
if (i + 1 != n_commands)
fprintf (stderr, " |");
fprintf (stderr, "\n");
}
fflush (stderr);
#ifdef DEBUG
fprintf (stderr, "\nGo ahead? (y or n) ");
fflush (stderr);
j = getchar ();
if (j != '\n')
while (getchar () != '\n') ;
if (j != 'y' && j != 'Y')
return 0;
#endif /* DEBUG */
}
/* Run each piped subprocess. */
last_pipe_input = STDIN_FILE_NO;
for (i = 0; i < n_commands; i++)
{
extern int execv(), execvp();
char *string = commands[i].argv[0];
commands[i].pid = pexecute ((string != commands[i].prog ? execv : execvp),
string, commands[i].argv,
i + 1 < n_commands);
if (string != commands[i].prog)
free (string);
}
execution_count++;
/* Wait for all the subprocesses to finish.
We don't care what order they finish in;
we know that N_COMMANDS waits will get them all. */
{
int ret_code = 0;
for (i = 0; i < n_commands; i++)
{
int status;
int pid;
char *prog;
pid = wait (&status);
if (pid < 0)
abort ();
if (status != 0)
{
int j;
for (j = 0; j < n_commands; j++)
if (commands[j].pid == pid)
prog = commands[j].prog;
if ((status & 0x7F) != 0)
fatal ("Program %s got fatal signal %d.", prog, (status & 0x7F));
if (((status & 0xFF00) >> 8) >= MIN_FATAL_STATUS)
ret_code = -1;
}
}
return ret_code;
}
}
/* Find all the switches given to us
and make a vector describing them.
The elements of the vector a strings, one per switch given.
If a switch uses the following argument, then the `part1' field
is the switch itself and the `part2' field is the following argument.
The `valid' field is nonzero if any spec has looked at this switch;
if it remains zero at the end of the run, it must be meaningless. */
struct switchstr
{
char *part1;
char *part2;
int valid;
};
struct switchstr *switches;
int n_switches;
/* Also a vector of input files specified. */
char **infiles;
int n_infiles;
/* And a vector of corresponding output files is made up later. */
char **outfiles;
/* Create the vector `switches' and its contents.
Store its length in `n_switches'. */
void
process_command (argc, argv)
int argc;
char **argv;
{
extern char *getenv ();
register int i;
n_switches = 0;
n_infiles = 0;
env_exec_prefix = getenv ("GCC_EXEC_PREFIX");
/* Scan argv twice. Here, the first time, just count how many switches
there will be in their vector, and how many input files in theirs.
Here we also parse the switches that cc itself uses (e.g. -v). */
for (i = 1; i < argc; i++)
{
if (argv[i][0] == '-' && argv[i][1] != 'l')
{
register char *p = &argv[i][1];
register int c = *p;
switch (c)
{
case 'b':
machine_suffix = p + 1;
break;
case 'B':
user_exec_prefix = p + 1;
break;
case 'v': /* Print our subcommands and print versions. */
vflag++;
n_switches++;
break;
default:
n_switches++;
if (SWITCH_TAKES_ARG (c) && p[1] == 0)
i++;
else if (WORD_SWITCH_TAKES_ARG (p))
i++;
}
}
else
n_infiles++;
}
/* Then create the space for the vectors and scan again. */
switches = ((struct switchstr *)
xmalloc ((n_switches + 1) * sizeof (struct switchstr)));
infiles = (char **) xmalloc ((n_infiles + 1) * sizeof (char *));
n_switches = 0;
n_infiles = 0;
/* This, time, copy the text of each switch and store a pointer
to the copy in the vector of switches.
Store all the infiles in their vector. */
for (i = 1; i < argc; i++)
{
if (argv[i][0] == '-' && argv[i][1] != 'l')
{
register char *p = &argv[i][1];
register int c = *p;
if (c == 'B' || c == 'b')
continue;
switches[n_switches].part1 = p;
if ((SWITCH_TAKES_ARG (c) && p[1] == 0)
|| WORD_SWITCH_TAKES_ARG (p))
switches[n_switches].part2 = argv[++i];
else if (c == 'o') {
/* On some systems, ld cannot handle -o without space.
So split the -o and its argument. */
switches[n_switches].part2 = (char *) xmalloc (strlen (p));
strcpy (switches[n_switches].part2, &p[1]);
p[1] = 0;
} else
switches[n_switches].part2 = 0;
switches[n_switches].valid = 0;
n_switches++;
}
else
infiles[n_infiles++] = argv[i];
}
switches[n_switches].part1 = 0;
infiles[n_infiles] = 0;
}
/* Process a spec string, accumulating and running commands. */
/* These variables describe the input file name.
input_file_number is the index on outfiles of this file,
so that the output file name can be stored for later use by %o.
input_basename is the start of the part of the input file
sans all directory names, and basename_length is the number
of characters starting there excluding the suffix .c or whatever. */
char *input_filename;
int input_file_number;
int input_filename_length;
int basename_length;
char *input_basename;
/* These are variables used within do_spec and do_spec_1. */
/* Nonzero if an arg has been started and not yet terminated
(with space, tab or newline). */
int arg_going;
/* Nonzero means %d or %g has been seen; the next arg to be terminated
is a temporary file name. */
int delete_this_arg;
/* Nonzero means %w has been seen; the next arg to be terminated
is the output file name of this compilation. */
int this_is_output_file;
/* Nonzero means %s has been seen; the next arg to be terminated
is the name of a library file and we should try the standard
search dirs for it. */
int this_is_library_file;
/* Process the spec SPEC and run the commands specified therein.
Returns 0 if the spec is successfully processed; -1 if failed. */
int
do_spec (spec)
char *spec;
{
int value;
clear_args ();
arg_going = 0;
delete_this_arg = 0;
this_is_output_file = 0;
this_is_library_file = 0;
value = do_spec_1 (spec, 0);
/* Force out any unfinished command.
If -pipe, this forces out the last command if it ended in `|'. */
if (value == 0)
{
if (argbuf_index > 0 && !strcmp (argbuf[argbuf_index - 1], "|"))
argbuf_index--;
if (argbuf_index > 0)
value = execute ();
}
return value;
}
/* Process the sub-spec SPEC as a portion of a larger spec.
This is like processing a whole spec except that we do
not initialize at the beginning and we do not supply a
newline by default at the end.
INSWITCH nonzero means don't process %-sequences in SPEC;
in this case, % is treated as an ordinary character.
This is used while substituting switches.
INSWITCH nonzero also causes SPC not to terminate an argument.
Value is zero unless a line was finished
and the command on that line reported an error. */
int
do_spec_1 (spec, inswitch)
char *spec;
int inswitch;
{
register char *p = spec;
register int c;
char *string;
while (c = *p++)
/* If substituting a switch, treat all chars like letters.
Otherwise, NL, SPC, TAB and % are special. */
switch (inswitch ? 'a' : c)
{
case '\n':
/* End of line: finish any pending argument,
then run the pending command if one has been started. */
if (arg_going)
{
obstack_1grow (&obstack, 0);
string = obstack_finish (&obstack);
if (this_is_library_file)
string = find_file (string);
store_arg (string, delete_this_arg, this_is_output_file);
if (this_is_output_file)
outfiles[input_file_number] = string;
}
arg_going = 0;
if (argbuf_index > 0 && !strcmp (argbuf[argbuf_index - 1], "|"))
{
int i;
for (i = 0; i < n_switches; i++)
if (!strcmp (switches[i].part1, "pipe"))
break;
/* A `|' before the newline means use a pipe here,
but only if -pipe was specified.
Otherwise, execute now and don't pass the `|' as an arg. */
if (i < n_switches)
{
switches[i].valid = 1;
break;
}
else
argbuf_index--;
}
if (argbuf_index > 0)
{
int value = execute ();
if (value)
return value;
}
/* Reinitialize for a new command, and for a new argument. */
clear_args ();
arg_going = 0;
delete_this_arg = 0;
this_is_output_file = 0;
this_is_library_file = 0;
break;
case '|':
/* End any pending argument. */
if (arg_going)
{
obstack_1grow (&obstack, 0);
string = obstack_finish (&obstack);
if (this_is_library_file)
string = find_file (string);
store_arg (string, delete_this_arg, this_is_output_file);
if (this_is_output_file)
outfiles[input_file_number] = string;
}
/* Use pipe */
obstack_1grow (&obstack, c);
arg_going = 1;
break;
case '\t':
case ' ':
/* Space or tab ends an argument if one is pending. */
if (arg_going)
{
obstack_1grow (&obstack, 0);
string = obstack_finish (&obstack);
if (this_is_library_file)
string = find_file (string);
store_arg (string, delete_this_arg, this_is_output_file);
if (this_is_output_file)
outfiles[input_file_number] = string;
}
/* Reinitialize for a new argument. */
arg_going = 0;
delete_this_arg = 0;
this_is_output_file = 0;
this_is_library_file = 0;
break;
case '%':
switch (c = *p++)
{
case 0:
fatal ("Invalid specification! Bug in cc.");
case 'b':
obstack_grow (&obstack, input_basename, basename_length);
arg_going = 1;
break;
case 'd':
delete_this_arg = 2;
break;
case 'e':
/* {...:%efoo} means report an error with `foo' as error message
and don't execute any more commands for this file. */
{
char *q = p;
char *buf;
while (*p != 0 && *p != '\n') p++;
buf = (char *) alloca (p - q + 1);
strncpy (buf, q, p - q);
buf[p - q] = 0;
error ("%s", buf);
return -1;
}
break;
case 'g':
obstack_grow (&obstack, temp_filename, temp_filename_length);
delete_this_arg = 1;
arg_going = 1;
break;
case 'i':
obstack_grow (&obstack, input_filename, input_filename_length);
arg_going = 1;
break;
case 'o':
{
register int f;
for (f = 0; f < n_infiles; f++)
store_arg (outfiles[f], 0, 0);
}
break;
case 's':
this_is_library_file = 1;
break;
case 'W':
{
int index = argbuf_index;
/* Handle the {...} following the %W. */
if (*p != '{')
abort ();
p = handle_braces (p + 1);
if (p == 0)
return -1;
/* If any args were output, mark the last one for deletion
on failure. */
if (argbuf_index != index)
record_temp_file (argbuf[argbuf_index - 1], 0, 1);
break;
}
case 'w':
this_is_output_file = 1;
break;
case '{':
p = handle_braces (p);
if (p == 0)
return -1;
break;
case '%':
obstack_1grow (&obstack, '%');
break;
/*** The rest just process a certain constant string as a spec. */
case '1':
do_spec_1 (CC1_SPEC, 0);
break;
case 'a':
do_spec_1 (ASM_SPEC, 0);
break;
case 'c':
do_spec_1 (SIGNED_CHAR_SPEC, 0);
break;
case 'C':
do_spec_1 (CPP_SPEC, 0);
break;
case 'l':
do_spec_1 (LINK_SPEC, 0);
break;
case 'L':
do_spec_1 (LIB_SPEC, 0);
break;
case 'G':
do_spec_1 (LIBG_SPEC, 0);
break;
case 'p':
do_spec_1 (CPP_PREDEFINES, 0);
break;
case 'P':
{
char *x = (char *) alloca (strlen (CPP_PREDEFINES) * 2 + 1);
char *buf = x;
char *y = CPP_PREDEFINES;
/* Copy all of CPP_PREDEFINES into BUF,
but put __ after every -D and at the end of each arg, */
while (1)
{
if (! strncmp (y, "-D", 2))
{
*x++ = '-';
*x++ = 'D';
*x++ = '_';
*x++ = '_';
y += 2;
}
else if (*y == ' ' || *y == 0)
{
*x++ = '_';
*x++ = '_';
if (*y == 0)
break;
else
*x++ = *y++;
}
else
*x++ = *y++;
}
*x = 0;
do_spec_1 (buf, 0);
}
break;
case 'S':
do_spec_1 (STARTFILE_SPEC, 0);
break;
case 'E':
do_spec_1 (ENDFILE_SPEC, 0);
break;
default:
abort ();
}
break;
default:
/* Ordinary character: put it into the current argument. */
obstack_1grow (&obstack, c);
arg_going = 1;
}
return 0; /* End of string */
}
/* Return 0 if we call do_spec_1 and that returns -1. */
char *
handle_braces (p)
register char *p;
{
register char *q;
char *filter;
int pipe = 0;
int negate = 0;
if (*p == '|')
/* A `|' after the open-brace means,
if the test fails, output a single minus sign rather than nothing.
This is used in %{|!pipe:...}. */
pipe = 1, ++p;
if (*p == '!')
/* A `!' after the open-brace negates the condition:
succeed if the specified switch is not present. */
negate = 1, ++p;
filter = p;
while (*p != ':' && *p != '}') p++;
if (*p != '}')
{
register int count = 1;
q = p + 1;
while (count > 0)
{
if (*q == '{')
count++;
else if (*q == '}')
count--;
else if (*q == 0)
abort ();
q++;
}
}
else
q = p + 1;
if (p[-1] == '*' && p[0] == '}')
{
/* Substitute all matching switches as separate args. */
register int i;
--p;
for (i = 0; i < n_switches; i++)
if (!strncmp (switches[i].part1, filter, p - filter))
give_switch (i);
}
else
{
/* Test for presence of the specified switch. */
register int i;
int present = 0;
/* If name specified ends in *, as in {x*:...},
check for presence of any switch name starting with x. */
if (p[-1] == '*')
{
for (i = 0; i < n_switches; i++)
{
if (!strncmp (switches[i].part1, filter, p - filter - 1))
{
switches[i].valid = 1;
present = 1;
}
}
}
/* Otherwise, check for presence of exact name specified. */
else
{
for (i = 0; i < n_switches; i++)
{
if (!strncmp (switches[i].part1, filter, p - filter)
&& switches[i].part1[p - filter] == 0)
{
switches[i].valid = 1;
present = 1;
break;
}
}
}
/* If it is as desired (present for %{s...}, absent for %{-s...})
then substitute either the switch or the specified
conditional text. */
if (present != negate)
{
if (*p == '}')
{
give_switch (i);
}
else
{
if (do_spec_1 (save_string (p + 1, q - p - 2), 0) < 0)
return 0;
}
}
else if (pipe)
{
/* Here if a %{|...} conditional fails: output a minus sign,
which means "standard output" or "standard input". */
do_spec_1 ("-", 0);
}
}
return q;
}
/* Pass a switch to the current accumulating command
in the same form that we received it.
SWITCHNUM identifies the switch; it is an index into
the vector of switches gcc received, which is `switches'.
This cannot fail since it never finishes a command line. */
give_switch (switchnum)
int switchnum;
{
do_spec_1 ("-", 0);
do_spec_1 (switches[switchnum].part1, 1);
do_spec_1 (" ", 0);
if (switches[switchnum].part2 != 0)
{
do_spec_1 (switches[switchnum].part2, 1);
do_spec_1 (" ", 0);
}
switches[switchnum].valid = 1;
}
/* Search for a file named NAME trying various prefixes including the
user's -B prefix and some standard ones.
Return the absolute pathname found. If nothing is found, return NAME. */
char *
find_file (name)
char *name;
{
int size;
char *temp;
int win = 0;
/* Compute maximum size of NAME plus any prefix we will try. */
size = strlen (standard_exec_prefix);
if (user_exec_prefix != 0 && strlen (user_exec_prefix) > size)
size = strlen (user_exec_prefix);
if (env_exec_prefix != 0 && strlen (env_exec_prefix) > size)
size = strlen (env_exec_prefix);
if (strlen (standard_exec_prefix) > size)
size = strlen (standard_exec_prefix);
if (strlen (standard_exec_prefix_1) > size)
size = strlen (standard_exec_prefix_1);
if (strlen (standard_startfile_prefix) > size)
size = strlen (standard_startfile_prefix);
if (strlen (standard_startfile_prefix_1) > size)
size = strlen (standard_startfile_prefix_1);
if (strlen (standard_startfile_prefix_2) > size)
size = strlen (standard_startfile_prefix_2);
if (machine_suffix)
size += strlen (machine_suffix) + 1;
size += strlen (name) + 1;
temp = (char *) alloca (size);
if (user_exec_prefix)
{
if (machine_suffix)
{
strcpy (temp, user_exec_prefix);
strcat (temp, machine_suffix);
strcat (temp, name);
win = (access (temp, R_OK) == 0);
}
if (!win)
{
strcpy (temp, user_exec_prefix);
strcat (temp, name);
win = (access (temp, R_OK) == 0);
}
}
if (!win && env_exec_prefix)
{
if (machine_suffix)
{
strcpy (temp, env_exec_prefix);
strcat (temp, machine_suffix);
strcat (temp, name);
win = (access (temp, R_OK) == 0);
}
if (!win)
{
strcpy (temp, env_exec_prefix);
strcat (temp, name);
win = (access (temp, R_OK) == 0);
}
}
if (!win)
{
if (machine_suffix)
{
strcpy (temp, standard_exec_prefix);
strcat (temp, machine_suffix);
strcat (temp, name);
win = (access (temp, R_OK) == 0);
}
if (!win)
{
strcpy (temp, standard_exec_prefix);
strcat (temp, name);
win = (access (temp, R_OK) == 0);
}
}
if (!win)
{
if (machine_suffix)
{
strcpy (temp, standard_exec_prefix_1);
strcat (temp, machine_suffix);
strcat (temp, name);
win = (access (temp, R_OK) == 0);
}
if (!win)
{
strcpy (temp, standard_exec_prefix_1);
strcat (temp, name);
win = (access (temp, R_OK) == 0);
}
}
if (!win)
{
if (machine_suffix)
{
strcpy (temp, standard_startfile_prefix);
strcat (temp, machine_suffix);
strcat (temp, name);
win = (access (temp, R_OK) == 0);
}
if (!win)
{
strcpy (temp, standard_startfile_prefix);
strcat (temp, name);
win = (access (temp, R_OK) == 0);
}
}
if (!win)
{
if (machine_suffix)
{
strcpy (temp, standard_startfile_prefix_1);
strcat (temp, machine_suffix);
strcat (temp, name);
win = (access (temp, R_OK) == 0);
}
if (!win)
{
strcpy (temp, standard_startfile_prefix_1);
strcat (temp, name);
win = (access (temp, R_OK) == 0);
}
}
if (!win)
{
if (machine_suffix)
{
strcpy (temp, standard_startfile_prefix_2);
strcat (temp, machine_suffix);
strcat (temp, name);
win = (access (temp, R_OK) == 0);
}
if (!win)
{
strcpy (temp, standard_startfile_prefix_2);
strcat (temp, name);
win = (access (temp, R_OK) == 0);
}
}
if (!win)
{
if (machine_suffix)
{
strcpy (temp, "./");
strcat (temp, machine_suffix);
strcat (temp, name);
win = (access (temp, R_OK) == 0);
}
if (!win)
{
strcpy (temp, "./");
strcat (temp, name);
win = (access (temp, R_OK) == 0);
}
}
if (win)
return save_string (temp, strlen (temp));
return name;
}
/* On fatal signals, delete all the temporary files. */
void
fatal_error (signum)
int signum;
{
signal (signum, SIG_DFL);
delete_failure_queue ();
delete_temp_files ();
/* Get the same signal again, this time not handled,
so its normal effect occurs. */
kill (getpid (), signum);
}
int
main (argc, argv)
int argc;
char **argv;
{
register int i;
int value;
int error_count = 0;
int linker_was_run = 0;
char *explicit_link_files;
programname = argv[0];
if (signal (SIGINT, SIG_IGN) != SIG_IGN)
signal (SIGINT, fatal_error);
if (signal (SIGHUP, SIG_IGN) != SIG_IGN)
signal (SIGHUP, fatal_error);
if (signal (SIGTERM, SIG_IGN) != SIG_IGN)
signal (SIGTERM, fatal_error);
if (signal (SIGPIPE, SIG_IGN) != SIG_IGN)
signal (SIGPIPE, fatal_error);
argbuf_length = 10;
argbuf = (char **) xmalloc (argbuf_length * sizeof (char *));
obstack_init (&obstack);
choose_temp_base ();
/* Make a table of what switches there are (switches, n_switches).
Make a table of specified input files (infiles, n_infiles). */
process_command (argc, argv);
if (vflag)
{
extern char *version_string;
fprintf (stderr, "gcc version %s\n", version_string);
if (n_infiles == 0)
exit (0);
}
if (n_infiles == 0)
fatal ("No input files specified.");
/* Make a place to record the compiler output file names
that correspond to the input files. */
outfiles = (char **) xmalloc (n_infiles * sizeof (char *));
bzero (outfiles, n_infiles * sizeof (char *));
/* Record which files were specified explicitly as link input. */
explicit_link_files = (char *) xmalloc (n_infiles);
bzero (explicit_link_files, n_infiles);
for (i = 0; i < n_infiles; i++)
{
register struct compiler *cp;
int this_file_error = 0;
/* Tell do_spec what to substitute for %i. */
input_filename = infiles[i];
input_filename_length = strlen (input_filename);
input_file_number = i;
/* Use the same thing in %o, unless cp->spec says otherwise. */
outfiles[i] = input_filename;
/* Figure out which compiler from the file's suffix. */
for (cp = compilers; cp->spec; cp++)
{
if (strlen (cp->suffix) < input_filename_length
&& !strcmp (cp->suffix,
infiles[i] + input_filename_length
- strlen (cp->suffix)))
{
/* Ok, we found an applicable compiler. Run its spec. */
/* First say how much of input_filename to substitute for %b */
register char *p;
input_basename = input_filename;
for (p = input_filename; *p; p++)
if (*p == '/')
input_basename = p + 1;
basename_length = (input_filename_length - strlen (cp->suffix)
- (input_basename - input_filename));
value = do_spec (cp->spec);
if (value < 0)
this_file_error = 1;
break;
}
}
/* If this file's name does not contain a recognized suffix,
record it as explicit linker input. */
if (! cp->spec)
explicit_link_files[i] = 1;
/* Clear the delete-on-failure queue, deleting the files in it
if this compilation failed. */
if (this_file_error)
{
delete_failure_queue ();
error_count++;
}
/* If this compilation succeeded, don't delete those files later. */
clear_failure_queue ();
}
/* Run ld to link all the compiler output files. */
if (error_count == 0)
{
int tmp = execution_count;
value = do_spec (link_spec);
if (value < 0)
error_count = 1;
linker_was_run = (tmp != execution_count);
}
/* If options said don't run linker,
complain about input files to be given to the linker. */
if (! linker_was_run && error_count == 0)
for (i = 0; i < n_infiles; i++)
if (explicit_link_files[i])
error ("%s: linker input file unused since linking not done",
outfiles[i]);
/* Set the `valid' bits for switches that match anything in any spec. */
validate_all_switches ();
/* Warn about any switches that no pass was interested in. */
for (i = 0; i < n_switches; i++)
if (! switches[i].valid)
error ("unrecognized option `-%s'", switches[i].part1);
/* Delete some or all of the temporary files we made. */
if (error_count)
delete_failure_queue ();
delete_temp_files ();
exit (error_count);
}
xmalloc (size)
int size;
{
register int value = malloc (size);
if (value == 0)
fatal ("virtual memory exhausted");
return value;
}
xrealloc (ptr, size)
int ptr, size;
{
register int value = realloc (ptr, size);
if (value == 0)
fatal ("virtual memory exhausted");
return value;
}
/* Return a newly-allocated string whose contents concatenate those of s1, s2, s3. */
char *
concat (s1, s2, s3)
char *s1, *s2, *s3;
{
int len1 = strlen (s1), len2 = strlen (s2), len3 = strlen (s3);
char *result = (char *) xmalloc (len1 + len2 + len3 + 1);
strcpy (result, s1);
strcpy (result + len1, s2);
strcpy (result + len1 + len2, s3);
*(result + len1 + len2 + len3) = 0;
return result;
}
char *
save_string (s, len)
char *s;
int len;
{
register char *result = (char *) xmalloc (len + 1);
bcopy (s, result, len);
result[len] = 0;
return result;
}
pfatal_with_name (name)
char *name;
{
extern int errno, sys_nerr;
extern char *sys_errlist[];
char *s;
if (errno < sys_nerr)
s = concat ("%s: ", sys_errlist[errno], "");
else
s = "cannot open %s";
fatal (s, name);
}
perror_with_name (name)
char *name;
{
extern int errno, sys_nerr;
extern char *sys_errlist[];
char *s;
if (errno < sys_nerr)
s = concat ("%s: ", sys_errlist[errno], "");
else
s = "cannot open %s";
error (s, name);
}
perror_exec (name)
char *name;
{
extern int errno, sys_nerr;
extern char *sys_errlist[];
char *s;
if (errno < sys_nerr)
s = concat ("installation problem, cannot exec %s: ",
sys_errlist[errno], "");
else
s = "installation problem, cannot exec %s";
error (s, name);
}
/* More 'friendly' abort that prints the line and file.
config.h can #define abort fancy_abort if you like that sort of thing. */
void
fancy_abort ()
{
fatal ("Internal gcc abort.");
}
#ifdef HAVE_VPRINTF
/* Output an error message and exit */
int
fatal (va_alist)
va_dcl
{
va_list ap;
char *format;
va_start(ap);
format = va_arg (ap, char *);
vfprintf (stderr, format, ap);
va_end (ap);
fprintf (stderr, "\n");
delete_temp_files ();
exit (1);
}
error (va_alist)
va_dcl
{
va_list ap;
char *format;
va_start(ap);
format = va_arg (ap, char *);
fprintf (stderr, "%s: ", programname);
vfprintf (stderr, format, ap);
va_end (ap);
fprintf (stderr, "\n");
}
#else /* not HAVE_VPRINTF */
fatal (msg, arg1, arg2)
char *msg, *arg1, *arg2;
{
error (msg, arg1, arg2);
delete_temp_files (0);
exit (1);
}
error (msg, arg1, arg2)
char *msg, *arg1, *arg2;
{
fprintf (stderr, "%s: ", programname);
fprintf (stderr, msg, arg1, arg2);
fprintf (stderr, "\n");
}
#endif /* not HAVE_VPRINTF */
void
validate_all_switches ()
{
struct compiler *comp;
register char *p;
register char c;
for (comp = compilers; comp->spec; comp++)
{
p = comp->spec;
while (c = *p++)
if (c == '%' && *p == '{')
/* We have a switch spec. */
validate_switches (p + 1);
}
p = link_spec;
while (c = *p++)
if (c == '%' && *p == '{')
/* We have a switch spec. */
validate_switches (p + 1);
/* Now notice switches mentioned in the machine-specific specs. */
#ifdef ASM_SPEC
p = ASM_SPEC;
while (c = *p++)
if (c == '%' && *p == '{')
/* We have a switch spec. */
validate_switches (p + 1);
#endif
#ifdef CPP_SPEC
p = CPP_SPEC;
while (c = *p++)
if (c == '%' && *p == '{')
/* We have a switch spec. */
validate_switches (p + 1);
#endif
#ifdef SIGNED_CHAR_SPEC
p = SIGNED_CHAR_SPEC;
while (c = *p++)
if (c == '%' && *p == '{')
/* We have a switch spec. */
validate_switches (p + 1);
#endif
#ifdef CC1_SPEC
p = CC1_SPEC;
while (c = *p++)
if (c == '%' && *p == '{')
/* We have a switch spec. */
validate_switches (p + 1);
#endif
#ifdef LINK_SPEC
p = LINK_SPEC;
while (c = *p++)
if (c == '%' && *p == '{')
/* We have a switch spec. */
validate_switches (p + 1);
#endif
#ifdef LIB_SPEC
p = LIB_SPEC;
while (c = *p++)
if (c == '%' && *p == '{')
/* We have a switch spec. */
validate_switches (p + 1);
#endif
#ifdef STARTFILE_SPEC
p = STARTFILE_SPEC;
while (c = *p++)
if (c == '%' && *p == '{')
/* We have a switch spec. */
validate_switches (p + 1);
#endif
}
/* Look at the switch-name that comes after START
and mark as valid all supplied switches that match it. */
void
validate_switches (start)
char *start;
{
register char *p = start;
char *filter;
register int i;
if (*p == '|')
++p;
if (*p == '!')
++p;
filter = p;
while (*p != ':' && *p != '}') p++;
if (p[-1] == '*')
{
/* Mark all matching switches as valid. */
--p;
for (i = 0; i < n_switches; i++)
if (!strncmp (switches[i].part1, filter, p - filter))
switches[i].valid = 1;
}
else
{
/* Mark an exact matching switch as valid. */
for (i = 0; i < n_switches; i++)
{
if (!strncmp (switches[i].part1, filter, p - filter)
&& switches[i].part1[p - filter] == 0)
switches[i].valid = 1;
}
}
}
|