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
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
|
#!/bin/sh
#
# Fio configure script. Heavily influenced by the manual qemu configure
# script. Sad this is easier than autoconf and enemies.
#
# set temporary file name
if test ! -z "$TMPDIR" ; then
TMPDIR1="${TMPDIR}"
elif test ! -z "$TEMPDIR" ; then
TMPDIR1="${TEMPDIR}"
else
TMPDIR1="/tmp"
fi
TMPC="${TMPDIR1}/fio-conf-${RANDOM}-$$-${RANDOM}.c"
TMPC2="${TMPDIR1}/fio-conf-${RANDOM}-$$-${RANDOM}-2.c"
TMPO="${TMPDIR1}/fio-conf-${RANDOM}-$$-${RANDOM}.o"
TMPE="${TMPDIR1}/fio-conf-${RANDOM}-$$-${RANDOM}.exe"
# NB: do not call "exit" in the trap handler; this is buggy with some shells;
# see <1285349658-3122-1-git-send-email-loic.minier@linaro.org>
trap "rm -f $TMPC $TMPC2 $TMPO $TMPE" EXIT INT QUIT TERM
rm -rf config.log
config_host_mak="config-host.mak"
config_host_h="config-host.h"
rm -rf $config_host_mak
rm -rf $config_host_h
fatal() {
echo $@
echo "Configure failed, check config.log and/or the above output"
rm -rf $config_host_mak
rm -rf $config_host_h
exit 1
}
# Print result for each configuration test
print_config() {
printf "%-30s%s\n" "$1" "$2"
}
# Default CFLAGS
CFLAGS="-D_GNU_SOURCE -include config-host.h $CFLAGS"
CONFIGURE_CFLAGS="-Werror-implicit-function-declaration"
BUILD_CFLAGS=""
# Print a helpful header at the top of config.log
echo "# FIO configure log $(date)" >> config.log
printf "# Configured with:" >> config.log
printf " '%s'" "$0" "$@" >> config.log
echo >> config.log
echo "#" >> config.log
# Print configure header at the top of $config_host_h
echo "/*" > $config_host_h
echo " * Automatically generated by configure - do not modify" >> $config_host_h
printf " * Configured with:" >> $config_host_h
printf " * '%s'" "$0" "$@" >> $config_host_h
echo "" >> $config_host_h
echo " */" >> $config_host_h
do_cc() {
# Run the compiler, capturing its output to the log.
echo $cc "$@" >> config.log
$cc "$@" >> config.log 2>&1 || return $?
# Test passed. If this is an --enable-werror build, rerun
# the test with -Werror and bail out if it fails. This
# makes warning-generating-errors in configure test code
# obvious to developers.
if test "$werror" != "yes"; then
return 0
fi
# Don't bother rerunning the compile if we were already using -Werror
case "$*" in
*-Werror*)
return 0
;;
esac
echo $cc -Werror "$@" >> config.log
$cc -Werror "$@" >> config.log 2>&1 && return $?
echo "ERROR: configure test passed without -Werror but failed with -Werror."
echo "This is probably a bug in the configure script. The failing command"
echo "will be at the bottom of config.log."
fatal "You can run configure with --disable-werror to bypass this check."
}
compile_object() {
do_cc $CFLAGS $CONFIGURE_CFLAGS -c -o $TMPO $TMPC
}
compile_prog() {
local_cflags="$1"
local_ldflags="$2 $LIBS"
echo "Compiling test case $3" >> config.log
do_cc $CFLAGS $CONFIGURE_CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags
}
feature_not_found() {
feature=$1
packages=$2
echo "ERROR"
echo "ERROR: User requested feature $feature"
if test ! -z "$packages" ; then
echo "ERROR: That feature needs $packages installed"
fi
echo "ERROR: configure was not able to find it"
fatal "ERROR"
}
has() {
type "$1" >/dev/null 2>&1
}
check_define() {
cat > $TMPC <<EOF
#if !defined($1)
#error $1 not defined
#endif
int main(void)
{
return 0;
}
EOF
compile_object
}
output_sym() {
echo "$1=y" >> $config_host_mak
echo "#define $1" >> $config_host_h
}
check_min_lib_version() {
_feature=$3
if "${cross_prefix}"pkg-config --atleast-version="$2" "$1" > /dev/null 2>&1; then
return 0
fi
: "${_feature:=${1}}"
if "${cross_prefix}"pkg-config --version > /dev/null 2>&1; then
if eval "echo \$$_feature" = "yes" ; then
feature_not_found "$_feature" "$1 >= $2"
fi
else
print_config "$1" "missing pkg-config, can't check $_feature version"
fi
return 1
}
targetos=""
cpu=""
# default options
show_help="no"
exit_val=0
gfio_check="no"
libhdfs="no"
pmemblk="no"
devdax="no"
pmem="no"
cuda="no"
libcufile="no"
disable_lex=""
disable_pmem="no"
disable_native="no"
march_set="no"
libiscsi="no"
libnbd="no"
libzbc=""
dynamic_engines="no"
prefix=/usr/local
# parse options
for opt do
optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
case "$opt" in
--prefix=*) prefix="$optarg"
;;
--cpu=*) cpu="$optarg"
;;
# esx is cross compiled and cannot be detect through simple uname calls
--esx)
esx="yes"
;;
--cc=*) CC="$optarg"
;;
--extra-cflags=*) CFLAGS="$CFLAGS $optarg"
;;
--build-32bit-win) build_32bit_win="yes"
;;
--target-win-ver=*) target_win_ver="$optarg"
;;
--enable-pdb) pdb="yes"
;;
--build-static) build_static="yes"
;;
--enable-gfio) gfio_check="yes"
;;
--disable-numa) disable_numa="yes"
;;
--disable-rdma) disable_rdma="yes"
;;
--disable-rados) disable_rados="yes"
;;
--disable-rbd) disable_rbd="yes"
;;
--disable-http) disable_http="yes"
;;
--disable-gfapi) disable_gfapi="yes"
;;
--enable-libhdfs) libhdfs="yes"
;;
--disable-lex) disable_lex="yes"
;;
--enable-lex) disable_lex="no"
;;
--disable-shm) no_shm="yes"
;;
--disable-optimizations) disable_opt="yes"
;;
--disable-pmem) disable_pmem="yes"
;;
--enable-cuda) cuda="yes"
;;
--enable-libcufile) libcufile="yes"
;;
--disable-native) disable_native="yes"
;;
--with-ime=*) ime_path="$optarg"
;;
--enable-libiscsi) libiscsi="yes"
;;
--enable-libnbd) libnbd="yes"
;;
--disable-libzbc) libzbc="no"
;;
--disable-tcmalloc) disable_tcmalloc="yes"
;;
--dynamic-libengines) dynamic_engines="yes"
;;
--help)
show_help="yes"
;;
*)
echo "Bad option $opt"
show_help="yes"
exit_val=1
esac
done
if test "$show_help" = "yes" ; then
echo "--prefix= Use this directory as installation prefix"
echo "--cpu= Specify target CPU if auto-detect fails"
echo "--cc= Specify compiler to use"
echo "--extra-cflags= Specify extra CFLAGS to pass to compiler"
echo "--build-32bit-win Enable 32-bit build on Windows"
echo "--target-win-ver= Minimum version of Windows to target (only accepts 7)"
echo "--enable-pdb Enable Windows PDB symbols generation (needs clang/lld)"
echo "--build-static Build a static fio"
echo "--esx Configure build options for esx"
echo "--enable-gfio Enable building of gtk gfio"
echo "--disable-numa Disable libnuma even if found"
echo "--disable-rdma Disable RDMA support even if found"
echo "--disable-rados Disable Rados support even if found"
echo "--disable-rbd Disable Rados Block Device even if found"
echo "--disable-http Disable HTTP support even if found"
echo "--disable-gfapi Disable gfapi"
echo "--enable-libhdfs Enable hdfs support"
echo "--disable-lex Disable use of lex/yacc for math"
echo "--disable-pmem Disable pmem based engines even if found"
echo "--enable-lex Enable use of lex/yacc for math"
echo "--disable-shm Disable SHM support"
echo "--disable-optimizations Don't enable compiler optimizations"
echo "--enable-cuda Enable GPUDirect RDMA support"
echo "--enable-libcufile Enable GPUDirect Storage cuFile support"
echo "--disable-native Don't build for native host"
echo "--with-ime= Install path for DDN's Infinite Memory Engine"
echo "--enable-libiscsi Enable iscsi support"
echo "--enable-libnbd Enable libnbd (NBD engine) support"
echo "--disable-libzbc Disable libzbc even if found"
echo "--disable-tcmalloc Disable tcmalloc support"
echo "--dynamic-libengines Lib-based ioengines as dynamic libraries"
exit $exit_val
fi
cross_prefix=${cross_prefix-${CROSS_COMPILE}}
# Preferred compiler (can be overriden later after we know the platform):
# ${CC} (if set)
# ${cross_prefix}gcc (if cross-prefix specified)
# gcc if available
# clang if available
if test -z "${CC}${cross_prefix}"; then
if has gcc; then
cc=gcc
elif has clang; then
cc=clang
fi
else
cc="${CC-${cross_prefix}gcc}"
fi
if check_define __ANDROID__ ; then
targetos="Android"
elif check_define __linux__ ; then
targetos="Linux"
elif check_define __OpenBSD__ ; then
targetos='OpenBSD'
elif check_define __NetBSD__ ; then
targetos='NetBSD'
elif check_define __sun__ ; then
targetos='SunOS'
CFLAGS="$CFLAGS -D_REENTRANT"
elif check_define _WIN32 ; then
targetos='CYGWIN'
else
targetos=`uname -s`
fi
echo "# Automatically generated by configure - do not modify" > $config_host_mak
printf "# Configured with:" >> $config_host_mak
printf " '%s'" "$0" "$@" >> $config_host_mak
echo >> $config_host_mak
echo "CONFIG_TARGET_OS=$targetos" >> $config_host_mak
if test "$no_shm" = "yes" ; then
output_sym "CONFIG_NO_SHM"
fi
if test "$disable_opt" = "yes" ; then
output_sym "CONFIG_FIO_NO_OPT"
fi
# Some host OSes need non-standard checks for which CPU to use.
# Note that these checks are broken for cross-compilation: if you're
# cross-compiling to one of these OSes then you'll need to specify
# the correct CPU with the --cpu option.
case $targetos in
AIX|OpenBSD|NetBSD)
# Unless explicitly enabled, turn off lex.
# OpenBSD will hit syntax error when enabled.
if test -z "$disable_lex" ; then
disable_lex="yes"
else
force_no_lex_o="yes"
fi
;;
FreeBSD)
CFLAGS="$CFLAGS -I/usr/local/include"
LDFLAGS="$LDFLAGS -L/usr/local/lib"
;;
Darwin)
# on Leopard most of the system is 32-bit, so we have to ask the kernel if
# we can run 64-bit userspace code.
# If the user didn't specify a CPU explicitly and the kernel says this is
# 64 bit hw, then assume x86_64. Otherwise fall through to the usual
# detection code.
if test -z "$cpu" && test "$(sysctl -n hw.optional.x86_64)" = "1"; then
cpu="x86_64"
fi
# Avoid configure feature detection of features provided by weak symbols
cat > $TMPC <<EOF
int main(void)
{
return 0;
}
EOF
if compile_prog "" "-Werror=partial-availability" "error on weak symbols"; then
CONFIGURE_CFLAGS="$CONFIGURE_CFLAGS -Werror=partial-availability"
fi
;;
SunOS)
# `uname -m` returns i86pc even on an x86_64 box, so default based on isainfo
if test -z "$cpu" && test "$(isainfo -k)" = "amd64"; then
cpu="x86_64"
fi
LIBS="-lnsl -lsocket"
;;
CYGWIN*)
# We still force some options, so keep this message here.
echo "Forcing some known good options on Windows"
if test -z "${CC}${cross_prefix}"; then
if test ! -z "$build_32bit_win" && test "$build_32bit_win" = "yes"; then
cc="i686-w64-mingw32-gcc"
else
cc="x86_64-w64-mingw32-gcc"
fi
fi
target_win_ver=$(echo "$target_win_ver" | tr '[:lower:]' '[:upper:]')
if test -z "$target_win_ver"; then
# Default Windows API target
target_win_ver="7"
fi
if test "$target_win_ver" = "7"; then
output_sym "CONFIG_WINDOWS_7"
CFLAGS="$CFLAGS -D_WIN32_WINNT=0x0601"
else
fatal "Unknown target Windows version"
fi
# We need this to be output_sym'd here because this is Windows specific.
# The regular configure path never sets this config.
output_sym "CONFIG_WINDOWSAIO"
# We now take the regular configuration path without having exit 0 here.
# Flags below are still necessary mostly for MinGW.
build_static="yes"
rusage_thread="yes"
fdatasync="yes"
clock_gettime="yes" # clock_monotonic probe has dependency on this
clock_monotonic="yes"
sched_idle="yes"
;;
esac
# Now we know the target platform we can have another guess at the preferred
# compiler when it wasn't explictly set
if test -z "${CC}${cross_prefix}"; then
if test "$targetos" = "FreeBSD" || test "$targetos" = "Darwin"; then
if has clang; then
cc=clang
fi
fi
fi
if test -z "$cc"; then
echo "configure: failed to find compiler"
exit 1
fi
if test ! -z "$cpu" ; then
# command line argument
:
elif check_define __i386__ ; then
cpu="i386"
elif check_define __x86_64__ ; then
cpu="x86_64"
elif check_define __sparc__ ; then
if check_define __arch64__ ; then
cpu="sparc64"
else
cpu="sparc"
fi
elif check_define _ARCH_PPC ; then
if check_define _ARCH_PPC64 ; then
cpu="ppc64"
else
cpu="ppc"
fi
elif check_define __mips__ ; then
cpu="mips"
elif check_define __ia64__ ; then
cpu="ia64"
elif check_define __s390__ ; then
if check_define __s390x__ ; then
cpu="s390x"
else
cpu="s390"
fi
elif check_define __arm__ ; then
cpu="arm"
elif check_define __aarch64__ ; then
cpu="aarch64"
elif check_define __hppa__ ; then
cpu="hppa"
else
cpu=`uname -m`
fi
# Normalise host CPU name and set ARCH.
case "$cpu" in
ia64|ppc|ppc64|s390|s390x|sparc64)
cpu="$cpu"
;;
i386|i486|i586|i686|i86pc|BePC)
cpu="x86"
;;
x86_64|amd64)
cpu="x86_64"
;;
armv*b|armv*l|arm)
cpu="arm"
;;
aarch64)
cpu="arm64"
;;
hppa|parisc|parisc64)
cpu="hppa"
;;
mips*)
cpu="mips"
;;
sparc|sun4[cdmuv])
cpu="sparc"
;;
*)
echo "Unknown CPU"
;;
esac
##########################################
# check cross compile
if test "$cross_compile" != "yes" ; then
cross_compile="no"
fi
cat > $TMPC <<EOF
int main(void)
{
return 0;
}
EOF
if compile_prog "" "" "cross"; then
$TMPE 2>/dev/null || cross_compile="yes"
else
fatal "compile test failed"
fi
##########################################
# check endianness
if test "$bigendian" != "yes" ; then
bigendian="no"
fi
if test "$cross_compile" = "no" ; then
cat > $TMPC <<EOF
#include <inttypes.h>
int main(void)
{
volatile uint32_t i=0x01234567;
return (*((uint8_t*)(&i))) == 0x67;
}
EOF
if compile_prog "" "" "endian"; then
$TMPE && bigendian="yes"
fi
else
# If we're cross compiling, try our best to work it out and rely on the
# run-time check to fail if we get it wrong.
cat > $TMPC <<EOF
#include <endian.h>
int main(void)
{
#if __BYTE_ORDER != __BIG_ENDIAN
# error "Unknown endianness"
#endif
}
EOF
compile_prog "" "" "endian" && bigendian="yes"
check_define "__ARMEB__" && bigendian="yes"
check_define "__MIPSEB__" && bigendian="yes"
fi
print_config "Operating system" "$targetos"
print_config "CPU" "$cpu"
print_config "Big endian" "$bigendian"
if test ! -z "$target_win_ver"; then
print_config "Target Windows version" "$target_win_ver"
fi
print_config "Compiler" "$cc"
print_config "Cross compile" "$cross_compile"
echo
##########################################
# See if we need to build a static build
if test "$build_static" = "yes" ; then
CFLAGS="$CFLAGS -ffunction-sections -fdata-sections"
LDFLAGS="$LDFLAGS -static -Wl,--gc-sections"
else
build_static="no"
fi
print_config "Static build" "$build_static"
##########################################
# check for C11 atomics support
cat > $TMPC <<EOF
#include <stdatomic.h>
int main(void)
{
_Atomic unsigned v;
atomic_load(&v);
return 0;
}
EOF
if ! compile_prog "" "" "C11 atomics"; then
echo
echo "Your compiler doesn't support C11 atomics. gcc 4.9/clang 3.6 are the"
echo "minimum versions with it - perhaps your compiler is too old?"
fatal "C11 atomics support not found"
fi
##########################################
# check for wordsize
wordsize="0"
cat > $TMPC <<EOF
#include <limits.h>
#define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
int main(void)
{
BUILD_BUG_ON(sizeof(long)*CHAR_BIT != WORDSIZE);
return 0;
}
EOF
if compile_prog "-DWORDSIZE=32" "" "wordsize"; then
wordsize="32"
elif compile_prog "-DWORDSIZE=64" "" "wordsize"; then
wordsize="64"
else
fatal "Unknown wordsize"
fi
print_config "Wordsize" "$wordsize"
##########################################
# zlib probe
if test "$zlib" != "yes" ; then
zlib="no"
fi
cat > $TMPC <<EOF
#include <zlib.h>
int main(void)
{
z_stream stream;
if (inflateInit(&stream) != Z_OK)
return 1;
return 0;
}
EOF
if compile_prog "" "-lz" "zlib" ; then
zlib=yes
LIBS="-lz $LIBS"
fi
print_config "zlib" "$zlib"
##########################################
# linux-aio probe
if test "$libaio" != "yes" ; then
libaio="no"
fi
if test "$esx" != "yes" ; then
cat > $TMPC <<EOF
#include <libaio.h>
#include <stddef.h>
int main(void)
{
io_setup(0, NULL);
return 0;
}
EOF
if compile_prog "" "-laio" "libaio" ; then
libaio=yes
else
if test "$libaio" = "yes" ; then
feature_not_found "linux AIO" "libaio-dev or libaio-devel"
fi
libaio=no
fi
cat > $TMPC <<EOF
#include <libaio.h>
#include <stddef.h>
int main(void)
{
io_prep_preadv2(NULL, 0, NULL, 0, 0, 0);
io_prep_pwritev2(NULL, 0, NULL, 0, 0, 0);
return 0;
}
EOF
if compile_prog "" "" "libaio rw flags" ; then
libaio_rw_flags=yes
else
libaio_rw_flags=no
fi
fi
print_config "Linux AIO support" "$libaio"
print_config "Linux AIO support rw flags" "$libaio_rw_flags"
##########################################
# posix aio probe
if test "$posix_aio" != "yes" ; then
posix_aio="no"
fi
if test "$posix_aio_lrt" != "yes" ; then
posix_aio_lrt="no"
fi
cat > $TMPC <<EOF
#include <aio.h>
int main(void)
{
struct aiocb cb;
aio_read(&cb);
return 0;
}
EOF
if compile_prog "" "" "posixaio" ; then
posix_aio="yes"
elif compile_prog "" "-lrt" "posixaio -lrt"; then
posix_aio="yes"
posix_aio_lrt="yes"
LIBS="-lrt $LIBS"
fi
print_config "POSIX AIO support" "$posix_aio"
print_config "POSIX AIO support needs -lrt" "$posix_aio_lrt"
##########################################
# posix aio fsync probe
if test "$posix_aio_fsync" != "yes" ; then
posix_aio_fsync="no"
fi
if test "$posix_aio" = "yes" ; then
cat > $TMPC <<EOF
#include <fcntl.h>
#include <aio.h>
int main(void)
{
struct aiocb cb;
return aio_fsync(O_SYNC, &cb);
return 0;
}
EOF
if compile_prog "" "$LIBS" "posix_aio_fsync" ; then
posix_aio_fsync=yes
fi
fi
print_config "POSIX AIO fsync" "$posix_aio_fsync"
##########################################
# POSIX pshared attribute probe
if test "$posix_pshared" != "yes" ; then
posix_pshared="no"
fi
cat > $TMPC <<EOF
#include <unistd.h>
int main(void)
{
#if defined(_POSIX_THREAD_PROCESS_SHARED) && ((_POSIX_THREAD_PROCESS_SHARED + 0) > 0)
# if defined(__CYGWIN__)
# error "_POSIX_THREAD_PROCESS_SHARED is buggy on Cygwin"
# elif defined(__APPLE__)
# include <AvailabilityMacros.h>
# include <TargetConditionals.h>
# if TARGET_OS_MAC && MAC_OS_X_VERSION_MIN_REQUIRED < 1070
# error "_POSIX_THREAD_PROCESS_SHARED is buggy/unsupported prior to OSX 10.7"
# endif
# endif
#else
# error "_POSIX_THREAD_PROCESS_SHARED is unsupported"
#endif
return 0;
}
EOF
if compile_prog "" "$LIBS" "posix_pshared" ; then
posix_pshared=yes
fi
print_config "POSIX pshared support" "$posix_pshared"
##########################################
# POSIX pthread_condattr_setclock() probe
if test "$pthread_condattr_setclock" != "yes" ; then
pthread_condattr_setclock="no"
fi
cat > $TMPC <<EOF
#include <pthread.h>
int main(void)
{
pthread_condattr_t condattr;
pthread_condattr_setclock(&condattr, CLOCK_MONOTONIC);
return 0;
}
EOF
if compile_prog "" "$LIBS" "pthread_condattr_setclock" ; then
pthread_condattr_setclock=yes
elif compile_prog "" "$LIBS -lpthread" "pthread_condattr_setclock" ; then
pthread_condattr_setclock=yes
LIBS="$LIBS -lpthread"
fi
print_config "pthread_condattr_setclock()" "$pthread_condattr_setclock"
##########################################
# pthread_sigmask() probe
if test "$pthread_sigmask" != "yes" ; then
pthread_sigmask="no"
fi
cat > $TMPC <<EOF
#include <stddef.h> /* NULL */
#include <signal.h> /* pthread_sigmask() */
int main(void)
{
return pthread_sigmask(0, NULL, NULL);
}
EOF
if compile_prog "" "$LIBS" "pthread_sigmask" ; then
pthread_sigmask=yes
elif compile_prog "" "$LIBS -lpthread" "pthread_sigmask" ; then
pthread_sigmask=yes
LIBS="$LIBS -lpthread"
fi
print_config "pthread_sigmask()" "$pthread_sigmask"
##########################################
# solaris aio probe
if test "$solaris_aio" != "yes" ; then
solaris_aio="no"
fi
cat > $TMPC <<EOF
#include <sys/types.h>
#include <sys/asynch.h>
#include <unistd.h>
int main(void)
{
aio_result_t res;
return aioread(0, NULL, 0, 0, SEEK_SET, &res);
return 0;
}
EOF
if compile_prog "" "-laio" "solarisaio" ; then
solaris_aio=yes
LIBS="-laio $LIBS"
fi
print_config "Solaris AIO support" "$solaris_aio"
##########################################
# __sync_fetch_and_add test
if test "$sfaa" != "yes" ; then
sfaa="no"
fi
cat > $TMPC << EOF
#include <inttypes.h>
static int sfaa(uint64_t *ptr)
{
return __sync_fetch_and_add(ptr, 0);
}
int main(int argc, char **argv)
{
uint64_t val = 42;
sfaa(&val);
return val;
}
EOF
if compile_prog "" "" "__sync_fetch_and_add()" ; then
sfaa="yes"
fi
print_config "__sync_fetch_and_add" "$sfaa"
##########################################
# __sync_synchronize() test
if test "$sync_sync" != "yes" ; then
sync_sync="no"
fi
cat > $TMPC << EOF
#include <inttypes.h>
int main(int argc, char **argv)
{
__sync_synchronize();
return 0;
}
EOF
if compile_prog "" "" "__sync_synchronize()" ; then
sync_sync="yes"
fi
print_config "__sync_synchronize" "$sync_sync"
##########################################
# __sync_val_compare_and_swap() test
if test "$cmp_swap" != "yes" ; then
cmp_swap="no"
fi
cat > $TMPC << EOF
#include <inttypes.h>
int main(int argc, char **argv)
{
int x = 0;
return __sync_val_compare_and_swap(&x, 1, 2);
}
EOF
if compile_prog "" "" "__sync_val_compare_and_swap()" ; then
cmp_swap="yes"
fi
print_config "__sync_val_compare_and_swap" "$cmp_swap"
##########################################
# libverbs probe
if test "$libverbs" != "yes" ; then
libverbs="no"
fi
cat > $TMPC << EOF
#include <infiniband/verbs.h>
int main(int argc, char **argv)
{
struct ibv_pd *pd = ibv_alloc_pd(NULL);
return pd != NULL;
}
EOF
if test "$disable_rdma" != "yes" && compile_prog "" "-libverbs" "libverbs" ; then
libverbs="yes"
fi
print_config "libverbs" "$libverbs"
##########################################
# rdmacm probe
if test "$rdmacm" != "yes" ; then
rdmacm="no"
fi
cat > $TMPC << EOF
#include <stdio.h>
#include <rdma/rdma_cma.h>
int main(int argc, char **argv)
{
rdma_destroy_qp(NULL);
return 0;
}
EOF
if test "$disable_rdma" != "yes" && compile_prog "" "-lrdmacm" "rdma"; then
rdmacm="yes"
fi
print_config "rdmacm" "$rdmacm"
##########################################
# asprintf() and vasprintf() probes
if test "$have_asprintf" != "yes" ; then
have_asprintf="no"
fi
cat > $TMPC << EOF
#include <stdio.h>
int main(int argc, char **argv)
{
char *buf;
return asprintf(&buf, "%s", "str") == 0;
}
EOF
if compile_prog "" "" "have_asprintf"; then
have_asprintf="yes"
fi
print_config "asprintf()" "$have_asprintf"
if test "$have_vasprintf" != "yes" ; then
have_vasprintf="no"
fi
cat > $TMPC << EOF
#include <stdio.h>
int main(int argc, char **argv)
{
va_list ap;
char *buf;
return vasprintf(&buf, "%s", ap) == 0;
}
EOF
if compile_prog "" "" "have_vasprintf"; then
have_vasprintf="yes"
fi
print_config "vasprintf()" "$have_vasprintf"
##########################################
# Linux fallocate probe
if test "$linux_fallocate" != "yes" ; then
linux_fallocate="no"
fi
cat > $TMPC << EOF
#include <stdio.h>
#include <fcntl.h>
#include <linux/falloc.h>
int main(int argc, char **argv)
{
int r = fallocate(0, FALLOC_FL_KEEP_SIZE, 0, 1024);
return r;
}
EOF
if compile_prog "" "" "linux_fallocate"; then
linux_fallocate="yes"
fi
print_config "Linux fallocate" "$linux_fallocate"
##########################################
# POSIX fadvise probe
if test "$posix_fadvise" != "yes" ; then
posix_fadvise="no"
fi
cat > $TMPC << EOF
#include <stdio.h>
#include <fcntl.h>
int main(int argc, char **argv)
{
int r = posix_fadvise(0, 0, 0, POSIX_FADV_NORMAL);
return r;
}
EOF
if compile_prog "" "" "posix_fadvise"; then
posix_fadvise="yes"
fi
print_config "POSIX fadvise" "$posix_fadvise"
##########################################
# POSIX fallocate probe
if test "$posix_fallocate" != "yes" ; then
posix_fallocate="no"
fi
cat > $TMPC << EOF
#include <stdio.h>
#include <fcntl.h>
int main(int argc, char **argv)
{
int r = posix_fallocate(0, 0, 1024);
return r;
}
EOF
if compile_prog "" "" "posix_fallocate"; then
posix_fallocate="yes"
fi
print_config "POSIX fallocate" "$posix_fallocate"
##########################################
# sched_set/getaffinity 2 or 3 argument test
if test "$linux_2arg_affinity" != "yes" ; then
linux_2arg_affinity="no"
fi
if test "$linux_3arg_affinity" != "yes" ; then
linux_3arg_affinity="no"
fi
cat > $TMPC << EOF
#include <sched.h>
int main(int argc, char **argv)
{
cpu_set_t mask;
return sched_setaffinity(0, sizeof(mask), &mask);
}
EOF
if compile_prog "" "" "sched_setaffinity(,,)"; then
linux_3arg_affinity="yes"
else
cat > $TMPC << EOF
#include <sched.h>
int main(int argc, char **argv)
{
cpu_set_t mask;
return sched_setaffinity(0, &mask);
}
EOF
if compile_prog "" "" "sched_setaffinity(,)"; then
linux_2arg_affinity="yes"
fi
fi
print_config "sched_setaffinity(3 arg)" "$linux_3arg_affinity"
print_config "sched_setaffinity(2 arg)" "$linux_2arg_affinity"
##########################################
# clock_gettime probe
if test "$clock_gettime" != "yes" ; then
clock_gettime="no"
fi
cat > $TMPC << EOF
#include <stdio.h>
#include <time.h>
int main(int argc, char **argv)
{
return clock_gettime(0, NULL);
}
EOF
if compile_prog "" "" "clock_gettime"; then
clock_gettime="yes"
elif compile_prog "" "-lrt" "clock_gettime"; then
clock_gettime="yes"
LIBS="-lrt $LIBS"
fi
print_config "clock_gettime" "$clock_gettime"
##########################################
# CLOCK_MONOTONIC probe
if test "$clock_monotonic" != "yes" ; then
clock_monotonic="no"
fi
if test "$clock_gettime" = "yes" ; then
cat > $TMPC << EOF
#include <stdio.h>
#include <time.h>
int main(int argc, char **argv)
{
return clock_gettime(CLOCK_MONOTONIC, NULL);
}
EOF
if compile_prog "" "$LIBS" "clock monotonic"; then
clock_monotonic="yes"
fi
fi
print_config "CLOCK_MONOTONIC" "$clock_monotonic"
##########################################
# clockid_t probe
if test "$clockid_t" != "yes" ; then
clockid_t="no"
fi
cat > $TMPC << EOF
#include <time.h>
#include <string.h>
int main(int argc, char **argv)
{
volatile clockid_t cid;
memset((void*)&cid, 0, sizeof(cid));
return 0;
}
EOF
if compile_prog "" "$LIBS" "clockid_t"; then
clockid_t="yes"
fi
print_config "clockid_t" "$clockid_t"
##########################################
# gettimeofday() probe
if test "$gettimeofday" != "yes" ; then
gettimeofday="no"
fi
cat > $TMPC << EOF
#include <sys/time.h>
#include <stdio.h>
int main(int argc, char **argv)
{
struct timeval tv;
return gettimeofday(&tv, NULL);
}
EOF
if compile_prog "" "" "gettimeofday"; then
gettimeofday="yes"
fi
print_config "gettimeofday" "$gettimeofday"
##########################################
# fdatasync() probe
if test "$fdatasync" != "yes" ; then
fdatasync="no"
fi
cat > $TMPC << EOF
#include <stdio.h>
#include <unistd.h>
int main(int argc, char **argv)
{
return fdatasync(0);
}
EOF
if compile_prog "" "" "fdatasync"; then
fdatasync="yes"
fi
print_config "fdatasync" "$fdatasync"
##########################################
# pipe() probe
if test "$pipe" != "yes" ; then
pipe="no"
fi
cat > $TMPC << EOF
#include <unistd.h>
int main(int argc, char **argv)
{
int fd[2];
return pipe(fd);
}
EOF
if compile_prog "" "" "pipe"; then
pipe="yes"
fi
print_config "pipe()" "$pipe"
##########################################
# pipe2() probe
if test "$pipe2" != "yes" ; then
pipe2="no"
fi
cat > $TMPC << EOF
#include <unistd.h>
int main(int argc, char **argv)
{
int fd[2];
return pipe2(fd, 0);
}
EOF
if compile_prog "" "" "pipe2"; then
pipe2="yes"
fi
print_config "pipe2()" "$pipe2"
##########################################
# pread() probe
if test "$pread" != "yes" ; then
pread="no"
fi
cat > $TMPC << EOF
#include <unistd.h>
int main(int argc, char **argv)
{
return pread(0, NULL, 0, 0);
}
EOF
if compile_prog "" "" "pread"; then
pread="yes"
fi
print_config "pread()" "$pread"
##########################################
# sync_file_range() probe
if test "$sync_file_range" != "yes" ; then
sync_file_range="no"
fi
cat > $TMPC << EOF
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <linux/fs.h>
int main(int argc, char **argv)
{
unsigned int flags = SYNC_FILE_RANGE_WAIT_BEFORE | SYNC_FILE_RANGE_WRITE |
SYNC_FILE_RANGE_WAIT_AFTER;
return sync_file_range(0, 0, 0, flags);
}
EOF
if compile_prog "" "" "sync_file_range"; then
sync_file_range="yes"
fi
print_config "sync_file_range" "$sync_file_range"
##########################################
# ext4 move extent probe
if test "$ext4_me" != "yes" ; then
ext4_me="no"
fi
cat > $TMPC << EOF
#include <fcntl.h>
#include <sys/ioctl.h>
int main(int argc, char **argv)
{
struct move_extent me;
return ioctl(0, EXT4_IOC_MOVE_EXT, &me);
}
EOF
if compile_prog "" "" "ext4 move extent" ; then
ext4_me="yes"
elif test $targetos = "Linux" ; then
# On Linux, just default to it on and let it error at runtime if we really
# don't have it. None of my updated systems have it defined, but it does
# work. Takes a while to bubble back.
ext4_me="yes"
fi
print_config "EXT4 move extent" "$ext4_me"
##########################################
# splice probe
if test "$linux_splice" != "yes" ; then
linux_splice="no"
fi
cat > $TMPC << EOF
#include <stdio.h>
#include <fcntl.h>
int main(int argc, char **argv)
{
return splice(0, NULL, 0, NULL, 0, SPLICE_F_NONBLOCK);
}
EOF
if compile_prog "" "" "linux splice"; then
linux_splice="yes"
fi
print_config "Linux splice(2)" "$linux_splice"
##########################################
# libnuma probe
if test "$libnuma" != "yes" ; then
libnuma="no"
fi
cat > $TMPC << EOF
#include <numa.h>
int main(int argc, char **argv)
{
return numa_available();
}
EOF
if test "$disable_numa" != "yes" && compile_prog "" "-lnuma" "libnuma"; then
libnuma="yes"
LIBS="-lnuma $LIBS"
fi
print_config "libnuma" "$libnuma"
##########################################
# libnuma 2.x version API, initialize with "no" only if $libnuma is set to "yes"
if test "$libnuma" = "yes" ; then
libnuma_v2="no"
cat > $TMPC << EOF
#include <numa.h>
int main(int argc, char **argv)
{
struct bitmask *mask = numa_parse_nodestring(NULL);
return mask->size == 0;
}
EOF
if compile_prog "" "" "libnuma api"; then
libnuma_v2="yes"
fi
print_config "libnuma v2" "$libnuma_v2"
fi
##########################################
# strsep() probe
if test "$strsep" != "yes" ; then
strsep="no"
fi
cat > $TMPC << EOF
#include <string.h>
int main(int argc, char **argv)
{
static char *string = "This is a string";
strsep(&string, "needle");
return 0;
}
EOF
if compile_prog "" "" "strsep"; then
strsep="yes"
fi
print_config "strsep" "$strsep"
##########################################
# strcasestr() probe
if test "$strcasestr" != "yes" ; then
strcasestr="no"
fi
cat > $TMPC << EOF
#include <string.h>
int main(int argc, char **argv)
{
return strcasestr(argv[0], argv[1]) != NULL;
}
EOF
if compile_prog "" "" "strcasestr"; then
strcasestr="yes"
fi
print_config "strcasestr" "$strcasestr"
##########################################
# strlcat() probe
if test "$strlcat" != "yes" ; then
strlcat="no"
fi
cat > $TMPC << EOF
#include <string.h>
int main(int argc, char **argv)
{
static char dst[64];
static char *string = "This is a string";
memset(dst, 0, sizeof(dst));
strlcat(dst, string, sizeof(dst));
return 0;
}
EOF
if compile_prog "" "" "strlcat"; then
strlcat="yes"
fi
print_config "strlcat" "$strlcat"
##########################################
# getopt_long_only() probe
if test "$getopt_long_only" != "yes" ; then
getopt_long_only="no"
fi
cat > $TMPC << EOF
#include <unistd.h>
#include <stdio.h>
#include <getopt.h>
int main(int argc, char **argv)
{
int c = getopt_long_only(argc, argv, "", NULL, NULL);
return c;
}
EOF
if compile_prog "" "" "getopt_long_only"; then
getopt_long_only="yes"
fi
print_config "getopt_long_only()" "$getopt_long_only"
##########################################
# inet_aton() probe
if test "$inet_aton" != "yes" ; then
inet_aton="no"
fi
cat > $TMPC << EOF
#ifdef _WIN32
#include <winsock2.h>
#else
#include <sys/socket.h>
#include <arpa/inet.h>
#endif
#include <stdio.h>
int main(int argc, char **argv)
{
struct in_addr in;
return inet_aton(NULL, &in);
}
EOF
if compile_prog "" "" "inet_aton"; then
inet_aton="yes"
fi
print_config "inet_aton" "$inet_aton"
##########################################
# socklen_t probe
if test "$socklen_t" != "yes" ; then
socklen_t="no"
fi
cat > $TMPC << EOF
#ifdef _WIN32
#include <winsock2.h>
#include <ws2tcpip.h>
#else
#include <sys/socket.h>
#endif
int main(int argc, char **argv)
{
socklen_t len = 0;
return len;
}
EOF
if compile_prog "" "" "socklen_t"; then
socklen_t="yes"
fi
print_config "socklen_t" "$socklen_t"
##########################################
# Whether or not __thread is supported for TLS
if test "$tls_thread" != "yes" ; then
tls_thread="no"
fi
cat > $TMPC << EOF
#include <stdio.h>
static __thread int ret;
int main(int argc, char **argv)
{
return ret;
}
EOF
if compile_prog "" "" "__thread"; then
tls_thread="yes"
fi
print_config "__thread" "$tls_thread"
##########################################
# Check if we have required gtk/glib support for gfio
if test "$gfio" != "yes" ; then
gfio="no"
fi
if test "$gfio_check" = "yes" ; then
cat > $TMPC << EOF
#include <glib.h>
#include <cairo.h>
#include <gtk/gtk.h>
int main(void)
{
gdk_threads_enter();
gdk_threads_leave();
return GTK_CHECK_VERSION(2, 18, 0) ? 0 : 1; /* 0 on success */
}
EOF
GTK_CFLAGS=$(${cross_prefix}pkg-config --cflags gtk+-2.0 gthread-2.0)
ORG_LDFLAGS=$LDFLAGS
LDFLAGS=$(echo $LDFLAGS | sed s/"-static"//g)
if test "$?" != "0" ; then
echo "configure: gtk and gthread not found"
exit 1
fi
GTK_LIBS=$(${cross_prefix}pkg-config --libs gtk+-2.0 gthread-2.0)
if test "$?" != "0" ; then
echo "configure: gtk and gthread not found"
exit 1
fi
gfio="yes"
if check_min_lib_version gtk+-2.0 2.18.0 "gfio"; then
if compile_prog "$GTK_CFLAGS" "$GTK_LIBS" "gfio" ; then
GFIO_LIBS="$LIBS $GTK_LIBS"
CFLAGS="$CFLAGS $GTK_CFLAGS"
else
echo "Please install gtk and gdk libraries"
gfio="no"
fi
else
gfio="no"
fi
LDFLAGS=$ORG_LDFLAGS
fi
if test "$gfio_check" = "yes" ; then
print_config "gtk 2.18 or higher" "$gfio"
fi
##########################################
# Check whether we have getrusage(RUSAGE_THREAD)
if test "$rusage_thread" != "yes" ; then
rusage_thread="no"
fi
cat > $TMPC << EOF
#include <sys/time.h>
#include <sys/resource.h>
int main(int argc, char **argv)
{
struct rusage ru;
getrusage(RUSAGE_THREAD, &ru);
return 0;
}
EOF
if compile_prog "" "" "RUSAGE_THREAD"; then
rusage_thread="yes"
fi
print_config "RUSAGE_THREAD" "$rusage_thread"
##########################################
# Check whether we have SCHED_IDLE
if test "$sched_idle" != "yes" ; then
sched_idle="no"
fi
cat > $TMPC << EOF
#include <sched.h>
int main(int argc, char **argv)
{
struct sched_param p;
return sched_setscheduler(0, SCHED_IDLE, &p);
}
EOF
if compile_prog "" "" "SCHED_IDLE"; then
sched_idle="yes"
fi
print_config "SCHED_IDLE" "$sched_idle"
##########################################
# Check whether we have TCP_NODELAY
if test "$tcp_nodelay" != "yes" ; then
tcp_nodelay="no"
fi
cat > $TMPC << EOF
#ifdef _WIN32
#include <winsock2.h>
#else
#include <stdio.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/tcp.h>
#endif
int main(int argc, char **argv)
{
return getsockopt(0, 0, TCP_NODELAY, NULL, NULL);
}
EOF
if compile_prog "" "" "TCP_NODELAY"; then
tcp_nodelay="yes"
elif compile_prog "" "-lws2_32" "TCP_NODELAY"; then
tcp_nodelay="yes"
LIBS="$LIBS -lws2_32"
fi
print_config "TCP_NODELAY" "$tcp_nodelay"
##########################################
# Check whether we have SO_SNDBUF
if test "$window_size" != "yes" ; then
window_size="no"
fi
cat > $TMPC << EOF
#ifdef _WIN32
#include <winsock2.h>
#else
#include <stdio.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/tcp.h>
#endif
int main(int argc, char **argv)
{
setsockopt(0, SOL_SOCKET, SO_SNDBUF, NULL, 0);
setsockopt(0, SOL_SOCKET, SO_RCVBUF, NULL, 0);
}
EOF
if compile_prog "" "" "SO_SNDBUF"; then
window_size="yes"
elif compile_prog "" "-lws2_32" "SO_SNDBUF"; then
window_size="yes"
LIBS="$LIBS -lws2_32"
fi
print_config "Net engine window_size" "$window_size"
##########################################
# Check whether we have TCP_MAXSEG
if test "$mss" != "yes" ; then
mss="no"
fi
cat > $TMPC << EOF
#ifdef _WIN32
#include <winsock2.h>
#else
#include <stdio.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/tcp.h>
#include <arpa/inet.h>
#include <netinet/in.h>
#endif
int main(int argc, char **argv)
{
return setsockopt(0, IPPROTO_TCP, TCP_MAXSEG, NULL, 0);
}
EOF
if compile_prog "" "" "TCP_MAXSEG"; then
mss="yes"
elif compile_prog "" "-lws2_32" "TCP_MAXSEG"; then
mss="yes"
LIBS="$LIBS -lws2_32"
fi
print_config "TCP_MAXSEG" "$mss"
##########################################
# Check whether we have RLIMIT_MEMLOCK
if test "$rlimit_memlock" != "yes" ; then
rlimit_memlock="no"
fi
cat > $TMPC << EOF
#include <sys/time.h>
#include <sys/resource.h>
int main(int argc, char **argv)
{
struct rlimit rl;
return getrlimit(RLIMIT_MEMLOCK, &rl);
}
EOF
if compile_prog "" "" "RLIMIT_MEMLOCK"; then
rlimit_memlock="yes"
fi
print_config "RLIMIT_MEMLOCK" "$rlimit_memlock"
##########################################
# Check whether we have pwritev/preadv
if test "$pwritev" != "yes" ; then
pwritev="no"
fi
cat > $TMPC << EOF
#include <stdio.h>
#include <sys/uio.h>
int main(int argc, char **argv)
{
return pwritev(0, NULL, 1, 0) + preadv(0, NULL, 1, 0);
}
EOF
if compile_prog "" "" "pwritev"; then
pwritev="yes"
fi
print_config "pwritev/preadv" "$pwritev"
##########################################
# Check whether we have pwritev2/preadv2
if test "$pwritev2" != "yes" ; then
pwritev2="no"
fi
cat > $TMPC << EOF
#include <stdio.h>
#include <sys/uio.h>
int main(int argc, char **argv)
{
return pwritev2(0, NULL, 1, 0, 0) + preadv2(0, NULL, 1, 0, 0);
}
EOF
if compile_prog "" "" "pwritev2"; then
pwritev2="yes"
fi
print_config "pwritev2/preadv2" "$pwritev2"
##########################################
# Check whether we have the required functions for ipv6
if test "$ipv6" != "yes" ; then
ipv6="no"
fi
cat > $TMPC << EOF
#ifdef _WIN32
#include <winsock2.h>
#include <ws2tcpip.h>
#else
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netdb.h>
#endif
#include <stdio.h>
int main(int argc, char **argv)
{
struct addrinfo hints;
struct in6_addr addr;
int ret;
ret = getaddrinfo(NULL, NULL, &hints, NULL);
freeaddrinfo(NULL);
printf("%s\n", gai_strerror(ret));
addr = in6addr_any;
return 0;
}
EOF
if compile_prog "" "" "ipv6"; then
ipv6="yes"
fi
print_config "IPv6 helpers" "$ipv6"
##########################################
# check for http
if test "$http" != "yes" ; then
http="no"
fi
# check for openssl >= 1.1.0, which uses an opaque HMAC_CTX pointer
cat > $TMPC << EOF
#include <curl/curl.h>
#include <openssl/hmac.h>
int main(int argc, char **argv)
{
CURL *curl;
HMAC_CTX *ctx;
curl = curl_easy_init();
curl_easy_cleanup(curl);
ctx = HMAC_CTX_new();
HMAC_CTX_reset(ctx);
HMAC_CTX_free(ctx);
return 0;
}
EOF
# openssl < 1.1.0 uses the HMAC_CTX type directly
cat > $TMPC2 << EOF
#include <curl/curl.h>
#include <openssl/hmac.h>
int main(int argc, char **argv)
{
CURL *curl;
HMAC_CTX ctx;
curl = curl_easy_init();
curl_easy_cleanup(curl);
HMAC_CTX_init(&ctx);
HMAC_CTX_cleanup(&ctx);
return 0;
}
EOF
if test "$disable_http" != "yes"; then
HTTP_LIBS="-lcurl -lssl -lcrypto"
if compile_prog "" "$HTTP_LIBS" "curl-new-ssl"; then
output_sym "CONFIG_HAVE_OPAQUE_HMAC_CTX"
http="yes"
elif mv $TMPC2 $TMPC && compile_prog "" "$HTTP_LIBS" "curl-old-ssl"; then
http="yes"
fi
fi
print_config "http engine" "$http"
##########################################
# check for rados
if test "$rados" != "yes" ; then
rados="no"
fi
cat > $TMPC << EOF
#include <rados/librados.h>
int main(int argc, char **argv)
{
rados_t cluster;
rados_ioctx_t io_ctx;
const char cluster_name[] = "ceph";
const char user_name[] = "client.admin";
const char pool[] = "rados";
/* The rados_create2 signature required was only introduced in ceph 0.65 */
rados_create2(&cluster, cluster_name, user_name, 0);
rados_ioctx_create(cluster, pool, &io_ctx);
return 0;
}
EOF
if test "$disable_rados" != "yes" && compile_prog "" "-lrados" "rados"; then
rados="yes"
fi
print_config "Rados engine" "$rados"
##########################################
# check for rbd
if test "$rbd" != "yes" ; then
rbd="no"
fi
cat > $TMPC << EOF
#include <rbd/librbd.h>
int main(int argc, char **argv)
{
rados_t cluster;
rados_ioctx_t io_ctx;
const char cluster_name[] = "ceph";
const char user_name[] = "client.admin";
const char pool[] = "rbd";
int major, minor, extra;
rbd_version(&major, &minor, &extra);
/* The rados_create2 signature required was only introduced in ceph 0.65 */
rados_create2(&cluster, cluster_name, user_name, 0);
rados_ioctx_create(cluster, pool, &io_ctx);
return 0;
}
EOF
if test "$disable_rbd" != "yes" && compile_prog "" "-lrbd -lrados" "rbd"; then
rbd="yes"
fi
print_config "Rados Block Device engine" "$rbd"
##########################################
# check for rbd_poll
if test "$rbd_poll" != "yes" ; then
rbd_poll="no"
fi
if test "$rbd" = "yes"; then
cat > $TMPC << EOF
#include <rbd/librbd.h>
#include <sys/eventfd.h>
int main(int argc, char **argv)
{
rbd_image_t image;
rbd_completion_t comp;
int fd = eventfd(0, EFD_NONBLOCK);
rbd_set_image_notification(image, fd, EVENT_TYPE_EVENTFD);
rbd_poll_io_events(image, comp, 1);
return 0;
}
EOF
if compile_prog "" "-lrbd -lrados" "rbd"; then
rbd_poll="yes"
fi
print_config "rbd_poll" "$rbd_poll"
fi
##########################################
# check for rbd_invalidate_cache()
if test "$rbd_inval" != "yes" ; then
rbd_inval="no"
fi
if test "$rbd" = "yes"; then
cat > $TMPC << EOF
#include <rbd/librbd.h>
int main(int argc, char **argv)
{
rbd_image_t image;
return rbd_invalidate_cache(image);
}
EOF
if compile_prog "" "-lrbd -lrados" "rbd"; then
rbd_inval="yes"
fi
print_config "rbd_invalidate_cache" "$rbd_inval"
fi
##########################################
# Check whether we have setvbuf
if test "$setvbuf" != "yes" ; then
setvbuf="no"
fi
cat > $TMPC << EOF
#include <stdio.h>
int main(int argc, char **argv)
{
FILE *f = NULL;
char buf[80];
setvbuf(f, buf, _IOFBF, sizeof(buf));
return 0;
}
EOF
if compile_prog "" "" "setvbuf"; then
setvbuf="yes"
fi
print_config "setvbuf" "$setvbuf"
##########################################
# check for gfapi
if test "$gfapi" != "yes" ; then
gfapi="no"
fi
cat > $TMPC << EOF
#include <glusterfs/api/glfs.h>
int main(int argc, char **argv)
{
glfs_t *g = glfs_new("foo");
return 0;
}
EOF
if test "$disable_gfapi" != "yes" && compile_prog "" "-lgfapi -lglusterfs" "gfapi"; then
gfapi="yes"
fi
print_config "Gluster API engine" "$gfapi"
##########################################
# check for gfapi fadvise support, initialize with "no" only if $gfapi is set to "yes"
if test "$gfapi" = "yes" ; then
gf_fadvise="no"
cat > $TMPC << EOF
#include <glusterfs/api/glfs.h>
int main(int argc, char **argv)
{
struct glfs_fd *fd;
int ret = glfs_fadvise(fd, 0, 0, 1);
return 0;
}
EOF
if compile_prog "" "-lgfapi -lglusterfs" "gfapi"; then
gf_fadvise="yes"
fi
print_config "Gluster API use fadvise" "$gf_fadvise"
fi
##########################################
# check for newer gfapi
if test "$gfapi" = "yes" ; then
gf_new="no"
cat > $TMPC << EOF
#include <glusterfs/api/glfs.h>
int main(int argc, char **argv)
{
return glfs_fsync(NULL, NULL, NULL) && glfs_ftruncate(NULL, 0, NULL, NULL);
}
EOF
if compile_prog "" "-lgfapi -lglusterfs" "gf new api"; then
gf_new="yes"
fi
print_config "Gluster new API" "$gf_new"
fi
##########################################
# check for gfapi trim support
if test "$gf_trim" != "yes" ; then
gf_trim="no"
fi
if test "$gfapi" = "yes" ; then
cat > $TMPC << EOF
#include <glusterfs/api/glfs.h>
int main(int argc, char **argv)
{
return glfs_discard_async(NULL, 0, 0);
}
EOF
if compile_prog "" "-lgfapi -lglusterfs" "gf trim"; then
gf_trim="yes"
fi
print_config "Gluster API trim support" "$gf_trim"
fi
##########################################
# Check if we support stckf on s390
if test "$s390_z196_facilities" != "yes" ; then
s390_z196_facilities="no"
fi
cat > $TMPC << EOF
#define STFLE_BITS_Z196 45 /* various z196 facilities ... */
int main(int argc, char **argv)
{
/* We want just 1 double word to be returned. */
register unsigned long reg0 asm("0") = 0;
unsigned long stfle_bits;
asm volatile(".machine push" "\n\t"
".machine \"z9-109\"" "\n\t"
"stfle %0" "\n\t"
".machine pop" "\n"
: "=QS" (stfle_bits), "+d" (reg0)
: : "cc");
if ((stfle_bits & (1UL << (63 - STFLE_BITS_Z196))) != 0)
return 0;
else
return -1;
}
EOF
if compile_prog "" "" "s390_z196_facilities"; then
$TMPE
if [ $? -eq 0 ]; then
s390_z196_facilities="yes"
fi
fi
print_config "s390_z196_facilities" "$s390_z196_facilities"
##########################################
# Check if we have required environment variables configured for libhdfs
if test "$libhdfs" = "yes" ; then
hdfs_conf_error=0
if test "$JAVA_HOME" = "" ; then
echo "configure: JAVA_HOME should be defined to jdk/jvm path"
hdfs_conf_error=1
fi
if test "$FIO_LIBHDFS_INCLUDE" = "" ; then
echo "configure: FIO_LIBHDFS_INCLUDE should be defined to libhdfs inlude path"
hdfs_conf_error=1
fi
if test "$FIO_LIBHDFS_LIB" = "" ; then
echo "configure: FIO_LIBHDFS_LIB should be defined to libhdfs library path"
hdfs_conf_error=1
fi
if test "$hdfs_conf_error" = "1" ; then
feature_not_found "libhdfs" ""
fi
FIO_HDFS_CPU=$cpu
if test "$FIO_HDFS_CPU" = "x86_64" ; then
FIO_HDFS_CPU="amd64"
fi
fi
print_config "HDFS engine" "$libhdfs"
##########################################
# Check whether we have MTD
if test "$mtd" != "yes" ; then
mtd="no"
fi
cat > $TMPC << EOF
#include <string.h>
#include <mtd/mtd-user.h>
#include <sys/ioctl.h>
int main(int argc, char **argv)
{
struct mtd_write_req ops;
struct mtd_info_user info;
memset(&ops, 0, sizeof(ops));
info.type = MTD_MLCNANDFLASH;
return ioctl(0, MEMGETINFO, &info);
}
EOF
if compile_prog "" "" "mtd"; then
mtd="yes"
fi
print_config "MTD" "$mtd"
##########################################
# Check whether we have libpmem
if test "$libpmem" != "yes" ; then
libpmem="no"
fi
cat > $TMPC << EOF
#include <libpmem.h>
#include <stdlib.h>
int main(int argc, char **argv)
{
int rc;
rc = pmem_is_pmem(NULL, 0);
return 0;
}
EOF
if compile_prog "" "-lpmem" "libpmem"; then
libpmem="yes"
fi
print_config "libpmem" "$libpmem"
##########################################
# Check whether libpmem's version >= 1.5
if test "$libpmem1_5" != "yes" ; then
libpmem1_5="no"
fi
if test "$libpmem" = "yes"; then
cat > $TMPC << EOF
#include <libpmem.h>
#include <stdlib.h>
int main(int argc, char **argv)
{
pmem_memcpy(NULL, NULL, NULL, NULL);
return 0;
}
EOF
if compile_prog "" "-lpmem" "libpmem1_5"; then
libpmem1_5="yes"
fi
fi
print_config "libpmem1_5" "$libpmem1_5"
##########################################
# Check whether we have libpmemblk
# libpmem is a prerequisite
if test "$libpmemblk" != "yes" ; then
libpmemblk="no"
fi
if test "$libpmem" = "yes"; then
cat > $TMPC << EOF
#include <libpmemblk.h>
int main(int argc, char **argv)
{
PMEMblkpool *pbp;
pbp = pmemblk_open("", 0);
return 0;
}
EOF
if compile_prog "" "-lpmemblk" "libpmemblk"; then
libpmemblk="yes"
fi
fi
print_config "libpmemblk" "$libpmemblk"
# Choose libpmem-based ioengines
if test "$libpmem" = "yes" && test "$disable_pmem" = "no"; then
devdax="yes"
if test "$libpmem1_5" = "yes"; then
pmem="yes"
fi
if test "$libpmemblk" = "yes"; then
pmemblk="yes"
fi
fi
##########################################
# Report whether pmemblk engine is enabled
print_config "PMDK pmemblk engine" "$pmemblk"
##########################################
# Report whether dev-dax engine is enabled
print_config "PMDK dev-dax engine" "$devdax"
##########################################
# Report whether libpmem engine is enabled
print_config "PMDK libpmem engine" "$pmem"
##########################################
# Check whether we support DDN's IME
if test "$libime" != "yes" ; then
libime="no"
fi
cat > $TMPC << EOF
#include <ime_native.h>
int main(int argc, char **argv)
{
int rc;
ime_native_init();
rc = ime_native_finalize();
return 0;
}
EOF
if compile_prog "-I${ime_path}/include" "-L${ime_path}/lib -lim_client" "libime"; then
libime="yes"
CFLAGS="-I${ime_path}/include $CFLAGS"
LDFLAGS="-Wl,-rpath ${ime_path}/lib -L${ime_path}/lib $LDFLAGS"
LIBS="-lim_client $LIBS"
fi
print_config "DDN's Infinite Memory Engine" "$libime"
##########################################
# Check if we have libiscsi
if test "$libiscsi" != "no" ; then
if check_min_lib_version libiscsi 1.9.0; then
libiscsi="yes"
libiscsi_cflags=$(pkg-config --cflags libiscsi)
libiscsi_libs=$(pkg-config --libs libiscsi)
else
libiscsi="no"
fi
fi
print_config "iscsi engine" "$libiscsi"
##########################################
# Check if we have libnbd (for NBD support)
if test "$libnbd" != "no" ; then
if check_min_lib_version libnbd 0.9.8; then
libnbd="yes"
libnbd_cflags=$(pkg-config --cflags libnbd)
libnbd_libs=$(pkg-config --libs libnbd)
else
libnbd="no"
fi
fi
print_config "NBD engine" "$libnbd"
##########################################
# Check if we have lex/yacc available
yacc="no"
yacc_is_bison="no"
lex="no"
arith="no"
if test "$disable_lex" = "no" || test -z "$disable_lex" ; then
if test "$targetos" != "SunOS" ; then
if has lex; then
lex="yes"
fi
if has bison; then
yacc="yes"
yacc_is_bison="yes"
elif has yacc; then
yacc="yes"
fi
if test "$yacc" = "yes" && test "$lex" = "yes" ; then
arith="yes"
fi
if test "$arith" = "yes" ; then
cat > $TMPC << EOF
extern int yywrap(void);
int main(int argc, char **argv)
{
yywrap();
return 0;
}
EOF
if compile_prog "" "-lfl" "flex"; then
LIBS="-lfl $LIBS"
elif compile_prog "" "-ll" "lex"; then
LIBS="-ll $LIBS"
else
arith="no"
fi
fi
fi
fi
# Check if lex fails using -o
if test "$arith" = "yes" ; then
if test "$force_no_lex_o" = "yes" ; then
lex_use_o="no"
else
if lex -o lex.yy.c exp/expression-parser.l 2> /dev/null; then
lex_use_o="yes"
else
lex_use_o="no"
fi
fi
fi
print_config "lex/yacc for arithmetic" "$arith"
##########################################
# Check whether we have setmntent/getmntent
if test "$getmntent" != "yes" ; then
getmntent="no"
fi
cat > $TMPC << EOF
#include <stdio.h>
#include <mntent.h>
int main(int argc, char **argv)
{
FILE *mtab = setmntent(NULL, "r");
struct mntent *mnt = getmntent(mtab);
endmntent(mtab);
return 0;
}
EOF
if compile_prog "" "" "getmntent"; then
getmntent="yes"
fi
print_config "getmntent" "$getmntent"
##########################################
# Check whether we have getmntinfo
# These are originally added for BSDs, but may also work
# on other operating systems with getmntinfo(3).
# getmntinfo(3) for FreeBSD/DragonFlyBSD/OpenBSD.
# Note that NetBSD needs -Werror to catch warning as error.
if test "$getmntinfo" != "yes" ; then
getmntinfo="no"
fi
cat > $TMPC << EOF
#include <stdio.h>
#include <sys/param.h>
#include <sys/mount.h>
int main(int argc, char **argv)
{
struct statfs *st;
return getmntinfo(&st, MNT_NOWAIT);
}
EOF
if compile_prog "-Werror" "" "getmntinfo"; then
getmntinfo="yes"
fi
print_config "getmntinfo" "$getmntinfo"
# getmntinfo(3) for NetBSD.
if test "$getmntinfo_statvfs" != "yes" ; then
getmntinfo_statvfs="no"
fi
cat > $TMPC << EOF
#include <stdio.h>
#include <sys/statvfs.h>
int main(int argc, char **argv)
{
struct statvfs *st;
return getmntinfo(&st, MNT_NOWAIT);
}
EOF
# Skip the test if the one with statfs arg is detected.
if test "$getmntinfo" != "yes" && compile_prog "-Werror" "" "getmntinfo_statvfs"; then
getmntinfo_statvfs="yes"
print_config "getmntinfo_statvfs" "$getmntinfo_statvfs"
fi
##########################################
# Check whether we have _Static_assert
if test "$static_assert" != "yes" ; then
static_assert="no"
fi
cat > $TMPC << EOF
#include <assert.h>
#include <stdlib.h>
#include <stddef.h>
struct foo {
int a, b;
};
int main(int argc, char **argv)
{
_Static_assert(offsetof(struct foo, a) == 0 , "Check");
return 0 ;
}
EOF
if compile_prog "" "" "static_assert"; then
static_assert="yes"
fi
print_config "Static Assert" "$static_assert"
##########################################
# Check whether we have bool / stdbool.h
if test "$have_bool" != "yes" ; then
have_bool="no"
fi
cat > $TMPC << EOF
#include <stdbool.h>
int main(int argc, char **argv)
{
bool var = true;
return var != false;
}
EOF
if compile_prog "" "" "bool"; then
have_bool="yes"
fi
print_config "bool" "$have_bool"
##########################################
# Check whether we have strndup()
strndup="no"
cat > $TMPC << EOF
#include <string.h>
#include <stdlib.h>
int main(int argc, char **argv)
{
char *res = strndup("test string", 8);
free(res);
return 0;
}
EOF
if compile_prog "" "" "strndup"; then
strndup="yes"
fi
print_config "strndup" "$strndup"
##########################################
# <valgrind/drd.h> probe
# Note: presence of <valgrind/drd.h> implies that <valgrind/valgrind.h> is
# also available but not the other way around.
if test "$valgrind_dev" != "yes" ; then
valgrind_dev="no"
fi
cat > $TMPC << EOF
#include <valgrind/drd.h>
int main(int argc, char **argv)
{
return 0;
}
EOF
if compile_prog "" "" "valgrind_dev"; then
valgrind_dev="yes"
fi
print_config "Valgrind headers" "$valgrind_dev"
if test "$targetos" = "Linux" ; then
##########################################
# <linux/blkzoned.h> probe
if test "$linux_blkzoned" != "yes" ; then
linux_blkzoned="no"
fi
cat > $TMPC << EOF
#include <linux/blkzoned.h>
int main(int argc, char **argv)
{
return 0;
}
EOF
if compile_prog "" "" "linux_blkzoned"; then
linux_blkzoned="yes"
fi
print_config "Zoned block device support" "$linux_blkzoned"
##########################################
# Check BLK_ZONE_REP_CAPACITY
cat > $TMPC << EOF
#include <linux/blkzoned.h>
int main(void)
{
return BLK_ZONE_REP_CAPACITY;
}
EOF
if compile_prog "" "" "blkzoned report capacity"; then
output_sym "CONFIG_HAVE_REP_CAPACITY"
rep_capacity="yes"
else
rep_capacity="no"
fi
print_config "Zoned block device capacity" "$rep_capacity"
fi
##########################################
# libzbc probe
cat > $TMPC << EOF
#include <libzbc/zbc.h>
int main(int argc, char **argv)
{
struct zbc_device *dev = NULL;
return zbc_open("foo=bar", O_RDONLY, &dev);
}
EOF
if test "$libzbc" != "no" ; then
if compile_prog "" "-lzbc" "libzbc"; then
libzbc="yes"
if ! check_min_lib_version libzbc 5; then
libzbc="no"
fi
else
if test "$libzbc" = "yes" ; then
feature_not_found "libzbc" "libzbc or libzbc/zbc.h"
fi
libzbc="no"
fi
fi
print_config "libzbc engine" "$libzbc"
##########################################
# check march=armv8-a+crc+crypto
if test "$march_armv8_a_crc_crypto" != "yes" ; then
march_armv8_a_crc_crypto="no"
fi
if test "$cpu" = "arm64" ; then
cat > $TMPC <<EOF
#include <arm_acle.h>
#include <arm_neon.h>
#include <sys/auxv.h>
int main(void)
{
/* Can we also do a runtime probe? */
#if __linux__
return getauxval(AT_HWCAP);
#else
# error "Don't know how to do runtime probe for ARM CRC32c"
#endif
}
EOF
if compile_prog "-march=armv8-a+crc+crypto" "" "ARM CRC32c"; then
march_armv8_a_crc_crypto="yes"
CFLAGS="$CFLAGS -march=armv8-a+crc+crypto"
march_set="yes"
fi
fi
print_config "march_armv8_a_crc_crypto" "$march_armv8_a_crc_crypto"
##########################################
# cuda probe
if test "$cuda" != "no" ; then
cat > $TMPC << EOF
#include <cuda.h>
int main(int argc, char **argv)
{
return cuInit(0);
}
EOF
if compile_prog "" "-lcuda" "cuda"; then
cuda="yes"
LIBS="-lcuda $LIBS"
else
if test "$cuda" = "yes" ; then
feature_not_found "cuda" ""
fi
cuda="no"
fi
fi
print_config "cuda" "$cuda"
##########################################
# libcufile probe
if test "$libcufile" != "no" ; then
cat > $TMPC << EOF
#include <cufile.h>
int main(int argc, char* argv[]) {
cuFileDriverOpen();
return 0;
}
EOF
if compile_prog "" "-lcuda -lcudart -lcufile" "libcufile"; then
libcufile="yes"
LIBS="-lcuda -lcudart -lcufile $LIBS"
else
if test "$libcufile" = "yes" ; then
feature_not_found "libcufile" ""
fi
libcufile="no"
fi
fi
print_config "libcufile" "$libcufile"
##########################################
# check for cc -march=native
build_native="no"
cat > $TMPC << EOF
int main(int argc, char **argv)
{
return 0;
}
EOF
if test "$disable_native" = "no" && test "$disable_opt" != "yes" && \
compile_prog "-march=native" "" "march=native"; then
build_native="yes"
fi
print_config "Build march=native" "$build_native"
##########################################
# check for -lcunit
if test "$cunit" != "yes" ; then
cunit="no"
fi
cat > $TMPC << EOF
#include <CUnit/CUnit.h>
#include <CUnit/Basic.h>
int main(void)
{
if (CU_initialize_registry() != CUE_SUCCESS)
return CU_get_error();
CU_basic_set_mode(CU_BRM_VERBOSE);
CU_basic_run_tests();
CU_cleanup_registry();
return CU_get_error();
}
EOF
if compile_prog "" "-lcunit" "CUnit"; then
cunit="yes"
fi
print_config "CUnit" "$cunit"
##########################################
# check for __kernel_rwf_t
__kernel_rwf_t="no"
cat > $TMPC << EOF
#include <linux/fs.h>
int main(int argc, char **argv)
{
__kernel_rwf_t x;
x = 0;
return x;
}
EOF
if compile_prog "" "" "__kernel_rwf_t"; then
__kernel_rwf_t="yes"
fi
print_config "__kernel_rwf_t" "$__kernel_rwf_t"
##########################################
# check if gcc has -Wimplicit-fallthrough=2
fallthrough="no"
cat > $TMPC << EOF
int main(int argc, char **argv)
{
return 0;
}
EOF
if compile_prog "-Wimplicit-fallthrough=2" "" "-Wimplicit-fallthrough=2"; then
fallthrough="yes"
fi
print_config "-Wimplicit-fallthrough=2" "$fallthrough"
##########################################
# check for MADV_HUGEPAGE support
if test "$thp" != "yes" ; then
thp="no"
fi
if test "$esx" != "yes" ; then
cat > $TMPC <<EOF
#include <sys/mman.h>
int main(void)
{
return madvise(0, 0x1000, MADV_HUGEPAGE);
}
EOF
if compile_prog "" "" "thp" ; then
thp=yes
else
if test "$thp" = "yes" ; then
feature_not_found "Transparent Huge Page" ""
fi
thp=no
fi
fi
print_config "MADV_HUGEPAGE" "$thp"
##########################################
# check for gettid()
gettid="no"
cat > $TMPC << EOF
#include <unistd.h>
int main(int argc, char **argv)
{
return gettid();
}
EOF
if compile_prog "" "" "gettid"; then
gettid="yes"
fi
print_config "gettid" "$gettid"
##########################################
# check for statx(2) support by libc
statx="no"
cat > $TMPC << EOF
#include <unistd.h>
#include <sys/stat.h>
int main(int argc, char **argv)
{
struct statx st;
return statx(-1, *argv, 0, 0, &st);
}
EOF
if compile_prog "" "" "statx"; then
statx="yes"
fi
print_config "statx(2)/libc" "$statx"
##########################################
# check for statx(2) support by kernel
statx_syscall="no"
cat > $TMPC << EOF
#include <unistd.h>
#include <linux/stat.h>
#include <sys/stat.h>
#include <sys/syscall.h>
static int _statx(int dfd, const char *pathname, int flags, unsigned int mask,
struct statx *buffer)
{
return syscall(__NR_statx, dfd, pathname, flags, mask, buffer);
}
int main(int argc, char **argv)
{
struct statx st;
return _statx(-1, *argv, 0, 0, &st);
}
EOF
if compile_prog "" "" "statx_syscall"; then
statx_syscall="yes"
fi
print_config "statx(2)/syscall" "$statx_syscall"
##########################################
# check for Windows PDB generation support
if test "pdb" != "no" ; then
cat > $TMPC <<EOF
int main(void)
{
return 0;
}
EOF
if compile_prog "-g -gcodeview" "-fuse-ld=lld -Wl,-pdb,$TMPO" "pdb"; then
pdb=yes
else
if test "$pdb" = "yes"; then
feature_not_found "PDB" "clang and lld"
fi
pdb=no
fi
else
pdb=no
fi
print_config "Windows PDB generation" "$pdb"
##########################################
# check for timerfd support
timerfd_create="no"
if test "$esx" != "yes" ; then
cat > $TMPC << EOF
#include <sys/time.h>
#include <sys/timerfd.h>
int main(int argc, char **argv)
{
return timerfd_create(CLOCK_MONOTONIC, TFD_NONBLOCK);
}
EOF
if compile_prog "" "" "timerfd_create"; then
timerfd_create="yes"
fi
fi
print_config "timerfd_create" "$timerfd_create"
#############################################################################
if test "$wordsize" = "64" ; then
output_sym "CONFIG_64BIT"
elif test "$wordsize" = "32" ; then
output_sym "CONFIG_32BIT"
else
fatal "Unknown wordsize!"
fi
if test "$bigendian" = "yes" ; then
output_sym "CONFIG_BIG_ENDIAN"
else
output_sym "CONFIG_LITTLE_ENDIAN"
fi
if test "$zlib" = "yes" ; then
output_sym "CONFIG_ZLIB"
fi
if test "$libaio" = "yes" ; then
output_sym "CONFIG_LIBAIO"
if test "$libaio_rw_flags" = "yes" ; then
output_sym "CONFIG_LIBAIO_RW_FLAGS"
fi
fi
if test "$posix_aio" = "yes" ; then
output_sym "CONFIG_POSIXAIO"
fi
if test "$posix_aio_fsync" = "yes" ; then
output_sym "CONFIG_POSIXAIO_FSYNC"
fi
if test "$posix_pshared" = "yes" ; then
output_sym "CONFIG_PSHARED"
fi
if test "$pthread_condattr_setclock" = "yes" ; then
output_sym "CONFIG_PTHREAD_CONDATTR_SETCLOCK"
fi
if test "$pthread_sigmask" = "yes" ; then
output_sym "CONFIG_PTHREAD_SIGMASK"
fi
if test "$have_asprintf" = "yes" ; then
output_sym "CONFIG_HAVE_ASPRINTF"
fi
if test "$have_vasprintf" = "yes" ; then
output_sym "CONFIG_HAVE_VASPRINTF"
fi
if test "$linux_fallocate" = "yes" ; then
output_sym "CONFIG_LINUX_FALLOCATE"
fi
if test "$posix_fallocate" = "yes" ; then
output_sym "CONFIG_POSIX_FALLOCATE"
fi
if test "$fdatasync" = "yes" ; then
output_sym "CONFIG_FDATASYNC"
fi
if test "$pipe" = "yes" ; then
output_sym "CONFIG_PIPE"
fi
if test "$pipe2" = "yes" ; then
output_sym "CONFIG_PIPE2"
fi
if test "$pread" = "yes" ; then
output_sym "CONFIG_PREAD"
fi
if test "$sync_file_range" = "yes" ; then
output_sym "CONFIG_SYNC_FILE_RANGE"
fi
if test "$sfaa" = "yes" ; then
output_sym "CONFIG_SFAA"
fi
if test "$sync_sync" = "yes" ; then
output_sym "CONFIG_SYNC_SYNC"
fi
if test "$cmp_swap" = "yes" ; then
output_sym "CONFIG_CMP_SWAP"
fi
if test "$libverbs" = "yes" -a "$rdmacm" = "yes" ; then
output_sym "CONFIG_RDMA"
fi
if test "$clock_gettime" = "yes" ; then
output_sym "CONFIG_CLOCK_GETTIME"
fi
if test "$clock_monotonic" = "yes" ; then
output_sym "CONFIG_CLOCK_MONOTONIC"
fi
if test "$clock_monotonic_raw" = "yes" ; then
output_sym "CONFIG_CLOCK_MONOTONIC_RAW"
fi
if test "$clock_monotonic_precise" = "yes" ; then
output_sym "CONFIG_CLOCK_MONOTONIC_PRECISE"
fi
if test "$clockid_t" = "yes"; then
output_sym "CONFIG_CLOCKID_T"
fi
if test "$gettimeofday" = "yes" ; then
output_sym "CONFIG_GETTIMEOFDAY"
fi
if test "$posix_fadvise" = "yes" ; then
output_sym "CONFIG_POSIX_FADVISE"
fi
if test "$linux_3arg_affinity" = "yes" ; then
output_sym "CONFIG_3ARG_AFFINITY"
elif test "$linux_2arg_affinity" = "yes" ; then
output_sym "CONFIG_2ARG_AFFINITY"
fi
if test "$strsep" = "yes" ; then
output_sym "CONFIG_STRSEP"
fi
if test "$strcasestr" = "yes" ; then
output_sym "CONFIG_STRCASESTR"
fi
if test "$strlcat" = "yes" ; then
output_sym "CONFIG_STRLCAT"
fi
if test "$getopt_long_only" = "yes" ; then
output_sym "CONFIG_GETOPT_LONG_ONLY"
fi
if test "$inet_aton" = "yes" ; then
output_sym "CONFIG_INET_ATON"
fi
if test "$socklen_t" = "yes" ; then
output_sym "CONFIG_SOCKLEN_T"
fi
if test "$ext4_me" = "yes" ; then
output_sym "CONFIG_LINUX_EXT4_MOVE_EXTENT"
fi
if test "$linux_splice" = "yes" ; then
output_sym "CONFIG_LINUX_SPLICE"
fi
if test "$libnuma_v2" = "yes" ; then
output_sym "CONFIG_LIBNUMA"
fi
if test "$solaris_aio" = "yes" ; then
output_sym "CONFIG_SOLARISAIO"
fi
if test "$tls_thread" = "yes" ; then
output_sym "CONFIG_TLS_THREAD"
fi
if test "$rusage_thread" = "yes" ; then
output_sym "CONFIG_RUSAGE_THREAD"
fi
if test "$gfio" = "yes" ; then
output_sym "CONFIG_GFIO"
fi
if test "$esx" = "yes" ; then
output_sym "CONFIG_ESX"
output_sym "CONFIG_NO_SHM"
fi
if test "$sched_idle" = "yes" ; then
output_sym "CONFIG_SCHED_IDLE"
fi
if test "$tcp_nodelay" = "yes" ; then
output_sym "CONFIG_TCP_NODELAY"
fi
if test "$window_size" = "yes" ; then
output_sym "CONFIG_NET_WINDOWSIZE"
fi
if test "$mss" = "yes" ; then
output_sym "CONFIG_NET_MSS"
fi
if test "$rlimit_memlock" = "yes" ; then
output_sym "CONFIG_RLIMIT_MEMLOCK"
fi
if test "$pwritev" = "yes" ; then
output_sym "CONFIG_PWRITEV"
fi
if test "$pwritev2" = "yes" ; then
output_sym "CONFIG_PWRITEV2"
fi
if test "$ipv6" = "yes" ; then
output_sym "CONFIG_IPV6"
fi
if test "$http" = "yes" ; then
output_sym "CONFIG_HTTP"
fi
if test "$rados" = "yes" ; then
output_sym "CONFIG_RADOS"
fi
if test "$rbd" = "yes" ; then
output_sym "CONFIG_RBD"
fi
if test "$rbd_poll" = "yes" ; then
output_sym "CONFIG_RBD_POLL"
fi
if test "$rbd_inval" = "yes" ; then
output_sym "CONFIG_RBD_INVAL"
fi
if test "$setvbuf" = "yes" ; then
output_sym "CONFIG_SETVBUF"
fi
if test "$s390_z196_facilities" = "yes" ; then
output_sym "CONFIG_S390_Z196_FACILITIES"
CFLAGS="$CFLAGS -march=z9-109"
march_set="yes"
fi
if test "$gfapi" = "yes" ; then
output_sym "CONFIG_GFAPI"
fi
if test "$gf_fadvise" = "yes" ; then
output_sym "CONFIG_GF_FADVISE"
fi
if test "$gf_trim" = "yes" ; then
output_sym "CONFIG_GF_TRIM"
fi
if test "$gf_new" = "yes" ; then
output_sym "CONFIG_GF_NEW_API"
fi
if test "$libhdfs" = "yes" ; then
output_sym "CONFIG_LIBHDFS"
echo "FIO_HDFS_CPU=$FIO_HDFS_CPU" >> $config_host_mak
echo "JAVA_HOME=$JAVA_HOME" >> $config_host_mak
echo "FIO_LIBHDFS_INCLUDE=$FIO_LIBHDFS_INCLUDE" >> $config_host_mak
echo "FIO_LIBHDFS_LIB=$FIO_LIBHDFS_LIB" >> $config_host_mak
fi
if test "$mtd" = "yes" ; then
output_sym "CONFIG_MTD"
fi
if test "$pmemblk" = "yes" ; then
output_sym "CONFIG_PMEMBLK"
fi
if test "$devdax" = "yes" ; then
output_sym "CONFIG_LINUX_DEVDAX"
fi
if test "$pmem" = "yes" ; then
output_sym "CONFIG_LIBPMEM"
fi
if test "$libime" = "yes" ; then
output_sym "CONFIG_IME"
fi
if test "$arith" = "yes" ; then
output_sym "CONFIG_ARITHMETIC"
if test "$yacc_is_bison" = "yes" ; then
echo "YACC=bison -y" >> $config_host_mak
else
echo "YACC=yacc" >> $config_host_mak
fi
if test "$lex_use_o" = "yes" ; then
echo "CONFIG_LEX_USE_O=y" >> $config_host_mak
fi
fi
if test "$getmntent" = "yes" ; then
output_sym "CONFIG_GETMNTENT"
fi
if test "$getmntinfo" = "yes" ; then
output_sym "CONFIG_GETMNTINFO"
fi
if test "$getmntinfo_statvfs" = "yes" ; then
output_sym "CONFIG_GETMNTINFO_STATVFS"
fi
if test "$static_assert" = "yes" ; then
output_sym "CONFIG_STATIC_ASSERT"
fi
if test "$have_bool" = "yes" ; then
output_sym "CONFIG_HAVE_BOOL"
fi
if test "$strndup" = "yes" ; then
output_sym "CONFIG_HAVE_STRNDUP"
fi
if test "$disable_opt" = "yes" ; then
output_sym "CONFIG_DISABLE_OPTIMIZATIONS"
fi
if test "$valgrind_dev" = "yes"; then
output_sym "CONFIG_VALGRIND_DEV"
fi
if test "$linux_blkzoned" = "yes" ; then
output_sym "CONFIG_HAS_BLKZONED"
fi
if test "$libzbc" = "yes" ; then
output_sym "CONFIG_LIBZBC"
fi
if test "$zlib" = "no" ; then
echo "Consider installing zlib-dev (zlib-devel, some fio features depend on it."
if test "$build_static" = "yes"; then
echo "Note that some distros have separate packages for static libraries."
fi
fi
if test "$march_armv8_a_crc_crypto" = "yes" ; then
output_sym "ARCH_HAVE_CRC_CRYPTO"
fi
if test "$cuda" = "yes" ; then
output_sym "CONFIG_CUDA"
fi
if test "$libcufile" = "yes" ; then
output_sym "CONFIG_LIBCUFILE"
fi
if test "$march_set" = "no" && test "$build_native" = "yes" ; then
output_sym "CONFIG_BUILD_NATIVE"
fi
if test "$cunit" = "yes" ; then
output_sym "CONFIG_HAVE_CUNIT"
fi
if test "$__kernel_rwf_t" = "yes"; then
output_sym "CONFIG_HAVE_KERNEL_RWF_T"
fi
if test "$gettid" = "yes"; then
output_sym "CONFIG_HAVE_GETTID"
fi
if test "$statx" = "yes"; then
output_sym "CONFIG_HAVE_STATX"
fi
if test "$statx_syscall" = "yes"; then
output_sym "CONFIG_HAVE_STATX_SYSCALL"
fi
if test "$timerfd_create" = "yes"; then
output_sym "CONFIG_HAVE_TIMERFD_CREATE"
fi
if test "$fallthrough" = "yes"; then
CFLAGS="$CFLAGS -Wimplicit-fallthrough"
fi
if test "$thp" = "yes" ; then
output_sym "CONFIG_HAVE_THP"
fi
if test "$libiscsi" = "yes" ; then
output_sym "CONFIG_LIBISCSI"
echo "CONFIG_LIBISCSI=m" >> $config_host_mak
echo "LIBISCSI_CFLAGS=$libiscsi_cflags" >> $config_host_mak
echo "LIBISCSI_LIBS=$libiscsi_libs" >> $config_host_mak
fi
if test "$libnbd" = "yes" ; then
output_sym "CONFIG_LIBNBD"
echo "CONFIG_LIBNBD=m" >> $config_host_mak
echo "LIBNBD_CFLAGS=$libnbd_cflags" >> $config_host_mak
echo "LIBNBD_LIBS=$libnbd_libs" >> $config_host_mak
fi
if test "$dynamic_engines" = "yes" ; then
output_sym "CONFIG_DYNAMIC_ENGINES"
fi
if test "$pdb" = yes; then
output_sym "CONFIG_PDB"
fi
print_config "Lib-based ioengines dynamic" "$dynamic_engines"
cat > $TMPC << EOF
int main(int argc, char **argv)
{
return 0;
}
EOF
if test "$disable_tcmalloc" != "yes"; then
if compile_prog "" "-ltcmalloc" "tcmalloc"; then
tcmalloc="yes"
LIBS="-ltcmalloc $LIBS"
elif compile_prog "" "-l:libtcmalloc_minimal.so.4" "tcmalloc_minimal4"; then
tcmalloc="yes"
LIBS="-l:libtcmalloc_minimal.so.4 $LIBS"
else
tcmalloc="no"
fi
fi
print_config "TCMalloc support" "$tcmalloc"
echo "LIBS+=$LIBS" >> $config_host_mak
echo "GFIO_LIBS+=$GFIO_LIBS" >> $config_host_mak
echo "CFLAGS+=$CFLAGS" >> $config_host_mak
echo "LDFLAGS+=$LDFLAGS" >> $config_host_mak
echo "CC=$cc" >> $config_host_mak
echo "BUILD_CFLAGS=$BUILD_CFLAGS $CFLAGS" >> $config_host_mak
echo "INSTALL_PREFIX=$prefix" >> $config_host_mak
if [ `dirname $0` != "." -a ! -e Makefile ]; then
cat > Makefile <<EOF
SRCDIR:=`dirname $0`
include \$(SRCDIR)/Makefile
EOF
fi
|