summaryrefslogtreecommitdiffstats
path: root/zarb-ml/mageia-dev/attachments/20130324/69b9e898/attachment.obj
blob: 69af834417b3c46e5d9e45a2a098740fa5be0637 (plain)
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
/* Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
 */

#include <stdio.h>
#include <ctype.h>
#include <signal.h>
#include <errno.h>
#include <sys/types.h>
#include <dirent.h>
#include "xpp.h"

#define	NOKNET
#define	import_kernel
#define	import_knames
#include <iraf.h>

#if defined(LINUX) || defined(BSD)
# ifdef SOLARIS
#  undef SOLARIS
# endif
#endif

/*
 * XC -- Main entry point of the XC compiler front-end used by the IRAF
 * system.
 */

#define VERSION		"IRAFNET XC V2.4 Jan 21 2010"

#define	ERR		(-1)
#define	EOS		'\0'
#define	YES		1
#define	NO		0
#define	MAXFLAG		64			/* maximum option flags */
#define MAXFILE		1024			/* maximum files on cmdline */
#define	SZ_CMDBUF	4096			/* maximum command buffer */
#define	SZ_BUFFER	4096			/* library names, flags */
#define	SZ_LIBBUF	4096			/* full library names */
#define	SZ_FNAME	255
#define	SZ_PATHNAME	511
#define	SZ_PKGENV	256
#define DEF_PKGENV	"iraf"

#ifdef MACOSX
#define	CCOMP		"cc"			/* C compiler (also .s etc.) */
#define	LINKER		"cc"			/* Linking utility */
#else
#define	CCOMP		"gcc"			/* C compiler (also .s etc.) */
#define	LINKER		"gcc"			/* Linking utility */
#endif
#define	F77COMP		"f77"			/* Fortran compiler */
#define	DEBUGFLAG	'g'			/* host flag for -x */
#define	USEF2C		1			/* use Fortran to C trans. */

#define	LIBCINCLUDES	"hlib$libc/"		/* IRAF LIBC include dir */
#define	LOCALBINDIR	"/usr/local/bin/"	/* standard local BIN */
#define	SYSBINDIR	"/usr/bin/"		/* special system BIN */

#define	XPP		"xpp.e"
#define	RPP		"rpp.e"
#define	EDSYM		"edsym.e"
#define	SHIMAGE		"S.e"
#define LIBMAIN		"libmain.o"
#define SHARELIB	"libshare.a"
#define IRAFLIB1	"libex.a"
#define IRAFLIB2	"libsys.a"
#define IRAFLIB3	"libvops.a"
#define IRAFLIB4	"libos.a"
#define IRAFLIB5	"libVO.a"
#ifndef HOST_CFITSIO
#define IRAFLIB6	"libcfitsio.a"
#else
#define IRAFLIB6	"-lcfitsio"
#endif

#ifdef LINUX
char *fortlib[] = { "-lf2c",			/*  0  (host progs) */
		    "-lf2c",			/*  1  */
		    "-lm",			/*  2  */
#ifndef LINUXPPC
#ifndef LINUX64
		    "",				/*  3  -lcompat */
#endif
#else
		    "-lg2c",			/*  3  */
#endif
		    "-lpthread",		/*  4  */
		    "-lm",			/*  5  */
		    "",				/*  6  */
		    "",				/*  7  */
		    "",				/*  8  */
		    "",				/*  9  */
		    0};				/* EOF */

char *opt_flags[] = { "-O",			/*  0  */
		    0};				/* EOF */
int  nopt_flags	   = 1;				/* No. optimizer flags */

#else
#ifdef BSD
char *fortlib[] = { "-lf2c",			/*  0  (host progs) */
		    "-lf2c",			/*  1  */
		    "-lm",			/*  2  */
		    "-lcompat",			/*  3  */
		    "",				/*  4  */
		    "",				/*  5  */
		    "",				/*  6  */
		    "",				/*  7  */
		    "",				/*  8  */
		    "",				/*  9  */
		    0};				/* EOF */

char *opt_flags[] = { "-O",			/*  0  */
		    0};				/* EOF */
int  nopt_flags	   = 1;				/* No. optimizer flags */

#else
#ifdef MACOSX
char *fortlib[] = { "-lf2c",			/*  0  (host progs) */
		    "-lf2c",			/*  1  */
		    "-lm",			/*  2  */
		    "",				/*  3  */
		    "",				/*  4  */
		    "",				/*  5  */
		    "",				/*  6  */
		    "",				/*  7  */
		    "",				/*  8  */
		    "",				/*  9  */
		    0};				/* EOF */

char *opt_flags[] = { "-O3",			/*  0  */
		    0};				/* EOF */

/* As of Dec2007 there remains an unexplained optimizer bug in
** the system which has the effect of disabling FPE handling on
** Mac Intel/PPC systems.  For the moment, we'll disable the optimization
** until this is better understood or fixed in future GCC versions.
*/
int  nopt_flags	   = 0;				/* No. optimizer flags */

#else
#ifdef SOLARIS
char *fortlib[] = { "-lf2c",			/*  0  (host progs) */
		    "-lf2c",			/*  1  */
		    "-lm",			/*  2  */
		    "-lsocket",			/*  3  */
		    "-lnsl",			/*  4  */
		    "-lintl",			/*  5  */
		    "-ldl",			/*  6  */
		    "-lelf",			/*  7  */
		    "",				/*  8  */
		    "",				/*  9  */
		    0};				/* EOF */

char *opt_flags[] = { "-O",			/*  0  */
		    0};				/* EOF */
int  nopt_flags	   = 1;				/* No. optimizer flags */

#else
#ifdef CYGWIN
char *fortlib[] = { "-lf2c",			/*  0  (host progs) */
		    "-lf2c",			/*  1  */
		    "-lm",			/*  2  */
		    "-lcompat",			/*  3  */
		    "",				/*  4  */
		    "",				/*  5  */
		    "",				/*  6  */
		    "",				/*  7  */
		    "",				/*  8  */
		    "",				/*  9  */
		    0};				/* EOF */

char *opt_flags[] = { "-O",			/*  0  */
		    0};				/* EOF */
int  nopt_flags	   = 1;				/* No. optimizer flags */

#else
char *fortlib[] = { "-lU77",			/*  0  (host progs) */
		    "-lm",			/*  1  */
		    "-lF77",			/*  2  */
		    "-lI77",			/*  3  */
		    "-lm",			/*  4  */
		    "",				/*  5  */
		    "",				/*  6  */
		    "",				/*  7  */
		    "",				/*  8  */
		    "",				/*  9  */
		    0};				/* EOF */

char *opt_flags[] = { "-O",			/*  0  */
		    0};				/* EOF */
int  nopt_flags	   = 1;				/* No. optimizer flags */

#endif
#endif
#endif
#endif
#endif

#ifdef BSD
#define	F_STATIC	"-static"
#define	F_SHARED	"-shared"
#else
#ifdef MACOSX
#define	F_STATIC	"-static"
#define	F_SHARED	"-shared"
#else
#ifdef LINUX
#define	F_STATIC	"-Wl,-Bstatic"
#define	F_SHARED	"-Wl,-Bdynamic"
#else
#ifdef SOLARIS
#define	F_STATIC	"-Wl,-Bstatic"
#define	F_SHARED	"-Wl,-Bdynamic"
#endif
#endif
#endif
#endif

#define isxfile(str)	(getextn(str) == 'x')
#define isffile(str)	(getextn(str) == 'f')
#define iscfile(str)	(getextn(str) == 'c')
#define issfile(str)	(getextn(str) == 's')
#define isefile(str)	(getextn(str) == 'e')
#define isafile(str)	(getextn(str) == 'a')
#define isofile(str)	(getextn(str) == 'o')
#define ispfile(str)	(getextn(str) == 'P')	/* func prototypes	*/


#ifdef SOLARIS
#ifdef X86
int	usesharelib = NO;
int	noedsym = YES;
#else
int	usesharelib = YES;
int	noedsym = NO;
#endif

#else
#ifdef SHLIB
int	usesharelib = YES;
int	noedsym = NO;
#else
int	usesharelib = NO;
int	noedsym = YES;
#endif
#endif

int	stripexe 	= NO;
int	notvsym 	= NO;
int	noshsym 	= NO;
int	errflag 	= NO;
int	objflags 	= NO;
int	keepfort 	= NO;
int	mkobject 	= YES;
int	mktask 		= YES;
int	optimize 	= YES;
int	cflagseen 	= NO;
int	nfileargs 	= 0;
int	link_static 	= NO;
int	link_nfs 	= NO;
int	debug 		= NO;
int	dbgout 		= NO;
int	hostprog 	= NO;
int	voslibs 	= YES;
int	nolibc 		= NO;
int	usef2c 		= YES;
int	useg95 		= NO;
int	userincs	= NO;
#ifdef LINUXPPC
int	useg2c 		= YES;
#else
int	useg2c 		= NO;
#endif
int	host_c_main 	= NO;

char	ccomp[SZ_FNAME] 	= CCOMP;
char	f77comp[SZ_FNAME] 	= F77COMP;
char	linker[SZ_FNAME] 	= LINKER;
char	f2cpath[SZ_FNAME] 	= "/usr/bin/f2c";
char	g77path[SZ_FNAME] 	= "/usr/bin/g77";

char	outfile[SZ_FNAME] = "";
char	tempfile[SZ_FNAME] = "";
char	*lflags[MAXFLAG+1];
char	*lfiles[MAXFILE+1];			/* all files		*/
char	*hlibs[MAXFILE+1];			/* host libraries	*/
char	*lxfiles[MAXFILE+1];			/* .x files		*/
char	*lffiles[MAXFILE+1];			/* .f files		*/
char	buffer[SZ_BUFFER+1];
char	libbuf[SZ_LIBBUF+1];
char	*bp = buffer;
char	*libp = libbuf;
char	*pkgenv = NULL;
char	*pkglibs = NULL;
char	v_pkgenv[SZ_PKGENV+1];
int	nflags, nfiles, nhlibs, nxfiles, nffiles;
int	sig_int, sig_quit, sig_hup, sig_term;
char	*shellname = "/bin/sh";
int	foreigndefs = NO;
char	*foreign_defsfile = "";
char	*irafarch = "";				/* IRAFARCH string */
char	floatoption[32] = "";			/* f77 arch flag, if any */
int	pid;

char	*vfn2osfn();
char	*os_getenv();
char	*findexe();
char	*iraflib();


/* MAIN -- Execution begins here.  Interpret command line arguments and
 * pass commands to UNIX to execute the various passes, i.e.:
 *
 *	xpp		SPP to modified-ratfor
 *	rpp		modified-ratfor to Fortran
 *	f77		UNIX fortran compiler
 *	cc		compile other sources, link if desired
 *
 * The Fortran source is left behind if the -F flag is given.  The IRAF root
 * directory must either be given on the command line as "-r pathname" or in
 * the environment as the variable "irafdir".
 */
main (argc, argv)
int	argc;
char	*argv[];
{
	int	i, j, interrupt(), nargs, ncomp;
	char	*arglist[MAXFILE+MAXFLAG+10];
	char	*arg, *ip, *s, *mkfname();
	int	status, noperands;

	/* Initialization. */
	ZZSTRT();
	isv13();

#if defined(LINUX) || defined(BSD) || defined(X86) || defined(MACOSX)
	if (os_sysfile ("f77.sh", f77comp, SZ_FNAME) < 0) {
	    strcpy (f77comp, "f77");
	    usef2c = 0;
	} else
	    usef2c = 1;
	if (os_sysfile ("f2c.e", tempfile, SZ_FNAME) > 0)
	    strcpy (f2cpath, tempfile);
#else
	strcpy (f77comp, "f77");
#endif

	nflags = nfiles = nhlibs = nxfiles = nffiles = 0;

	sig_int  = (int) signal (SIGINT,  SIG_IGN) & 01;
	sig_quit = (int) signal (SIGQUIT, SIG_IGN) & 01;
	sig_hup  = (int) signal (SIGHUP,  SIG_IGN) & 01;
	sig_term = (int) signal (SIGTERM, SIG_IGN) & 01;

	enbint ((SIGFUNC)interrupt);
	pid = getpid();

	/* Load any XC related environment definitions.
	 */
	if ((s = os_getenv ("XC-CC")) || (s = os_getenv ("XC_CC")))
	    strcpy (ccomp, s);
	if ((s = os_getenv ("XC-F77")) || (s = os_getenv ("XC_F77"))) {
	    strcpy (f77comp, s);
	    usef2c = (strncmp (f77comp, "f77", 3) == 0 ? 1 : 0);
	    useg95 = (strncmp (f77comp, "g95", 3) == 0 ? 1 : 0);
	}
	if ((s = os_getenv ("XC-LINKER")) || (s = os_getenv ("XC_LINKER")))
	    strcpy (linker, s);



        /* Always load the default IRAF package environment. */
	loadpkgenv (DEF_PKGENV);

	/* Count the number of file arguments.  Load the environment for
	 * any packages named on the command line.
	 */
	pkgenv = NULL;
	v_pkgenv[0] = EOS;
	for (i=1, nfileargs=0;  argv[i] != NULL;  i++)
	    if (argv[i][0] != '-')
		nfileargs++;
	    else if (strcmp (argv[i], "-p") == 0 && argv[i+1]) {
		loadpkgenv (argv[++i]);
		strcat (v_pkgenv, v_pkgenv[0] ? " -p " : "-p ");
		strcat (v_pkgenv, argv[i]);
		pkgenv = v_pkgenv;
	    }

	/* If no package environment was specified see if the user has
	 * specified a default package in their user environment.
	 */
	if (!pkgenv) {
	    char *s, u_pkgenv[SZ_PKGENV+1];
	    char *pkgname, *ip;

	    if (s = os_getenv ("PKGENV")) {
		strcpy (ip = u_pkgenv, s);
		while (*ip) {
		    while (isspace(*ip))
			ip++;
		    pkgname = ip;
		    while (*ip && !isspace(*ip))
			ip++;
		    if (*ip)
			*ip++ = EOS;

		    if (pkgname[0]) {
			loadpkgenv (pkgname);
			strcat (v_pkgenv, v_pkgenv[0] ? " -p " : "-p ");
			strcat (v_pkgenv, pkgname);
			pkgenv = v_pkgenv;
		    }
		}
	    }
	}

	/* Process command line options, make file lists.
	 * Convert ".x" files to ".f".
	 */
	for (i=1;  (arg = argv[i]) != NULL;  i++) {
	    if (arg[0] == '-') {
		switch (arg[1]) {
                case '/':
                    /* Pass flag on without further interpretation.
                     *     "-/foo"    ->  "-foo"
                     *     "-//foo"   ->  "foo"
                     */
                    lflags[nflags] = bp;
                    ip = &arg[2];
                    if (*ip == '/')
                        ip++;
                    else
                        *bp++ = '-';

                    while (*bp++ = *ip++)
                        ;

                    if (nflags++ >= MAXFLAG)
                        fatal ("Too many compiler options");
                    break;

		case 'D':
		    /* Pass a -D<define> flag on to the host compiler.
		     */
		    lflags[nflags] = bp;
		    for (ip = &arg[0];  (*bp++ = *ip++);  )
			;
		    if (bp - buffer >= SZ_BUFFER)
			fatal ("Out of buffer space for options");
		    if (nflags++ >= MAXFLAG)
			fatal ("Too many compiler options");
		    break;

		case 'I':
		    /* Pass a -I<include-dir> flag on to the host compiler.
		     * A special case is "-Inolibc" which disables automatic
		     * inclusion of the IRAF LIBC includes (hlib$libc).
		     */
		    if (strcmp (&arg[2], "nolibc") == 0)
			nolibc++;
		    else {
			lflags[nflags] = bp;
			*bp++ = arg[0];
			*bp++ = arg[1];
			strcpy (bp, vfn2osfn (&arg[2], 0));
			bp += strlen (bp) + 1;

			if (bp - buffer >= SZ_BUFFER)
			    fatal ("Out of buffer space for options");
			if (nflags++ >= MAXFLAG)
			    fatal ("Too many compiler options");
		    }
		    break;

		case 'l':
		case 'L':
		    /* Library file (-llib) or library directory (-Ldir)
		     * reference.
		     */
		    if ((lfiles[nfiles] = iraflib (arg)) == NULL) {
			hlibs[nhlibs] = arg;
		        nhlibs++;
		    } else
			nfiles++;
		    if (nfiles > MAXFILE || nhlibs > MAXFILE)
			fatal ("Too many files");

		    objflags = YES;
		    mkobject = YES;
		    mktask = YES;
		    break;

		case 'o':
		    /* Set output file name.
		     */
		    if ((arg = argv[++i]) == NULL)
			i--;
		    else
			strcpy (outfile, arg);
		    mkobject = YES;
		    mktask = YES;
		    objflags = YES;
		    break;

		case 'p':
		    /* Ignore since the -p args were already processed above.
		     */
		    i++;
		    break;

		case 'r':
		    /* Not used anymore */
		    if ((arg = argv[++i]) == EOS)
			i--;
		    break;

		case 'h':
		    /* Host program: do not link in IRAF main or search
		     * standard IRAF libraries unless explicitly referenced
		     * on command line.
		     */
		    voslibs = 0;
		    /* fall through */

		case 'H':
		    /* Link a host program, but include the VOS libraries.
		     */
		    hostprog++;
		    noedsym++;
		    nolibc++;
		    break;

		case 'G':
		    /* Force a program to link w/ libg2c.a instead of libf2c.a
		     */
		    useg2c++;
		    break;

		case 'A':
		    /* Force arch-specific include files.
		     */
		    userincs++;
		    break;

		case 'C':
		    /* Link a host program which has a C main.  We may need
		     * to tweak the command line as a special case here since
		     * we normally assume Fortran sources.  This is currently
		     * only needed for host C programs under LinuxPPC.
		     */
		    host_c_main++;
		    break;

		case 'V':
		    /* Print XC version identification.
		     */
		    fprintf (stderr, "%s\n", VERSION);
		    fflush (stderr);
		    break;

		default:
		    if (strcmp (&arg[1], "Nh") == 0) {
			if ((arg = argv[++i]) == EOS)
			    i--;
			else {
			    foreigndefs++;
			    foreign_defsfile = arg;
			    continue;
			}
		    }

		    lflags[nflags] = bp;
		    *bp++ = '-';

		    /* Process list of flags without arguments, e.g. "-xyz"
		     * which is the same as "-x -y -z".
		     */
		    for (ip = &arg[1];  *ip != EOS;  ip++)
			if (*ip == 'c') {
			    mkobject = YES;
			    mktask = NO;
			    objflags = YES;
			    cflagseen = YES;

			} else if (*ip == 'd') {
			    debug++;
			} else if (*ip == 'q') {
			    optimize = NO;
			} else if (*ip == 'O') {
			    optimize = YES;

			} else if (*ip == 'F' || *ip == 'f') {
			    keepfort = YES;
			    if (objflags == NO) {
				mkobject = NO;
				mktask = NO;
			    }
			} else if (*ip == 'x') {
			    dbgout++;
			    optimize = NO;
			    *bp++ = DEBUGFLAG;
			    if (bp - buffer >= SZ_BUFFER)
				fatal ("Out of buffer space for options");
			} else if (*ip == 'z') {
			    usesharelib = NO;
			} else if (*ip == 'e') {
			    noedsym = YES;
			} else if (*ip == 't') {
			    notvsym = YES;
			} else if (*ip == 'T') {
			    noshsym = YES;
			} else if (*ip == 's') {
			    stripexe = YES;
			    goto passflag;
			} else if (*ip == 'N') {
			    /* "NFS" link option.  Generate the output temp
			     * file in /tmp during the link, then move it to
			     * the output directory in one operation when done.
			     * For cases such as linking in an NFS-mounted
			     * directory, where all the NFS i/o may slow the
			     * link down excessively.
			     */
			    link_nfs = YES;
			} else {
passflag:		    mkobject = YES;
			    if (!cflagseen)
				mktask = YES;
			    *bp++ = *ip;
			    if (bp - buffer >= SZ_BUFFER)
				fatal ("Out of buffer space for options");
		        }

		    if (bp - lflags[nflags] <= 1) {
			lflags[nflags] = NULL;
			bp--;
		    } else {
			*bp++ = EOS;
			if (nflags++ >= MAXFLAG)
			    fatal ("Too many compiler options");
		    }
		}

	    } else {
		char	*ip, *op, *last_dot;

		/* Get default name for output executable file, if not given
		 * as arg.  The default extension is ".e".
		 */
		if (outfile[0] == EOS) {
		    last_dot = NULL;
		    for (ip=arg, op=outfile;  (*op = *ip++) != EOS;  op++)
			if (*op == '.')
			    last_dot = op;
		    if (last_dot != NULL)
			*last_dot = EOS;
		    strcat (outfile, ".e");
		}

		/* Munge filename if file is a library. */
		if (isafile(arg) && (s = iraflib(arg)))
		    arg = s;

		if (access (arg,0) == -1) {
		    fprintf (stderr, "Warning: file `%s' not found\n", arg);
		    fflush (stderr);
		} else {
		    lfiles[nfiles++] = arg;
		    if (nfiles > MAXFILE)
			fatal ("Too many files");

		    if (isxfile (arg)) {
			xtof (arg);
			if (errflag & (XPP_BADXFILE | XPP_COMPERR)) {
			    nfiles--;
			    errflag &= ~(XPP_BADXFILE | XPP_COMPERR);
			}
		    } else if (isffile (arg)) {
			lffiles[nffiles++] = arg;
			if (nffiles > MAXFILE)
			    fatal ("too many files");
		    } else if (isefile (arg))
			fatal ("no .e files permitted in file list");
		}
	    }
	}
	
	if (!mkobject) {
	    if (debug) {
		fprintf (stderr, "quit, fortran only\n");
		fflush (stderr);
	    }
	    ZZSTOP();
	    exit (errflag);
	}

	/* Add -I<include-dir> to lflags for each directory in the pkglibs
	 * package library list.  pkglibs is a comma delimited list of VFN
	 * directory names formed by loading the core system and layered
	 * package environments.
	 */
	if (pkglibs = os_getenv ("pkglibs")) {
	    char *ip, *op, *vp, fname[SZ_FNAME];

	    for (ip=pkglibs;  *ip;  ) {
		while (*ip && isspace(*ip) || *ip == ',')
		    ip++;
		for (op=fname;  *ip && !(isspace (*ip) || *ip == ',');  )
		    *op++ = *ip++;
		*op++ = EOS;
		if (*fname == EOS)
		    break;

		/* Omit the LIBC includes if -Inolibc was specified. */
		if (! (nolibc && strcmp (fname, LIBCINCLUDES) == 0)) {
		    lflags[nflags] = bp;
		    *bp++ = '-';
		    *bp++ = 'I';
		    for (vp=vfn2osfn(fname,0);  *bp++ = *vp++;  )
			;
		    if (*(bp-2) == '/') {
			--bp;
			*(bp-1) = EOS;
		    }

		    if (bp - buffer >= SZ_BUFFER)
			fatal ("Out of buffer space for options");
		    if (nflags++ >= MAXFLAG)
			fatal ("Too many compiler options");
		}

		while (*ip && (isspace(*ip) || *ip == ','))
		    ip++;
	    }
	}

	/* Now check for any alternative compiler definitions or commandline
	 * flags which will affect out link line.  Some systems like LinuxPPC
	 * will require use of -lg2c even though we can continue to use the
	 * hlib$f77.sh the fortran compiler script on that system.
	 */
	if (useg2c || strncmp (f77comp, "g77", 3) == 0) {
	    fortlib[0] = fortlib[1] = "-lg2c";
	}


#ifdef sun
	/* Determine if any special architecture dependent compilation flags
	 * are needed.  For the Sun V1.3 compiler, since FLOAT_OPTION is no
	 * longer supported, we look for IRAFARCH and generate the -f68881
	 * or -ffpa compiler switches automatically if we are compiling on a
	 * Sun-3 and no -/f* has already been specified on the command line.
	 */
	if (!floatoption[0] && (irafarch = os_getenv("IRAFARCH")))
	    if (irafarch[0] == 'f')
		sprintf (floatoption, "-%s", irafarch);
#endif
	/* Compile all F77 source files with F77 to produce object code.
	 * This compilation is separate from that used for the '.x' files,
	 * because we do not want to use the UNIX "-u" flag (requires that
	 * everything be declared) for raw Fortran files.
	 */
	nargs = 0;
	arglist[nargs++] = f77comp;
	arglist[nargs++] = "-c";
	if (usef2c == YES) {
	    arglist[nargs++] = "-f2c";
	    arglist[nargs++] = f2cpath;
	}

#ifdef MACOSX
	if (useg95 == 0) {
	    if ((irafarch = os_getenv("IRAFARCH"))) {
	        if (strcmp (irafarch, "macosx") == 0) {
	            arglist[nargs++] = "-arch";
	    	    arglist[nargs++] = "ppc";
	            arglist[nargs++] = "-arch";
	    	    arglist[nargs++] = "i386";
	    	    arglist[nargs++] = "-m32";
	    	    arglist[nargs++] = "-mmacosx-version-min=10.4";
	        } else if (strcmp (irafarch, "macintel") == 0) {
	            arglist[nargs++] = "-arch";
	    	    arglist[nargs++] = "x86_64";
	    	    arglist[nargs++] = "-m64";
		}
	    }
	}
#endif
#if (defined(LINUX) && !defined(MACH64))
	arglist[nargs++] = "-m32";
#endif
#if (defined(BSD))
	arglist[nargs++] = "-m32";
#endif

#ifdef LINUXAOUT
	arglist[nargs++] = "-b";
	arglist[nargs++] = "i486-linuxaout";
#endif
#ifdef sun
	if (floatoption[0])
	    arglist[nargs++] = floatoption;
#endif
        if (optimize) {
	    for (i=0;  i < nopt_flags;  i++)
	        arglist[nargs++] = opt_flags[i];
	}

	/* Add the user-defined flags last so they can override the 
	 * hardwired options.
	 */
	if ((s = os_getenv("XC-FFLAGS")) || (s = os_getenv("XC_FFLAGS")))
	    addflags (s, arglist, &nargs);

	for (i=0;  i < nflags;  i++)
	    arglist[nargs++] = lflags[i];
	
	for (i=0;  i < nffiles;  i++)
	    arglist[nargs++] = lffiles[i];
	arglist[nargs] = NULL;

	if (i > 0) {
	    if (debug)
		printargs (f77comp, arglist, nargs);
	    status = run (f77comp, arglist);
#ifdef LINUX
	/* This kludge is to work around a bug in the F2C based F77 script
	 * on Linux, which returns an exit status of 4 when successfully
	 * compiling a Fortran file.
	 */
	if (status == 4)
	    status = 0;
#endif
	    errflag += status;
	}


	/* Compile the remaining Fortran source files with F77 to produce
	 * object code.
	 */
	nargs = 0;
	arglist[nargs++] = f77comp;
	arglist[nargs++] = "-c";
	arglist[nargs++] = "-u";
	arglist[nargs++] = "-x";
	if (usef2c == YES) {
	    arglist[nargs++] = "-f2c";
	    arglist[nargs++] = f2cpath;
	}

#ifdef MACOSX
	if (useg95 == 0) {
	    if ((irafarch = os_getenv("IRAFARCH"))) {
                if (strcmp (irafarch, "macosx") == 0) {
                    arglist[nargs++] = "-arch";
                    arglist[nargs++] = "ppc";
                    arglist[nargs++] = "-arch";
                    arglist[nargs++] = "i386";
                    arglist[nargs++] = "-m32";
	    	    arglist[nargs++] = "-mmacosx-version-min=10.4";
                } else if (strcmp (irafarch, "macintel") == 0) {
                    arglist[nargs++] = "-arch";
                    arglist[nargs++] = "x86_64";
                    arglist[nargs++] = "-m64";
                }

	    }
	}
#endif
#if (defined(LINUX) && !defined(MACH64))
	arglist[nargs++] = "-m32";
#endif
#if (defined(BSD))
	arglist[nargs++] = "-m32";
#endif

#ifdef LINUXAOUT
        arglist[nargs++] = "-b";
	arglist[nargs++] = "i486-linuxaout";
#endif
#ifdef sun
	if (floatoption[0])
	    arglist[nargs++] = floatoption;
#endif
        if (optimize) {
	    for (i=0;  i < nopt_flags;  i++)
	       arglist[nargs++] = opt_flags[i];
	}

	/* Add the user-defined flags last so they can override the 
	 * hardwired options.
	 */
	if ((s = os_getenv("XC-FFLAGS")) || (s = os_getenv("XC_FFLAGS")))
	    addflags (s, arglist, &nargs);

	for (i=0;  i < nflags;  i++)
	    arglist[nargs++] = lflags[i];
	
	/* Make list of files to be compiled.  Do not include F77 files,
	 * as they were already compiled above.
	 */
	for (i=0, noperands=0;  i < nfiles;  i++) {
	    for (j=0;  j < nffiles && lffiles[j] != lfiles[i];  j++)
		;
	    if (j >= nffiles && isffile (lfiles[i])) {
		arglist[nargs++] = lfiles[i];
		noperands++;
	    }
	}
	arglist[nargs] = NULL;

	if (noperands > 0) {
	    if (debug)
		printargs (f77comp, arglist, nargs);
	    status = run (f77comp, arglist);
#ifdef LINUX
	    /* This kludge is to work around a bug in the F2C based F77 script
	     * on Linux, which returns an exit status of 4 when successfully
	     * compiling a Fortran file.
	     */
	    if (status == 4)
		status = 0;
#endif
	    errflag += status;
	}


	/* Compile the remaining non-Fortran source files with CC to produce
	 * object code.
	 */
	nargs = 0;
	arglist[nargs++] = ccomp;
	arglist[nargs++] = "-c";

#ifdef MACH64
	arglist[nargs++] = "-DMACH64";		/* needed for zmain.c */
#endif
#ifdef LINUX64
	arglist[nargs++] = "-DLINUX64";		/* needed for zmain.c */
#endif
#if (defined(LINUX) && !defined(MACH64))
	arglist[nargs++] = "-m32";
#endif
#ifdef LINUX
	arglist[nargs++] = "-DLINUX";
#ifdef REDHAT
	arglist[nargs++] = "-DREDHAT";
#endif
#ifdef LINUXPPC
	arglist[nargs++] = "-DLINUXPPC";
#endif
	arglist[nargs++] = "-DPOSIX";
	arglist[nargs++] = "-DSYSV";
#endif

#ifdef BSD
	arglist[nargs++] = "-m32";
	arglist[nargs++] = "-DBSD";
#endif

#ifdef MACOSX
	arglist[nargs++] = "-DMACOSX";
	if (useg95 == 0) {
	    if ((irafarch = os_getenv("IRAFARCH"))) {
                if (strcmp (irafarch, "macosx") == 0) {
                    arglist[nargs++] = "-arch";
                    arglist[nargs++] = "ppc";
                    arglist[nargs++] = "-arch";
                    arglist[nargs++] = "i386";
                    arglist[nargs++] = "-m32";
	    	    arglist[nargs++] = "-mmacosx-version-min=10.4";
                } else if (strcmp (irafarch, "macintel") == 0) {
                    arglist[nargs++] = "-arch";
                    arglist[nargs++] = "x86_64";
                    arglist[nargs++] = "-m64";
                }

	    }
	}
#endif

#ifdef SOLARIS
	arglist[nargs++] = "-DSOLARIS";
#ifdef X86
	arglist[nargs++] = "-DX86";
#endif
	arglist[nargs++] = "-DPOSIX";
	arglist[nargs++] = "-DSYSV";
#endif

#ifdef LINUXAOUT
        arglist[nargs++] = "-b";
	arglist[nargs++] = "i486-linuxaout";
#endif

#ifdef sun
	if (floatoption[0])
	    arglist[nargs++] = floatoption;
#endif
	if (optimize) {
	    for (i=0;  i < nopt_flags;  i++)
	        arglist[nargs++] = opt_flags[i];
	}

	/* Add the user-defined flags last so they can override the 
	 * hardwired options.
	 */
	if ((s = os_getenv("XC-CFLAGS")) || (s = os_getenv("XC_CFLAGS")))
	    addflags (s, arglist, &nargs);

	for (i=0;  i < nflags;  i++)
	    arglist[nargs++] = lflags[i];
	
	/* Make list of files to be compiled.  Only C and assembler files
	 * are included.
	 */
	for (i=0, noperands=0;  i < nfiles;  i++) {
	    if (iscfile (lfiles[i]) || issfile (lfiles[i])) {
		arglist[nargs++] = lfiles[i];
		noperands++;
	    }
	}
	arglist[nargs] = NULL;

	if (noperands > 0) {
	    if (debug)
		printargs (ccomp, arglist, nargs);
	    errflag += run (ccomp, arglist);
	}


	/* If "-c" (compile only), or there was a compiler error, do not
	 * proceed with the link.
	 */
	if (!mktask || cflagseen || errflag)
	    done (errflag);


	/* Link the object files and libraries to produce the "-o" task.
	 */
	nargs = 0;
	arglist[nargs++] = linker;
	if ((s = os_getenv("XC-LFLAGS")) || (s = os_getenv("XC_LFLAGS")))
	    addflags (s, arglist, &nargs);

#ifdef MACOSX
	if (useg95 == 0 && (irafarch = os_getenv("IRAFARCH"))) {
            if (strcmp (irafarch, "macosx") == 0) {
                arglist[nargs++] = "-arch";
                arglist[nargs++] = "ppc";
                arglist[nargs++] = "-arch";
                arglist[nargs++] = "i386";
                arglist[nargs++] = "-m32";
	    	arglist[nargs++] = "-mmacosx-version-min=10.4";
            } else if (strcmp (irafarch, "macintel") == 0) {
                arglist[nargs++] = "-arch";
                arglist[nargs++] = "x86_64";
                arglist[nargs++] = "-m64";
            }
	}
#endif

#ifdef SOLARIS
	arglist[nargs++] = "-Wl,-t";
#endif
#if (defined(LINUX) && !defined(MACH64))
	arglist[nargs++] = "-Wl,--defsym,mem_=0";
#endif
#if (defined(LINUX) && !defined(MACH64))
	arglist[nargs++] = "-m32";
#endif
#if (defined(BSD))
	arglist[nargs++] = "-m32";
	arglist[nargs++] = "-L/usr/lib32";
	arglist[nargs++] = "-B/usr/lib32";
#endif
#ifdef NEED_GCC_SPECS
	{   char gcc_specs[SZ_PATHNAME];
	    static char cmd[SZ_CMDBUF];

	    if (os_sysfile ("gcc-specs", gcc_specs, SZ_PATHNAME) < 0)
		arglist[nargs++] = "/iraf/iraf/unix/bin/gcc-specs";
	    sprintf (cmd, "-specs=%s", gcc_specs);
	    arglist[nargs++] = cmd;
	}
#endif
#ifdef LINUXAOUT
        arglist[nargs++] = "-b";
	arglist[nargs++] = "i486-linuxaout";
#endif
	arglist[nargs++] = "-o";

	if (link_nfs) {
	    sprintf (tempfile, "/tmp/T_%s.XXXXXX", outfile);
#ifdef LINUX
	    mkstemp (tempfile);
#else
	    mktemp (tempfile);
#endif
	} else
	    sprintf (tempfile, "T_%s", outfile);
	arglist[nargs++] = tempfile;

	ncomp = 0;
	for (i=0;  i < nfiles;  i++)
	    if (*(ip = lfiles[i]) != '-') {
		while (*ip++ != EOS)
		    ;
		while (*--ip != '.' && ip >= lfiles[i])
		    ;
		if (*ip == '.')
		    switch (ip[1]) {
		    case 'f':
		    case 'r':
		    case 'c':
		    case 's':
		    case 'e':
			ip[1] = 'o';
			ncomp++;
		    }
	    }

	/* Link options. */
	link_static = 0;
	for (i=0;  i < nflags;  i++) {
	    arglist[nargs++] = lflags[i];
	    if (strcmp (lflags[i], F_STATIC) == 0)
		link_static = 1;
	    else if (strcmp (lflags[i], F_SHARED) == 0)
		link_static = 0;
	}

#ifdef sun
	/* Need to pass -f<float> to CC for the C libraries. */
	if (floatoption[0])
	    arglist[nargs++] = floatoption;

	/* If we are using the V1.3 Sun Fortran compiler, the V1.3 "f77"
	 * should be a symbolic link pointing to the BIN directory for the
	 * new compiler.  Construct the path to this directory and put it
	 * out as a -Ldir flag on the link line to ensure that the library
	 * is searched for linking.
	 */
	if (isv13()) {
	    char    libpath[SZ_PATHNAME];
	    char    dir[SZ_PATHNAME], *path;
	    char    *pp, *ip, *op, *s;
	    int     n;

	    path = findexe ("f77", dir);

	    strcpy (libpath, "-L");
	    strcpy (libpath+2, dir);
	    for (op=libpath;  *op;  op++)
		;
	    if ((n = readlink (path, op, 128)) > 0) {
		op[n] = EOS;

		for (ip=op;  *ip;  ip++)
		    if (*ip == '/')
			op = ip;
		*op = EOS;

		/* Search, e.g., /usr/lang/SC0.0/ffpa first if Sun-3. */
		if (floatoption[0]) {
		    s = floatoption + 1;
		    *op = '/';
		    strcpy (op+1, s);
		    strcpy (libp, libpath);
		    libp += strlen (pp = libp) + 1;
		    arglist[nargs++] = pp;
		}

		/* Search /usr/lang/SC0.0 (or whatever). */
		*op = EOS;
		strcpy (libp, libpath);
		libp += strlen (pp = libp) + 1;
		arglist[nargs++] = pp;
	    }
	}
#endif

	/* File to link. */
	for (i=0;  i < nfiles;  i++)
	    arglist[nargs++] = lfiles[i];

	/* Libraries to link against.
	 */
	if (hostprog) {
#ifdef LINUXPPC
	    /* LinuxPPC (YellowDog anyway) requires this library to resolve
	     * the MAIN__ generated by the fortran program statement into
	     * the 'main'.
	     */
	    if (host_c_main == 0)
	        arglist[nargs++] = "-lfrtbegin";
#else
	    if (!isv13())
		arglist[nargs++] = mkfname (fortlib[0]);
#endif
	} else
	    arglist[nargs++] = mkfname (LIBMAIN);

	if (voslibs) {
	    if (usesharelib) {
		arglist[nargs++] = mkfname (SHARELIB);
		arglist[nargs++] = mkfname (IRAFLIB4);
		arglist[nargs++] = mkfname (IRAFLIB5);
		arglist[nargs++] = mkfname (IRAFLIB6);
	    } else {
		arglist[nargs++] = mkfname (IRAFLIB1);
		arglist[nargs++] = mkfname (IRAFLIB2);
		arglist[nargs++] = mkfname (IRAFLIB3);
		arglist[nargs++] = mkfname (IRAFLIB4);
		arglist[nargs++] = mkfname (IRAFLIB5);
		arglist[nargs++] = mkfname (IRAFLIB6);
	    }
	}
#ifdef HOST_CURL
	arglist[nargs++] = "-lcurl";
#endif
#ifdef HOST_EXPAT
	arglist[nargs++] = "-lexpat";
#endif
	/* Host libraries, searched after iraf libraries. */
	for (i=0;  i < nhlibs;  i++)
	    arglist[nargs++] = hlibs[i];

	/* The remaining system libraries depend upon which version of
	 * the SunOS compiler we are using.  The V1.3 compilers use only
	 * -lF77 and -lm.
	 */
	if (isv13()) {
	    addflags (fortlib[2], arglist, &nargs);
	    addflags (fortlib[4], arglist, &nargs);
	} else {
	    addflags (fortlib[1], arglist, &nargs);
	    addflags (fortlib[2], arglist, &nargs);
	    addflags (fortlib[3], arglist, &nargs);
	    addflags (fortlib[4], arglist, &nargs);
	    addflags (fortlib[5], arglist, &nargs);
	    addflags (fortlib[6], arglist, &nargs);
	    addflags (fortlib[7], arglist, &nargs);
	    addflags (fortlib[8], arglist, &nargs);
	    addflags (fortlib[9], arglist, &nargs);
	}
	arglist[nargs] = NULL;

	if (ncomp) {
	    fprintf (stderr, "link:\n");
	    fflush (stderr);
	}
	if (debug)
	    printargs (linker, arglist, nargs);

	/* If the link is successful, replace the old executable with the
	 * new one.  Do not delete the bad executable if the link fails,
	 * as we might want to examine its symbol table.
	 */
	if ((status = run (linker, arglist)) == 0) {
	    unlink (outfile);

	    if (link_nfs) {
		char command[1024];
		sprintf (command, "/bin/cp -f %s %s", tempfile, outfile);
		if (debug)
		    printargs (command, NULL, 0);
		status = sys (command);
	    } else
		link (tempfile, outfile);

	    /* Force the mode of the file. */
	    chmod (outfile, 0755);

	    unlink (tempfile);
	}
	errflag += status;

	/* If we are linking against the iraf shared library and symbol editing
	 * has not been disabled, edit the symbol table of the new executable
	 * to provide symbols within the shared image.
	 */
	if (usesharelib && !noedsym && !stripexe) {
	    char    shlib[SZ_PATHNAME+1];
	    char    edsym[SZ_PATHNAME+1];
	    char    command[SZ_CMDBUF];

	    /* The os_sysfile(SHIMAGE) below assumes the existence of a file
	     * entry "S.e" in the directory containing the real shared image
	     * "S<n>.e".  We can't easily look directly for S<n>.e because
	     * the process symbol table and image has to be examined to
	     * determine the shared image version number.
	     */
	    if (os_sysfile (SHIMAGE, shlib, SZ_PATHNAME) > 0) {
		if (os_sysfile (EDSYM, edsym, SZ_PATHNAME) > 0) {
		    sprintf (command, "%s %s %s", edsym, outfile, shlib);
		    if (noshsym)
			strcat (command, " -T");
		    else if (notvsym)
			strcat (command, " -t");
		    status = sys (command);
		}
	    }
	}
	errflag += status;

	done (errflag);
}


/* MKFNAME -- Make the UNIX pathname of an IRAF library file.  Use os_sysfile
 * the get the vfn of the library file, so that we do not have to know what
 * system directory the library file is in.
 */
char *
mkfname (i_fname)
char *i_fname;
{
	char fname[SZ_PATHNAME+1];
	char *oname;

	/* Library referenced as -lXXX */
	if (strncmp (i_fname, "-l", 2) == 0) {
	    sprintf (fname, "lib%s.a", &i_fname[2]);
	    if (oname = iraflib (fname))
		return (oname);
	    else
		return (i_fname);
	}

	/* Must be a library filename or pathname */
	strcpy (fname, i_fname);
	if (oname = iraflib (fname))
	    strcpy (libp, oname);
	else
	    strcpy (libp, fname);

	oname = libp;
	libp += strlen (libp) + 1;

	return (oname);
}


/* ADDFLAGS -- Add one or more flags to an argument list.  Ignore null flags,
 * separate multiple flags on whitespace.
 */
addflags (flag, arglist, p_nargs)
char *flag;
char *arglist[];
int *p_nargs;
{
	register int i, len, nargs = *p_nargs;
	char *fp, *fs, lflag[SZ_FNAME];

	if (flag && *flag) {

	    for (fp = flag; *fp; ) {
		while (*fp && isspace(*fp)) 		/* skip leading space */
		    fp++;
		for (i=0; *fp && !isspace(*fp); ) 	/* collect flag       */
		    lflag[i++] = *fp++;
		lflag[i] = '\0';
		len = strlen (lflag);
		strcpy ((fs = malloc(len+1)), lflag);

	        if (strcmp (lflag, F_STATIC) == 0) {
		    link_static = 1;
	        } else if (strcmp (lflag, F_SHARED) == 0) {
		    link_static = 0;
#ifndef HOST_F2C
#if defined(LINUX) || defined(BSD) || defined(X86) || defined(MACOSX)
	        } else if ((strcmp (lflag, "-lf2c") == 0) || 
	    	    (strcmp (lflag, "-lcompat") == 0)) {
		        /* Use the IRAF version of libf2c.a or libcompat.a,
		         * not the host version which may or may not be present.
		         */
		        arglist[nargs++] = mkfname (lflag);
		        *p_nargs = nargs;
		        return (1);
#endif
#endif
	        }

#ifdef SOLARIS
	        else if (strcmp (lflag, "-ldl") == 0) {
		    /* This beastie has to be linked dynamic on Solaris, but
		     * we don't want to have to know this everywhere so we do
		     * it automatically there.
		     */
		    if (link_static)
		        arglist[nargs++] = F_SHARED;
		    arglist[nargs++] = fs;
		    if (link_static)
		        arglist[nargs++] = F_STATIC;
		    *p_nargs = nargs;
		    return (1);
	        }
#endif
	        arglist[nargs++] = fs;
	    }

	    *p_nargs = nargs;
	    return (1);
	}

	return (0);
}


/* IRAFLIB -- Determine if "libname" is an IRAF library.  If so return
 * the pathname of the library, else return NULL.
 */
char *
iraflib (libref)
char	*libref;
{
	register char *ip, *op;
	char savename[SZ_PATHNAME+1];
	char libname[SZ_PATHNAME+1];
	char fname[SZ_PATHNAME+1];
	char path[SZ_PATHNAME+1];
	int foundit, dbg = dbgout;
	char *absname;

	strcpy (savename, libref);

	/* If dbgout is enabled try the debug library first, but fall back
	 * to the normal library if thie debug library is not found.
	 */
again:
	if (strncmp (libref, "-l", 2) == 0) { 
	    sprintf (libname, "lib%s.a", libref+2);
	    libref = libname;
	    goto again;
	} else
	    strcpy (libname, libref);

	/* Position IP to EOS. */
	for (ip=libref;  *ip;  ip++)
	    ;

	if (!(*(ip-2) == '.' && *(ip-1) == 'a')) {
	    /* Not a library file, leave it alone.
	     */
	    strcpy (fname, libref);

	} else {
	    /* Normalize the library file name, "libXXX[_p].a".
	     */
	    for (ip=libref, op=fname;  *op = *ip;  op++, ip++)
		;
	    if ((*(op-2) == '.' && *(op-1) == 'a')) {
		*(op-2) = '\0';
		op -= 2;
	    } else
		op -= 1;

	    if (dbg && !(*(op-2) == '_' && *(op-1) == 'p')) {
		*op++ = '_';
		*op++ = 'p';
	    }
	    *op++ = '.';
	    *op++ = 'a';
	    *op++ = '\0';
	}

	foundit = 0;
	if (access (fname, 0) == 0) {
	    strcpy (path, fname);
	    foundit++;
	} else {
	    if (os_sysfile (fname, path, SZ_PATHNAME) > 0)
		foundit++;
	}

	if (foundit) {
	    strcpy (absname=bp, vfn2osfn (path, 0));
	    bp += strlen (absname) + 1;
	    if (bp - buffer >= SZ_BUFFER)
		fatal ("Out of space for library names");
	    if (debug > 1)
		fprintf (stderr, "iraflib: %s -> %s\n", savename, absname);
	    return (absname);
	} else if (dbg) {
	    dbg = 0;
	    goto again;
	} else {
	    if (debug > 1)
		fprintf (stderr, "iraflib: %s -> %s\n", savename, savename);
	    return (NULL);
	}
}


/* PRINTARGS -- Echo a UNIX command on the standard error output.
 */
printargs (cmd, arglist, nargs)
char	*cmd;
char	*arglist[];
int	nargs;
{
	int	i;

	fputs (cmd, stderr);
	for (i=1;  i < nargs;  i++)
	    fprintf (stderr, " %s", arglist[i]);
	putc ('\n', stderr);
	fflush (stderr);
}


/* XTOF -- Convert a ".x" file into a ".f" file, i.e., call up the preprocessor
 * to translate an SPP file into Fortran.
 */
xtof (file)
char	*file;
{
	static  char xpp_path[SZ_PATHNAME+1], rpp_path[SZ_PATHNAME+1];
	char	cmdbuf[SZ_CMDBUF], fname[SZ_FNAME];
	char    iraf_h[SZ_PATHNAME];


	lxfiles[nxfiles++] = file;
	if (nxfiles > MAXFILE)
	    fatal ("too many files");

	if (nfileargs > 1 || mkobject) {
	    fprintf (stderr, "%s:\n", file);
	    fflush (stderr);
	}

	if (!xpp_path[0])
	    if (os_sysfile (XPP, xpp_path, SZ_PATHNAME) <= 0)
		strcpy (xpp_path, XPP);

	if (userincs) {
	    if (pkgenv)
	        sprintf (cmdbuf, "%s %s -A -R %s", xpp_path, pkgenv, file);
	    else
	        sprintf (cmdbuf, "%s -A -R %s", xpp_path, file);
	} else {
	    if (pkgenv)
	        sprintf (cmdbuf, "%s %s -R %s", xpp_path, pkgenv, file);
	    else
	        sprintf (cmdbuf, "%s -R %s", xpp_path, file);
	}


	/* Include a custom 64-bit iraf.h file.
	 */
#if defined(LINUX64) || defined(MACH64)
	memset (iraf_h, 0, SZ_PATHNAME);

	if (os_sysfile ("iraf.h", iraf_h, SZ_PATHNAME) <= 0)
	    strcpy (iraf_h, "iraf.h");
	strcat (cmdbuf, " -h ");
	strcat (cmdbuf, iraf_h);
#else
	if (foreigndefs) {
	    strcat (cmdbuf, " -h ");
	    strcat (cmdbuf, foreign_defsfile);
	}
#endif
	printf("Calling '%s'\n", cmdbuf); 
	errflag |= sys (cmdbuf);
	chdot (file, 'r');

	strcpy (fname, file);
	chdot (fname, 'f');

	if (!rpp_path[0])
	    if (os_sysfile (RPP, rpp_path, SZ_PATHNAME) <= 0)
		strcpy (rpp_path, RPP);
	sprintf (cmdbuf, "%s %s%s >%s",
	    rpp_path, dbgout ? "-g " : "", file, fname);
	printf("Calling '%s'\n", cmdbuf); 
	if (!(errflag & XPP_BADXFILE))
	    errflag |= sys (cmdbuf);

	/*unlink (file);			/* remove ".r" file */
	chdot (file, 'f');		/* change name to ".f" */
}


/* GETEXTN -- Get a one letter extension from a file name (BPS 07.23.96)
 */
getextn (fname)
char	*fname;
{
	register char *ip, *dot;
        int ch;

	for (ip=fname, dot=NULL;  *ip != EOS;  ip++)
	    if (*ip == '.')
		dot = ip;

	if (dot == NULL || *(dot+2) != EOS) {
	    ch = EOS;
	} else {
	    ch = *(dot+1);
	}

	return (ch);
}
	

/* CHDOT -- Change the filename extension, i.e., the single character
 * following the "." at the end of the filename, to the indicated character.
 */
chdot (fname, dotchar)
char	*fname;
char	dotchar;
{
	char	*p;

	p = fname;
	while (*p++ != EOS)
	    ;
	while (*--p != '.' && p >= fname)
	    ;
	*(p+1) = dotchar;
}


/* RUN -- Send a command to UNIX and return the execution status to our
 * caller at the completion of the command.
 */
run (task, argv)
char	*task;
char	*argv[];
{
	int	waitpid;
	pid_t	fork();
	char	path[SZ_PATHNAME];

	if ((waitpid = fork()) == 0) {
	    enbint (SIG_DFL);

	    execvp (task, argv);	/* use user PATH for search */
	    strcpy (path, SYSBINDIR);
	    strcat (path, task);
	    execv  (path, argv);	/* look in SYSBINDIR */
	    strcpy (path, LOCALBINDIR);
	    strcat (path, task);
	    execv  (path, argv);	/* look in LOCALBINDIR */

	    fatalstr ("Cannot execute %s", task);
	}

	return (await (waitpid));
}


/*
 * Task execution and interrupt handling routines,
 * taken with minor modifications the F77 driver.
 */


/* SYS -- Execute a general UNIX command passed as a string.  The command may
 * contain i/o redirection metacharacters.  The full path of the command to
 * be executed should be given (and always is in the case of XC).
 */
sys (cmd)
char	*cmd;
{
	register char *ip;
	char	*argv[256];
	char	*inname, *outname;
	int	append;
	int	waitpid;
	int	argc;

	if (debug) {
	    fprintf (stderr, "debug: %s\n", cmd);
	    fflush (stderr);
	}

	inname  = NULL;
	outname = NULL;
	append = NO;
	argc = 0;

	/* Parse command string into argv array, inname, and outname.
	 */
	ip = cmd;
	while (isspace (*ip))
	    ++ip;
	while (*ip) {
	    if (*ip == '<')
		inname = ip+1;
	    else if (*ip == '>') {
		if (ip[1] == '>') {
		    append = YES;
		    outname = ip+2;
		} else {
		    append = NO;
		    outname = ip+1;
		}
	    } else
		argv[argc++] = ip;
	    while ( !isspace (*ip) && *ip != '\0' )
		++ip;
	    if (*ip) {
		*ip++ = '\0';
		while (isspace (*ip))
		    ++ip;
	    }
	}

	if (argc <= 0)				/* no command */
	    return (-1);
	argv[argc] = 0;

	/* Execute the command. */
	if ((waitpid = fork()) == 0) {
	    if (inname)
		freopen (inname, "r", stdin);
	    if (outname)
		freopen (outname, (append ? "a" : "w"), stdout);
	    enbint (SIG_DFL);

	    execv (argv[0], argv);
	    fatalstr ("Cannot execute %s", argv[0]);
	}

	return (await (waitpid));
}


/* DONE -- Called at process shutdown to cleanup.  Primary action is to delete
 * the intermediate Fortran files, unless the -F flag was given on the command
 * line.
 */
done (k)
int	k;
{
	static	int recurs = NO;

	if (recurs == NO) {
	    recurs = YES;
	    if (!keepfort)
	        rmfiles();
	}

	ZZSTOP();
	exit (k);
}


/* ENBINT -- Post an exception handler function to be executed if any sort
 * of interrupt occurs.
 */
enbint (handler)
SIGFUNC	handler;
{
	if (sig_int == 0)
	    signal (SIGINT, handler);
	if (sig_quit == 0)
	    signal (SIGQUIT, handler);
	if (sig_hup == 0)
	    signal (SIGHUP, handler);
	if (sig_term == 0)
	    signal (SIGTERM, handler);
}


/* INTERRUPT -- Exception handler, called if an interrupt is received
 * during compilation.
 */
interrupt()
{
	done (2);
}


/* AWAIT -- Wait for an asynchronous child process to terminate.
 */
await (waitpid)
int	waitpid;
{
	int	w, status;
	extern	interrupt();

	enbint (SIG_IGN);
	while ((w = wait (&status)) != waitpid)
	    if (w == -1)
		fatal ("bad wait code");
	enbint ((SIGFUNC)interrupt);
	if (status & 0377) {
	    if (status != SIGINT) {
		fprintf (stderr, "Termination code %d", status);
		fflush (stderr);
	    }
	    done (2);
	}
	return (status>>8);
}


/* RMFILES -- Delete all of the ".f" intermediate Fortran files.
 */
rmfiles()
{
	int	i;

	for (i=0;  i < nxfiles;  i++) {
	    chdot (lxfiles[i], 'f');
	    /*	    unlink (lxfiles[i]); */
	}
}


/* FATALSTR -- Fatal error with an sprintf format and one string argument.
 */
fatalstr (s1, s2)
char	*s1, *s2;
{
	char	out[SZ_CMDBUF];

	sprintf (out, s1, s2);
	fatal (out);
}


/* FATAL -- A fatal error has occurred.  Print error message and terminate
 * process execution.
 */
fatal (s)
char	*s;
{
	fprintf (stderr, "Fatal compiler error: %s\n", s);
	fflush (stderr);
	done (1);
}


/* ERROR -- Print a warning message but do not terminate the process.
 */
error (s)
char	*s;
{
	fprintf (stderr, "Error: %s\n", s);
	fflush (stderr);
}


/* ISV3 -- Test if we are using the version 3.x (or greater) Sunsoft Compilers.
 * This returns true unless SC2.x.x is detected.
 */
isv3()
{
	static	int v3 = -1;
	struct	dirent *dp;
	char	dir[SZ_PATHNAME];
	char	*name;
	DIR	*dirp;

#ifndef SOLARIS
	return (v3 = 0);
#else
	char	*path;
	char	link[SZ_PATHNAME];
	int	n;

        if (v3 != -1)
            return (v3);

        if ((path = findexe ("f77", dir))) {
            /* Check if command is a symlink to someplace else, if so look
             * for the string 'SC2.0' in the link path indicating this is
             * a V2 compiler installation.  Otherwise check the path to a
             * file for the same thing.  This assumes that V3 is true
             * unless something is found to say otherwise.
             */
            if ((n = readlink (path, link, 128)) > 0) {
                link[n] = '\0';
                if (strstr (link, "SC2.0"))
                    return (v3 = 0);
            } else
                if (strstr (dir, "SC2.0"))
                    return (v3 = 0);
        }

        return (v3 = 1);
#endif
}

/* ISV13 -- Test if we are using the version 1.3 Sun Fortran compiler.
 * There is no simple, reliable way to do this.  The heuristic used is
 * to first locate the "f77" we will use, then see if there is a file
 * named "f77-1.3*" in the same directory.
 */
isv13()
{
	static	int v13 = -1;
	struct	dirent *dp;
	char	dir[SZ_PATHNAME];
	char	*name;
	DIR	*dirp;

return (0);
#ifdef SOLARIS
	return (v13 = 0);
#else

	if (v13 != -1)
	    return (v13);

	if (findexe ("f77", dir) && (dirp = opendir(dir)) != NULL) {
	    while (dp = readdir(dirp)) {
		/* Actually, we don't want to be too picky about the
		 * version number of this won't work for future versions,
		 * so just match up to the version number.
		 */
		name = dp->d_name;
		if (!strncmp (name, "f77-1.3", 4) && isdigit(name[4])) {
		    closedir (dirp);
		    return (v13 = 1);
		}
	    }
	    closedir (dirp);
	}

	return (v13 = 0);
#endif
}


/* FINDEXE -- Search for the named file and return the path if found, else
 * NULL.  If "dir" is non-NULL the directory in which the file resides is
 * returned in the string buffer pointed to.  The user's PATH is searched,
 * followed by SYSBINDIR, then LOCALBINDIR.
 */
char *
findexe (prog, dir)
char	*prog;			/* file to search for */
char	*dir;			/* pointer to output string buf, or NULL */
{
	register char *ip, *op;
	static	char path[SZ_PATHNAME];
	char	dirpath[SZ_PATHNAME];
	char	*dp = dir ? dir : dirpath;
	char	*pathp;

	/* Look for the program in the directories in the user's path.
	 */
	ip = pathp = os_getenv ("PATH");
	while (*ip) {
	    for (op=dp;  *ip && (*op = *ip++) != ':';  op++)
		;
	    *op++ = '/';
	    *op++ = EOS;
	    strcpy (path, dp);
	    strcat (path, prog);
	    if (access (path, 0) != -1)
		return (path);
	}

	/* Look in SYSBINDIR. */
	strcpy (dp, SYSBINDIR);
	strcpy (path, dp);
	strcat (path, prog);

	if (access (path, 0) != -1) {
	    static  char envpath[8192];
	    char    *oldpath;

	    /* Add SYSBINDIR to the user's path.  This is required to
	     * use the V1.3 compiler.  Note that this code should only be
	     * executed once, since the next time findexe is called the
	     * SYSBINDIR directory will be in the default path, above.
	     */
	    if (oldpath = pathp) {
		sprintf (envpath, "PATH=%s:%s", SYSBINDIR, oldpath);
		putenv (envpath);
	    }

	    return (path);
	}

	/* Look in LOCALBINDIR. */
	strcpy (dp, LOCALBINDIR);
	strcpy (path, dp);
	strcat (path, prog);
	if (access (path, 0) != -1)
	    return (path);

	/* Not found. */
	return (NULL);
}