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 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161
|
..
-------------------------------------------------------------------
NOTE: This file is automatically generated by running clang-tblgen
-gen-opt-docs. Do not edit this file by hand!!
-------------------------------------------------------------------
=====================================
Clang command line argument reference
=====================================
.. contents::
:local:
Introduction
============
This page lists the command line arguments currently supported by the
GCC-compatible ``clang`` and ``clang++`` drivers.
.. program:: clang
.. option:: -B<prefix>, --prefix <arg>, --prefix=<arg>
Search $prefix/$triple-$file and $prefix$file for executables, libraries, includes, and data files used by the compiler. $prefix may or may not be a directory
.. option:: -F<arg>
Add directory to framework include search path
.. option:: -ObjC
Treat source input files as Objective-C inputs
.. program:: clang1
.. option:: -ObjC++
.. program:: clang
Treat source input files as Objective-C++ inputs
.. option:: -Qn, -fno-ident
Do not emit metadata containing compiler name and version
.. option:: -Qunused-arguments
Don't emit warning for unused driver arguments
.. option:: -Qy, -fident
Emit metadata containing compiler name and version
.. option:: -Wa,<arg>,<arg2>...
Pass the comma separated arguments in <arg> to the assembler
.. option:: -Wlarge-by-value-copy=<arg>
.. option:: -Xarch\_<arg1> <arg2>
.. program:: clang1
.. option:: -Xarch\_device <arg>
.. program:: clang
Pass <arg> to the CUDA/HIP device compilation
.. program:: clang2
.. option:: -Xarch\_host <arg>
.. program:: clang
Pass <arg> to the CUDA/HIP host compilation
.. option:: -Xcuda-fatbinary <arg>
Pass <arg> to fatbinary invocation
.. option:: -Xcuda-ptxas <arg>
Pass <arg> to the ptxas assembler
.. option:: -Xopenmp-target <arg>
Pass <arg> to the target offloading toolchain.
.. program:: clang1
.. option:: -Xopenmp-target=<triple> <arg>
.. program:: clang
Pass <arg> to the target offloading toolchain identified by <triple>.
.. option:: -Z<arg>
.. option:: -a<arg>, --profile-blocks
.. option:: -all\_load
.. option:: -allowable\_client <arg>
.. option:: --analyze
Run the static analyzer
.. option:: --analyzer-no-default-checks
.. option:: --analyzer-output<arg>
Static analyzer report output format (html\|plist\|plist-multi-file\|plist-html\|sarif\|sarif-html\|text).
.. option:: -arch <arg>
.. program:: clang1
.. option:: -arch\_errors\_fatal
.. program:: clang
.. program:: clang2
.. option:: -arch\_only <arg>
.. program:: clang
.. option:: -arcmt-migrate-emit-errors
Emit ARC errors even if the migrator can fix them
.. option:: -arcmt-migrate-report-output <arg>
Output path for the plist report
.. option:: --autocomplete=<arg>
.. option:: -bind\_at\_load
.. option:: -bundle
.. program:: clang1
.. option:: -bundle\_loader <arg>
.. program:: clang
.. option:: -client\_name<arg>
.. option:: -compatibility\_version<arg>
.. option:: --config <arg>
Specifies configuration file
.. option:: --constant-cfstrings
.. option:: --cuda-compile-host-device
Compile CUDA code for both host and device (default). Has no effect on non-CUDA compilations.
.. option:: --cuda-device-only
Compile CUDA code for device only
.. option:: --cuda-host-only
Compile CUDA code for host only. Has no effect on non-CUDA compilations.
.. option:: --cuda-include-ptx=<arg>, --no-cuda-include-ptx=<arg>
Include PTX for the following GPU architecture (e.g. sm\_35) or 'all'. May be specified more than once.
.. option:: --cuda-noopt-device-debug, --no-cuda-noopt-device-debug
Enable device-side debug info generation. Disables ptxas optimizations.
.. option:: -cuid=<arg>
An ID for compilation unit, which should be the same for the same compilation unit but different for different compilation units. It is used to externalize device-side static variables for single source offloading languages CUDA and HIP so that they can be accessed by the host code of the same compilation unit.
.. option:: -current\_version<arg>
.. option:: -dead\_strip
.. option:: -dependency-dot <arg>
Filename to write DOT-formatted header dependencies to
.. option:: -dependency-file <arg>
Filename (or -) to write dependency output to
.. option:: -dsym-dir<dir>
Directory to output dSYM's (if any) to
.. option:: -dumpmachine
.. option:: -dumpversion
.. option:: --dyld-prefix=<arg>, --dyld-prefix <arg>
.. option:: -dylib\_file <arg>
.. option:: -dylinker
.. program:: clang1
.. option:: -dylinker\_install\_name<arg>
.. program:: clang
.. option:: -dynamic
.. option:: -dynamiclib
.. option:: -emit-ast
Emit Clang AST files for source inputs
.. option:: --emit-static-lib
Enable linker job to emit a static library.
.. option:: -enable-trivial-auto-var-init-zero-knowing-it-will-be-removed-from-clang
Trivial automatic variable initialization to zero is only here for benchmarks, it'll eventually be removed, and I'm OK with that because I'm only using it to benchmark
.. option:: --end-no-unused-arguments
Start emitting warnings for unused driver arguments
.. option:: -exported\_symbols\_list <arg>
.. option:: -faligned-new=<arg>
.. option:: -fautomatic
.. option:: -ffixed-r19
Reserve register r19 (Hexagon only)
.. option:: -fgpu-flush-denormals-to-zero, -fcuda-flush-denormals-to-zero, -fno-gpu-flush-denormals-to-zero
Flush denormal floating point values to zero in CUDA/HIP device mode.
.. option:: -fheinous-gnu-extensions
.. option:: -flat\_namespace
.. option:: -fopenmp-targets=<arg1>,<arg2>...
Specify comma-separated list of triples OpenMP offloading targets to be supported
.. option:: -force\_cpusubtype\_ALL
.. program:: clang1
.. option:: -force\_flat\_namespace
.. program:: clang
.. program:: clang2
.. option:: -force\_load <arg>
.. program:: clang
.. option:: -fplugin-arg-<name>-<arg>
Pass <arg> to plugin <name>
.. option:: -framework <arg>
.. option:: -frtlib-add-rpath, -fno-rtlib-add-rpath
Add -rpath with architecture-specific resource directory to the linker flags
.. option:: -fsanitize-system-ignorelist=<arg>, -fsanitize-system-blacklist=<arg>
Path to system ignorelist file for sanitizers
.. option:: -fshow-skipped-includes
#include files may be "skipped" due to include guard optimization
or #pragma once. This flag makes -H show also such includes.
.. option:: -fsystem-module
Build this module as a system module. Only used with -emit-module
.. option:: -fuse-cuid=<arg>
Method to generate ID's for compilation units for single source offloading languages CUDA and HIP: 'hash' (ID's generated by hashing file path and command line options) \| 'random' (ID's generated as random numbers) \| 'none' (disabled). Default is 'hash'. This option will be overridden by option '-cuid=\[ID\]' if it is specified.
.. option:: --gcc-toolchain=<arg>
Search for GCC installation in the specified directory on targets which commonly use GCC. The directory usually contains 'lib{,32,64}/gcc{,-cross}/$triple' and 'include'. If specified, sysroot is skipped for GCC detection. Note: executables (e.g. ld) used by the compiler are not overridden by the selected GCC installation
.. option:: -gcodeview
Generate CodeView debug information
.. option:: -gcodeview-ghash, -gno-codeview-ghash
Emit type record hashes in a .debug$H section
.. option:: --gpu-instrument-lib=<arg>
Instrument device library for HIP, which is a LLVM bitcode containing \_\_cyg\_profile\_func\_enter and \_\_cyg\_profile\_func\_exit
.. option:: --gpu-max-threads-per-block=<arg>
Default max threads per block for kernel launch bounds for HIP
.. option:: -headerpad\_max\_install\_names<arg>
.. option:: -help, --help
Display available options
.. option:: --help-hidden
Display help for hidden options
.. option:: --hip-link
Link clang-offload-bundler bundles for HIP
.. option:: --hip-version=<arg>
HIP version in the format of major.minor.patch
.. option:: -ibuiltininc
Enable builtin #include directories even when -nostdinc is used before or after -ibuiltininc. Using -nobuiltininc after the option disables it
.. option:: -image\_base <arg>
.. option:: -index-header-map
Make the next included directory (-I or -F) an indexer header map
.. option:: -init <arg>
.. option:: -install\_name <arg>
.. option:: -interface-stub-version=<arg>
.. option:: -keep\_private\_externs
.. option:: -lazy\_framework <arg>
.. program:: clang1
.. option:: -lazy\_library <arg>
.. program:: clang
.. option:: -mbig-endian, -EB
.. option:: -mbranch-protection=<arg>
Enforce targets of indirect branches and function returns
.. option:: -menable-unsafe-fp-math
Allow unsafe floating-point math optimizations which may decrease precision
.. option:: -mharden-sls=<arg>
Select straight-line speculation hardening scope
.. option:: --migrate
Run the migrator
.. option:: -mios-simulator-version-min=<arg>, -miphonesimulator-version-min=<arg>
.. option:: -mlinker-version=<arg>
.. option:: -mlittle-endian, -EL
.. option:: -mllvm <arg>
Additional arguments to forward to LLVM's option processing
.. option:: -module-dependency-dir <arg>
Directory to dump module dependencies to
.. option:: -mtvos-simulator-version-min=<arg>, -mappletvsimulator-version-min=<arg>
.. option:: -multi\_module
.. option:: -multiply\_defined <arg>
.. program:: clang1
.. option:: -multiply\_defined\_unused <arg>
.. program:: clang
.. option:: -mwatchos-simulator-version-min=<arg>, -mwatchsimulator-version-min=<arg>
.. option:: --no-cuda-version-check
Don't error out if the detected version of the CUDA install is too low for the requested CUDA gpu architecture.
.. option:: -no-integrated-cpp, --no-integrated-cpp
.. option:: -no\_dead\_strip\_inits\_and\_terms
.. option:: -nobuiltininc
Disable builtin #include directories
.. option:: -nodefaultlibs
.. option:: -nofixprebinding
.. option:: -nogpuinc, -nocudainc
Do not add include paths for CUDA/HIP and do not include the default CUDA/HIP wrapper headers
.. option:: -nogpulib, -nocudalib
Do not link device library for CUDA/HIP device compilation
.. option:: -nohipwrapperinc
Do not include the default HIP wrapper headers and include paths
.. option:: -nolibc
.. option:: -nomultidefs
.. option:: -nopie, -no-pie
.. option:: -noprebind
.. option:: -noprofilelib
.. option:: -noseglinkedit
.. option:: -nostdinc, --no-standard-includes
.. program:: clang1
.. option:: -nostdinc++
.. program:: clang
Disable standard #include directories for the C++ standard library
.. option:: -nostdlib++
.. option:: -nostdlibinc
.. option:: -o<file>, --output <arg>, --output=<arg>
Write output to <file>
.. option:: -objcmt-allowlist-dir-path=<arg>, -objcmt-white-list-dir-path=<arg>, -objcmt-whitelist-dir-path=<arg>
Only modify files with a filename contained in the provided directory path
.. option:: -objcmt-atomic-property
Make migration to 'atomic' properties
.. option:: -objcmt-migrate-all
Enable migration to modern ObjC
.. option:: -objcmt-migrate-annotation
Enable migration to property and method annotations
.. option:: -objcmt-migrate-designated-init
Enable migration to infer NS\_DESIGNATED\_INITIALIZER for initializer methods
.. option:: -objcmt-migrate-instancetype
Enable migration to infer instancetype for method result type
.. option:: -objcmt-migrate-literals
Enable migration to modern ObjC literals
.. option:: -objcmt-migrate-ns-macros
Enable migration to NS\_ENUM/NS\_OPTIONS macros
.. option:: -objcmt-migrate-property
Enable migration to modern ObjC property
.. option:: -objcmt-migrate-property-dot-syntax
Enable migration of setter/getter messages to property-dot syntax
.. option:: -objcmt-migrate-protocol-conformance
Enable migration to add protocol conformance on classes
.. option:: -objcmt-migrate-readonly-property
Enable migration to modern ObjC readonly property
.. option:: -objcmt-migrate-readwrite-property
Enable migration to modern ObjC readwrite property
.. option:: -objcmt-migrate-subscripting
Enable migration to modern ObjC subscripting
.. option:: -objcmt-ns-nonatomic-iosonly
Enable migration to use NS\_NONATOMIC\_IOSONLY macro for setting property's 'atomic' attribute
.. option:: -objcmt-returns-innerpointer-property
Enable migration to annotate property with NS\_RETURNS\_INNER\_POINTER
.. option:: -object
.. option:: -object-file-name=<file>, -object-file-name <arg>
Set the output <file> for debug infos
.. option:: --offload-arch=<arg>, --cuda-gpu-arch=<arg>, --no-offload-arch=<arg>
CUDA offloading device architecture (e.g. sm\_35), or HIP offloading target ID in the form of a device architecture followed by target ID features delimited by a colon. Each target ID feature is a pre-defined string followed by a plus or minus sign (e.g. gfx908:xnack+:sramecc-). May be specified more than once.
.. option:: --offload=<arg1>,<arg2>...
Specify comma-separated list of offloading target triples (HIP only)
.. option:: -p, --profile
.. option:: -pagezero\_size<arg>
.. option:: -pg
Enable mcount instrumentation
.. option:: -pipe, --pipe
Use pipes between commands, when possible
.. option:: -prebind
.. program:: clang1
.. option:: -prebind\_all\_twolevel\_modules
.. program:: clang
.. option:: -preload
.. option:: --print-diagnostic-categories
.. option:: -print-effective-triple, --print-effective-triple
Print the effective target triple
.. option:: -print-file-name=<file>, --print-file-name=<file>, --print-file-name <arg>
Print the full library path of <file>
.. option:: -print-ivar-layout
Enable Objective-C Ivar layout bitmap print trace
.. option:: -print-libgcc-file-name, --print-libgcc-file-name
Print the library path for the currently used compiler runtime library ("libgcc.a" or "libclang\_rt.builtins.\*.a")
.. option:: -print-multi-directory, --print-multi-directory
.. option:: -print-multi-lib, --print-multi-lib
.. option:: -print-multiarch, --print-multiarch
Print the multiarch target triple
.. option:: -print-prog-name=<name>, --print-prog-name=<name>, --print-prog-name <arg>
Print the full program path of <name>
.. option:: -print-resource-dir, --print-resource-dir
Print the resource directory pathname
.. option:: -print-rocm-search-dirs, --print-rocm-search-dirs
Print the paths used for finding ROCm installation
.. option:: -print-runtime-dir, --print-runtime-dir
Print the directory pathname containing clangs runtime libraries
.. option:: -print-search-dirs, --print-search-dirs
Print the paths used for finding libraries and programs
.. option:: -print-target-triple, --print-target-triple
Print the normalized target triple
.. option:: -print-targets, --print-targets
Print the registered targets
.. option:: -private\_bundle
.. option:: -pthread, -no-pthread
Support POSIX threads in generated code
.. option:: -pthreads
.. option:: -read\_only\_relocs <arg>
.. option:: -relocatable-pch, --relocatable-pch
Whether to build a relocatable precompiled header
.. option:: -remap
.. option:: -rewrite-legacy-objc
Rewrite Legacy Objective-C source to C++
.. option:: -rtlib=<arg>, --rtlib=<arg>, --rtlib <arg>
Compiler runtime library to use
.. option:: -save-stats=<arg>, --save-stats=<arg>, -save-stats (equivalent to -save-stats=cwd), --save-stats (equivalent to -save-stats=cwd)
Save llvm statistics.
.. option:: -save-temps=<arg>, --save-temps=<arg>, -save-temps (equivalent to -save-temps=cwd), --save-temps (equivalent to -save-temps=cwd)
Save intermediate compilation results.
.. option:: -sectalign <arg1> <arg2> <arg3>
.. option:: -sectcreate <arg1> <arg2> <arg3>
.. option:: -sectobjectsymbols <arg1> <arg2>
.. option:: -sectorder <arg1> <arg2> <arg3>
.. option:: -seg1addr<arg>
.. option:: -seg\_addr\_table <arg>
.. program:: clang1
.. option:: -seg\_addr\_table\_filename <arg>
.. program:: clang
.. option:: -segaddr <arg1> <arg2>
.. option:: -segcreate <arg1> <arg2> <arg3>
.. option:: -seglinkedit
.. option:: -segprot <arg1> <arg2> <arg3>
.. option:: -segs\_read\_<arg>
.. program:: clang1
.. option:: -segs\_read\_only\_addr <arg>
.. program:: clang
.. program:: clang2
.. option:: -segs\_read\_write\_addr <arg>
.. program:: clang
.. option:: -serialize-diagnostics <arg>, --serialize-diagnostics <arg>
Serialize compiler diagnostics to a file
.. option:: -shared-libgcc
.. option:: -shared-libsan, -shared-libasan
Dynamically link the sanitizer runtime
.. option:: -single\_module
.. option:: --start-no-unused-arguments
Don't emit warnings about unused arguments for the following arguments
.. option:: -static-libgcc
.. option:: -static-libsan
Statically link the sanitizer runtime
.. option:: -static-libstdc++
.. option:: -static-openmp
Use the static host OpenMP runtime while linking.
.. option:: -std-default=<arg>
.. option:: -stdlib=<arg>, --stdlib=<arg>, --stdlib <arg>
C++ standard library to use
.. option:: -sub\_library<arg>
.. program:: clang1
.. option:: -sub\_umbrella<arg>
.. program:: clang
.. option:: --sysroot=<arg>, --sysroot <arg>
.. option:: --target-help
.. option:: --target=<arg>, -target <arg>
Generate code for the given target
.. option:: -time
Time individual commands
.. option:: -traditional, --traditional
.. option:: -traditional-cpp, --traditional-cpp
Enable some traditional CPP emulation
.. option:: -twolevel\_namespace
.. program:: clang1
.. option:: -twolevel\_namespace\_hints
.. program:: clang
.. option:: -umbrella <arg>
.. option:: -unexported\_symbols\_list <arg>
.. option:: -unwindlib=<arg>, --unwindlib=<arg>
Unwind library to use
.. option:: -v, --verbose
Show commands to run and use verbose output
.. option:: --verify-debug-info
Verify the binary representation of debug output
.. option:: --version
Print version information
.. option:: -w, --no-warnings
Suppress all warnings
.. option:: -weak-l<arg>
.. option:: -weak\_framework <arg>
.. program:: clang1
.. option:: -weak\_library <arg>
.. program:: clang
.. program:: clang2
.. option:: -weak\_reference\_mismatches <arg>
.. program:: clang
.. option:: -whatsloaded
.. option:: -why\_load, -whyload
.. option:: -working-directory<arg>, -working-directory=<arg>
Resolve file paths relative to the specified directory
.. option:: -x<language>, --language <arg>, --language=<arg>
Treat subsequent input files as having type <language>
.. option:: -y<arg>
Actions
=======
The action to perform on the input.
.. option:: -E, --preprocess
Only run the preprocessor
.. option:: -S, --assemble
Only run preprocess and compilation steps
.. option:: -c, --compile
Only run preprocess, compile, and assemble steps
.. option:: -emit-interface-stubs
Generate Interface Stub Files.
.. option:: -emit-llvm
Use the LLVM representation for assembler and object files
.. option:: -emit-merged-ifs
Generate Interface Stub Files, emit merged text not binary.
.. option:: -fsyntax-only
.. option:: -module-file-info
Provide information about a particular module file
.. option:: --precompile
Only precompile the input
.. option:: -rewrite-objc
Rewrite Objective-C source to C++
.. option:: -verify-pch
Load and verify that a pre-compiled header file is not stale
Compilation flags
=================
Flags controlling the behavior of Clang during compilation. These flags have
no effect during actions that do not perform compilation.
.. option:: -Xassembler <arg>
Pass <arg> to the assembler
.. option:: -Xclang <arg>
Pass <arg> to the clang compiler
.. option:: -ansi, --ansi
.. option:: -fc++-abi=<arg>
C++ ABI to use. This will override the target C++ ABI.
.. option:: -fclang-abi-compat=<version>
Attempt to match the ABI of Clang <version>
.. option:: -fcomment-block-commands=<arg>,<arg2>...
Treat each comma separated argument in <arg> as a documentation comment block command
.. option:: -fcomplete-member-pointers, -fno-complete-member-pointers
Require member pointer base types to be complete if they would be significant under the Microsoft ABI
.. option:: -fcrash-diagnostics-dir=<dir>
Put crash-report files in <dir>
.. option:: -fdeclspec, -fno-declspec
Allow \_\_declspec as a keyword
.. option:: -fdepfile-entry=<arg>
.. option:: -fdiagnostics-fixit-info, -fno-diagnostics-fixit-info
.. option:: -fdiagnostics-format=<arg>
.. option:: -fdiagnostics-parseable-fixits
Print fix-its in machine parseable form
.. option:: -fdiagnostics-print-source-range-info
Print source range spans in numeric form
.. option:: -fdiagnostics-show-category=<arg>
.. option:: -fdiscard-value-names, -fno-discard-value-names
Discard value names in LLVM IR
.. option:: -fexperimental-relative-c++-abi-vtables, -fno-experimental-relative-c++-abi-vtables
Use the experimental C++ class ABI for classes with virtual tables
.. option:: -fexperimental-strict-floating-point
Enables experimental strict floating point in LLVM.
.. option:: -ffine-grained-bitfield-accesses, -fno-fine-grained-bitfield-accesses
Use separate accesses for consecutive bitfield runs with legal widths and alignments.
.. option:: -fglobal-isel, -fexperimental-isel, -fno-global-isel
Enables the global instruction selector
.. option:: -finline-functions, -fno-inline-functions
Inline suitable functions
.. option:: -finline-hint-functions
Inline functions which are (explicitly or implicitly) marked inline
.. option:: -flegacy-pass-manager, -fno-experimental-new-pass-manager, -fno-legacy-pass-manager
Use the legacy pass manager in LLVM (deprecated, to be removed in a future release)
.. option:: -fno-crash-diagnostics
Disable auto-generation of preprocessed source files and a script for reproduction during a clang crash
.. option:: -fno-sanitize-ignorelist, -fno-sanitize-blacklist
Don't use ignorelist file for sanitizers
.. option:: -fparse-all-comments
.. option:: -frecord-command-line, -fno-record-command-line, -frecord-gcc-switches
.. option:: -fsanitize-address-destructor=<arg>
Set destructor type used in ASan instrumentation
.. option:: -fsanitize-address-field-padding=<arg>
Level of field padding for AddressSanitizer
.. option:: -fsanitize-address-globals-dead-stripping
Enable linker dead stripping of globals in AddressSanitizer
.. option:: -fsanitize-address-outline-instrumentation, -fno-sanitize-address-outline-instrumentation
Always generate function calls for address sanitizer instrumentation
.. option:: -fsanitize-address-poison-custom-array-cookie, -fno-sanitize-address-poison-custom-array-cookie
Enable poisoning array cookies when using custom operator new\[\] in AddressSanitizer
.. option:: -fsanitize-address-use-after-return=<mode>
Select the mode of detecting stack use-after-return in AddressSanitizer: never \| runtime (default) \| always
.. option:: -fsanitize-address-use-after-scope, -fno-sanitize-address-use-after-scope
Enable use-after-scope detection in AddressSanitizer
.. option:: -fsanitize-address-use-odr-indicator, -fno-sanitize-address-use-odr-indicator
Enable ODR indicator globals to avoid false ODR violation reports in partially sanitized programs at the cost of an increase in binary size
.. option:: -fsanitize-cfi-canonical-jump-tables, -fno-sanitize-cfi-canonical-jump-tables
Make the jump table addresses canonical in the symbol table
.. option:: -fsanitize-cfi-cross-dso, -fno-sanitize-cfi-cross-dso
Enable control flow integrity (CFI) checks for cross-DSO calls.
.. option:: -fsanitize-cfi-icall-generalize-pointers
Generalize pointers in CFI indirect call type signature checks
.. option:: -fsanitize-coverage-allowlist=<arg>, -fsanitize-coverage-whitelist=<arg>
Restrict sanitizer coverage instrumentation exclusively to modules and functions that match the provided special case list, except the blocked ones
.. option:: -fsanitize-coverage-ignorelist=<arg>, -fsanitize-coverage-blacklist=<arg>
Disable sanitizer coverage instrumentation for modules and functions that match the provided special case list, even the allowed ones
.. option:: -fsanitize-coverage=<arg1>,<arg2>..., -fno-sanitize-coverage=<arg1>,<arg2>...
Specify the type of coverage instrumentation for Sanitizers
.. option:: -fsanitize-hwaddress-abi=<arg>
Select the HWAddressSanitizer ABI to target (interceptor or platform, default interceptor). This option is currently unused.
.. option:: -fsanitize-hwaddress-experimental-aliasing, -fno-sanitize-hwaddress-experimental-aliasing
Enable aliasing mode in HWAddressSanitizer
.. option:: -fsanitize-ignorelist=<arg>, -fsanitize-blacklist=<arg>
Path to ignorelist file for sanitizers
.. option:: -fsanitize-link-c++-runtime, -fno-sanitize-link-c++-runtime
.. option:: -fsanitize-link-runtime, -fno-sanitize-link-runtime
.. option:: -fsanitize-memory-track-origins, -fno-sanitize-memory-track-origins
Enable origins tracking in MemorySanitizer
.. program:: clang1
.. option:: -fsanitize-memory-track-origins=<arg>
.. program:: clang
Enable origins tracking in MemorySanitizer
.. option:: -fsanitize-memory-use-after-dtor, -fno-sanitize-memory-use-after-dtor
Enable use-after-destroy detection in MemorySanitizer
.. option:: -fsanitize-minimal-runtime, -fno-sanitize-minimal-runtime
.. option:: -fsanitize-recover=<arg1>,<arg2>..., -fno-sanitize-recover=<arg1>,<arg2>..., -fsanitize-recover (equivalent to -fsanitize-recover=all)
Enable recovery for specified sanitizers
.. option:: -fsanitize-stats, -fno-sanitize-stats
Enable sanitizer statistics gathering.
.. option:: -fsanitize-thread-atomics, -fno-sanitize-thread-atomics
Enable atomic operations instrumentation in ThreadSanitizer (default)
.. option:: -fsanitize-thread-func-entry-exit, -fno-sanitize-thread-func-entry-exit
Enable function entry/exit instrumentation in ThreadSanitizer (default)
.. option:: -fsanitize-thread-memory-access, -fno-sanitize-thread-memory-access
Enable memory access instrumentation in ThreadSanitizer (default)
.. option:: -fsanitize-trap=<arg1>,<arg2>..., -fno-sanitize-trap=<arg1>,<arg2>..., -fsanitize-trap (equivalent to -fsanitize-trap=all), -fsanitize-undefined-trap-on-error (equivalent to -fsanitize-trap=undefined)
Enable trapping for specified sanitizers
.. option:: -fsanitize-undefined-strip-path-components=<number>
Strip (or keep only, if negative) a given number of path components when emitting check metadata.
.. option:: -fsanitize=<check>,<arg2>..., -fno-sanitize=<arg1>,<arg2>...
Turn on runtime checks for various forms of undefined or suspicious behavior. See user manual for available checks
.. option:: -moutline, -mno-outline
Enable function outlining (AArch64 only)
.. option:: -moutline-atomics, -mno-outline-atomics
Generate local calls to out-of-line atomic operations
.. option:: --param <arg>, --param=<arg>
.. option:: -print-supported-cpus, --print-supported-cpus, -mcpu=?, -mtune=?
Print supported cpu models for the given target (if target is not specified, it will print the supported cpus for the default target)
.. option:: -std=<arg>, --std=<arg>, --std <arg>
Language standard to compile for
Preprocessor flags
~~~~~~~~~~~~~~~~~~
Flags controlling the behavior of the Clang preprocessor.
.. option:: -C, --comments
Include comments in preprocessed output
.. option:: -CC, --comments-in-macros
Include comments from within macros in preprocessed output
.. option:: -D<macro>=<value>, --define-macro <arg>, --define-macro=<arg>
Define <macro> to <value> (or 1 if <value> omitted)
.. option:: -H, --trace-includes
Show header includes and nesting depth
.. option:: -P, --no-line-commands
Disable linemarker output in -E mode
.. option:: -U<macro>, --undefine-macro <arg>, --undefine-macro=<arg>
Undefine macro <macro>
.. option:: -Wp,<arg>,<arg2>...
Pass the comma separated arguments in <arg> to the preprocessor
.. option:: -Xpreprocessor <arg>
Pass <arg> to the preprocessor
Include path management
-----------------------
Flags controlling how ``#include``\s are resolved to files.
.. option:: -I<dir>, --include-directory <arg>, --include-directory=<arg>
Add directory to include search path. For C++ inputs, if
there are multiple -I options, these directories are searched
in the order they are given before the standard system directories
are searched. If the same directory is in the SYSTEM include search
paths, for example if also specified with -isystem, the -I option
will be ignored
.. option:: -I-, --include-barrier
Restrict all prior -I flags to double-quoted inclusion and remove current directory from include path
.. option:: --amdgpu-arch-tool=<arg>
Tool used for detecting AMD GPU arch in the system.
.. option:: --cuda-path-ignore-env
Ignore environment variables to detect CUDA installation
.. option:: --cuda-path=<arg>
CUDA installation path
.. option:: -cxx-isystem<directory>
Add directory to the C++ SYSTEM include search path
.. option:: -fbuild-session-file=<file>
Use the last modification time of <file> as the build session timestamp
.. option:: -fbuild-session-timestamp=<time since Epoch in seconds>
Time when the current build session started
.. option:: -fmodule-file=\[<name>=\]<file>
Specify the mapping of module name to precompiled module file, or load a module file if name is omitted.
.. option:: -fmodules-cache-path=<directory>
Specify the module cache path
.. option:: -fmodules-disable-diagnostic-validation
Disable validation of the diagnostic options when loading the module
.. option:: -fmodules-prune-after=<seconds>
Specify the interval (in seconds) after which a module file will be considered unused
.. option:: -fmodules-prune-interval=<seconds>
Specify the interval (in seconds) between attempts to prune the module cache
.. option:: -fmodules-user-build-path <directory>
Specify the module user build path
.. option:: -fmodules-validate-once-per-build-session
Don't verify input files for the modules if the module has been successfully validated or loaded during this build session
.. option:: -fmodules-validate-system-headers, -fno-modules-validate-system-headers
Validate the system headers that a module depends on when loading the module
.. option:: -fprebuilt-module-path=<directory>
Specify the prebuilt module path
.. option:: --hip-path=<arg>
HIP runtime installation path, used for finding HIP version and adding HIP include path.
.. option:: -idirafter<arg>, --include-directory-after <arg>, --include-directory-after=<arg>
Add directory to AFTER include search path
.. option:: -iframework<arg>
Add directory to SYSTEM framework search path
.. option:: -iframeworkwithsysroot<directory>
Add directory to SYSTEM framework search path, absolute paths are relative to -isysroot
.. option:: -imacros<file>, --imacros<file>, --imacros=<arg>
Include macros from file before parsing
.. option:: -include<file>, --include<file>, --include=<arg>
Include file before parsing
.. option:: -include-pch <file>
Include precompiled header file
.. option:: -iprefix<dir>, --include-prefix <arg>, --include-prefix=<arg>
Set the -iwithprefix/-iwithprefixbefore prefix
.. option:: -iquote<directory>
Add directory to QUOTE include search path
.. option:: -isysroot<dir>
Set the system root directory (usually /)
.. option:: -isystem<directory>
Add directory to SYSTEM include search path
.. option:: -isystem-after<directory>
Add directory to end of the SYSTEM include search path
.. option:: -ivfsoverlay<arg>
Overlay the virtual filesystem described by file over the real file system
.. option:: -iwithprefix<dir>, --include-with-prefix <arg>, --include-with-prefix-after <arg>, --include-with-prefix-after=<arg>, --include-with-prefix=<arg>
Set directory to SYSTEM include search path with prefix
.. option:: -iwithprefixbefore<dir>, --include-with-prefix-before <arg>, --include-with-prefix-before=<arg>
Set directory to include search path with prefix
.. option:: -iwithsysroot<directory>
Add directory to SYSTEM include search path, absolute paths are relative to -isysroot
.. option:: --libomptarget-amdgcn-bc-path=<arg>
Path to libomptarget-amdgcn bitcode library
.. option:: --libomptarget-nvptx-bc-path=<arg>
Path to libomptarget-nvptx bitcode library
.. option:: --ptxas-path=<arg>
Path to ptxas (used for compiling CUDA code)
.. option:: --rocm-path=<arg>
ROCm installation path, used for finding and automatically linking required bitcode libraries.
.. program:: clang1
.. option:: -stdlib++-isystem<directory>
.. program:: clang
Use directory as the C++ standard library include path
.. option:: --system-header-prefix=<prefix>, --no-system-header-prefix=<prefix>, --system-header-prefix <arg>
Treat all #include paths starting with <prefix> as including a system header.
Dependency file generation
--------------------------
Flags controlling generation of a dependency file for ``make``-like build
systems.
.. option:: -M, --dependencies
Like -MD, but also implies -E and writes to stdout by default
.. option:: -MD, --write-dependencies
Write a depfile containing user and system headers
.. option:: -MF<file>
Write depfile output from -MMD, -MD, -MM, or -M to <file>
.. option:: -MG, --print-missing-file-dependencies
Add missing headers to depfile
.. option:: -MJ<arg>
Write a compilation database entry per input
.. option:: -MM, --user-dependencies
Like -MMD, but also implies -E and writes to stdout by default
.. option:: -MMD, --write-user-dependencies
Write a depfile containing user headers
.. option:: -MP
Create phony target for each dependency (other than main file)
.. option:: -MQ<arg>
Specify name of main file output to quote in depfile
.. option:: -MT<arg>
Specify name of main file output in depfile
.. option:: -MV
Use NMake/Jom format for the depfile
Dumping preprocessor state
--------------------------
Flags allowing the state of the preprocessor to be dumped in various ways.
.. option:: -d
.. program:: clang1
.. option:: -d<arg>
.. program:: clang
.. option:: -dD
Print macro definitions in -E mode in addition to normal output
.. option:: -dI
Print include directives in -E mode in addition to normal output
.. option:: -dM
Print macro definitions in -E mode instead of normal output
Diagnostic flags
~~~~~~~~~~~~~~~~
Flags controlling which warnings, errors, and remarks Clang will generate.
See the :doc:`full list of warning and remark flags <DiagnosticsReference>`.
.. option:: -R<remark>
Enable the specified remark
.. option:: -Rpass-analysis=<arg>
Report transformation analysis from optimization passes whose name matches the given POSIX regular expression
.. option:: -Rpass-missed=<arg>
Report missed transformations by optimization passes whose name matches the given POSIX regular expression
.. option:: -Rpass=<arg>
Report transformations performed by optimization passes whose name matches the given POSIX regular expression
.. option:: -W<warning>, --extra-warnings, --warn-<arg>, --warn-=<arg>
Enable the specified warning
.. option:: -Wdeprecated, -Wno-deprecated
Enable warnings for deprecated constructs and define \_\_DEPRECATED
.. option:: -Wframe-larger-than=<arg>, -Wframe-larger-than
.. option:: -Wnonportable-cfstrings<arg>, -Wno-nonportable-cfstrings<arg>
Target-independent compilation options
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. option:: -fPIC, -fno-PIC
.. option:: -fPIE, -fno-PIE
.. option:: -faccess-control, -fno-access-control
.. option:: -faddrsig, -fno-addrsig
Emit an address-significance table
.. option:: -falign-functions, -fno-align-functions
.. program:: clang1
.. option:: -falign-functions=<arg>
.. program:: clang
.. option:: -falign-loops=<N>
N must be a power of two. Align loops to the boundary
.. program:: clang1
.. option:: -faligned-allocation, -faligned-new, -fno-aligned-allocation
.. program:: clang
Enable C++17 aligned allocation functions
.. option:: -fallow-editor-placeholders, -fno-allow-editor-placeholders
Treat editor placeholders as valid source code
.. option:: -fallow-unsupported
.. option:: -faltivec, -fno-altivec
.. option:: -faltivec-src-compat=<arg>
Source-level compatibility for Altivec vectors (for PowerPC targets). This includes results of vector comparison (scalar for 'xl', vector for 'gcc') as well as behavior when initializing with a scalar (splatting for 'xl', element zero only for 'gcc'). For 'mixed', the compatibility is as 'gcc' for 'vector bool/vector pixel' and as 'xl' for other types. Current default is 'mixed'.
.. option:: -fansi-escape-codes
Use ANSI escape codes for diagnostics
.. option:: -fapple-kext, -findirect-virtual-calls, -fterminated-vtables
Use Apple's kernel extensions ABI
.. option:: -fapple-link-rtlib
Force linking the clang builtins runtime library
.. option:: -fapple-pragma-pack, -fno-apple-pragma-pack
Enable Apple gcc-compatible #pragma pack handling
.. option:: -fapplication-extension, -fno-application-extension
Restrict code to those available for App Extensions
.. option:: -fapprox-func, -fno-approx-func
Allow certain math function calls to be replaced with an approximately equivalent calculation
.. option:: -fasm, -fno-asm
.. option:: -fasm-blocks, -fno-asm-blocks
.. option:: -fassociative-math, -fno-associative-math
.. option:: -fassume-sane-operator-new, -fno-assume-sane-operator-new
.. option:: -fast
.. option:: -fastcp
.. option:: -fastf
.. option:: -fasync-exceptions, -fno-async-exceptions
Enable EH Asynchronous exceptions
.. option:: -fasynchronous-unwind-tables, -fno-asynchronous-unwind-tables
.. option:: -fautolink, -fno-autolink
.. option:: -fbasic-block-sections=<arg>
Generate labels for each basic block or place each basic block or a subset of basic blocks in its own section.
.. option:: -fbinutils-version=<major.minor>
Produced object files can use all ELF features supported by this binutils version and newer. If -fno-integrated-as is specified, the generated assembly will consider GNU as support. 'none' means that all ELF features can be used, regardless of binutils support. Defaults to 2.26.
.. option:: -fblocks, -fno-blocks
Enable the 'blocks' language feature
.. option:: -fbootclasspath=<arg>, --bootclasspath <arg>, --bootclasspath=<arg>
.. option:: -fborland-extensions, -fno-borland-extensions
Accept non-standard constructs supported by the Borland compiler
.. option:: -fbracket-depth=<arg>
.. option:: -fbuiltin, -fno-builtin
.. option:: -fbuiltin-module-map
Load the clang builtins module map file.
.. program:: clang1
.. option:: -fc++-static-destructors, -fno-c++-static-destructors
.. program:: clang
.. option:: -fcaret-diagnostics, -fno-caret-diagnostics
.. option:: -fcf-protection=<arg>, -fcf-protection (equivalent to -fcf-protection=full)
Instrument control-flow architecture protection. Options: return, branch, full, none.
.. option:: -fcf-runtime-abi=<arg>
.. option:: -fchar8\_t, -fno-char8\_t
Enable C++ builtin type char8\_t
.. option:: -fclasspath=<arg>, --CLASSPATH <arg>, --CLASSPATH=<arg>, --classpath <arg>, --classpath=<arg>
.. option:: -fcolor-diagnostics, -fno-color-diagnostics
Enable colors in diagnostics
.. option:: -fcommon, -fno-common
Place uninitialized global variables in a common block
.. option:: -fcompile-resource=<arg>, --resource <arg>, --resource=<arg>
.. option:: -fconstant-cfstrings, -fno-constant-cfstrings
.. option:: -fconstant-string-class=<arg>
.. option:: -fconstexpr-backtrace-limit=<arg>
.. option:: -fconstexpr-depth=<arg>
.. option:: -fconstexpr-steps=<arg>
.. option:: -fconvergent-functions
Assume functions may be convergent
.. option:: -fcoroutines-ts, -fno-coroutines-ts
Enable support for the C++ Coroutines TS
.. option:: -fcoverage-compilation-dir=<arg>
The compilation directory to embed in the coverage mapping.
.. option:: -fcoverage-mapping, -fno-coverage-mapping
Generate coverage mapping to enable code coverage analysis
.. option:: -fcoverage-prefix-map=<arg>
remap file source paths in coverage mapping
.. option:: -fcreate-profile
.. option:: -fcs-profile-generate
Generate instrumented code to collect context sensitive execution counts into default.profraw (overridden by LLVM\_PROFILE\_FILE env var)
.. program:: clang1
.. option:: -fcs-profile-generate=<directory>
.. program:: clang
Generate instrumented code to collect context sensitive execution counts into <directory>/default.profraw (overridden by LLVM\_PROFILE\_FILE env var)
.. option:: -fcuda-approx-transcendentals, -fno-cuda-approx-transcendentals
Use approximate transcendental functions
.. option:: -fcuda-short-ptr, -fno-cuda-short-ptr
Use 32-bit pointers for accessing const/local/shared address spaces
.. option:: -fcxx-exceptions, -fno-cxx-exceptions
Enable C++ exceptions
.. option:: -fcxx-modules, -fno-cxx-modules
Enable modules for C++
.. option:: -fdata-sections, -fno-data-sections
Place each data in its own section
.. option:: -fdebug-compilation-dir=<arg>, -fdebug-compilation-dir <arg>
The compilation directory to embed in the debug info
.. option:: -fdebug-default-version=<arg>
Default DWARF version to use, if a -g option caused DWARF debug info to be produced
.. option:: -fdebug-info-for-profiling, -fno-debug-info-for-profiling
Emit extra debug info to make sample profile more accurate
.. option:: -fdebug-macro, -fno-debug-macro
Emit macro debug information
.. option:: -fdebug-pass-arguments
.. option:: -fdebug-pass-structure
.. option:: -fdebug-prefix-map=<arg>
remap file source paths in debug info
.. option:: -fdebug-ranges-base-address, -fno-debug-ranges-base-address
Use DWARF base address selection entries in .debug\_ranges
.. option:: -fdebug-types-section, -fno-debug-types-section
Place debug types in their own section (ELF Only)
.. option:: -fdelayed-template-parsing, -fno-delayed-template-parsing
Parse templated function definitions at the end of the translation unit
.. option:: -fdelete-null-pointer-checks, -fno-delete-null-pointer-checks
Treat usage of null pointers as undefined behavior (default)
.. option:: -fdenormal-fp-math=<arg>
.. option:: -fdiagnostics-absolute-paths
Print absolute paths in diagnostics
.. option:: -fdiagnostics-color, -fno-diagnostics-color
.. program:: clang1
.. option:: -fdiagnostics-color=<arg>
.. program:: clang
.. option:: -fdiagnostics-hotness-threshold=<value>
Prevent optimization remarks from being output if they do not have at least this profile count. Use 'auto' to apply the threshold from profile summary
.. option:: -fdiagnostics-show-hotness, -fno-diagnostics-show-hotness
Enable profile hotness information in diagnostic line
.. option:: -fdiagnostics-show-note-include-stack, -fno-diagnostics-show-note-include-stack
Display include stacks for diagnostic notes
.. option:: -fdiagnostics-show-option, -fno-diagnostics-show-option
Print option name with mappable diagnostics
.. option:: -fdiagnostics-show-template-tree
Print a template comparison tree for differing templates
.. option:: -fdigraphs, -fno-digraphs
Enable alternative token representations '<:', ':>', '<%', '%>', '%:', '%:%:' (default)
.. option:: -fdirect-access-external-data, -fno-direct-access-external-data
Don't use GOT indirection to reference external data symbols
.. option:: -fdollars-in-identifiers, -fno-dollars-in-identifiers
Allow '$' in identifiers
.. option:: -fdouble-square-bracket-attributes, -fno-double-square-bracket-attributes
Enable '\[\[\]\]' attributes in all C and C++ language modes
.. option:: -fdwarf-directory-asm, -fno-dwarf-directory-asm
.. option:: -fdwarf-exceptions
Use DWARF style exceptions
.. option:: -felide-constructors, -fno-elide-constructors
.. option:: -feliminate-unused-debug-symbols, -fno-eliminate-unused-debug-symbols
.. option:: -feliminate-unused-debug-types, -fno-eliminate-unused-debug-types
Do not emit debug info for defined but unused types
.. option:: -fembed-bitcode=<option>, -fembed-bitcode (equivalent to -fembed-bitcode=all), -fembed-bitcode-marker (equivalent to -fembed-bitcode=marker)
Embed LLVM bitcode (option: off, all, bitcode, marker)
.. option:: -femit-all-decls
Emit all declarations, even if unused
.. option:: -femulated-tls, -fno-emulated-tls
Use emutls functions to access thread\_local variables
.. option:: -fenable-matrix
Enable matrix data type and related builtin functions
.. option:: -fencoding=<arg>, --encoding <arg>, --encoding=<arg>
.. option:: -ferror-limit=<arg>
.. option:: -fescaping-block-tail-calls, -fno-escaping-block-tail-calls
.. option:: -fexceptions, -fno-exceptions
Enable support for exception handling
.. option:: -fexec-charset=<arg>
.. option:: -fexperimental-new-constant-interpreter
Enable the experimental new constant interpreter
.. option:: -fextdirs=<arg>, --extdirs <arg>, --extdirs=<arg>
.. option:: -fextend-arguments=<arg>
Controls how scalar integer arguments are extended in calls to unprototyped and varargs functions
.. option:: -ffast-math, -fno-fast-math
Allow aggressive, lossy floating-point optimizations
.. option:: -ffile-compilation-dir=<arg>
The compilation directory to embed in the debug info and coverage mapping.
.. option:: -ffile-prefix-map=<arg>
remap file source paths in debug info, predefined preprocessor macros and \_\_builtin\_FILE()
.. option:: -ffinite-loops, -fno-finite-loops
Assume all loops are finite.
.. option:: -ffinite-math-only, -fno-finite-math-only
.. option:: -ffixed-point, -fno-fixed-point
Enable fixed point types
.. option:: -ffor-scope, -fno-for-scope
.. option:: -fforce-dwarf-frame, -fno-force-dwarf-frame
Always emit a debug frame section
.. option:: -fforce-emit-vtables, -fno-force-emit-vtables
Emits more virtual tables to improve devirtualization
.. option:: -fforce-enable-int128, -fno-force-enable-int128
Enable support for int128\_t type
.. option:: -ffp-contract=<arg>
Form fused FP ops (e.g. FMAs): fast (fuses across statements disregarding pragmas) \| on (only fuses in the same statement unless dictated by pragmas) \| off (never fuses) \| fast-honor-pragmas (fuses across statements unless diectated by pragmas). Default is 'fast' for CUDA, 'fast-honor-pragmas' for HIP, and 'on' otherwise.
.. option:: -ffp-exception-behavior=<arg>
Specifies the exception behavior of floating-point operations.
.. option:: -ffp-model=<arg>
Controls the semantics of floating-point calculations.
.. option:: -ffreestanding
Assert that the compilation takes place in a freestanding environment
.. option:: -ffunction-sections, -fno-function-sections
Place each function in its own section
.. option:: -fgnu-inline-asm, -fno-gnu-inline-asm
.. option:: -fgnu-keywords, -fno-gnu-keywords
Allow GNU-extension keywords regardless of language standard
.. option:: -fgnu-runtime
Generate output compatible with the standard GNU Objective-C runtime
.. option:: -fgnu89-inline, -fno-gnu89-inline
Use the gnu89 inline semantics
.. option:: -fgnuc-version=<arg>
Sets various macros to claim compatibility with the given GCC version (default is 4.2.1)
.. option:: -fgpu-allow-device-init, -fno-gpu-allow-device-init
Allow device side init function in HIP (experimental)
.. option:: -fgpu-defer-diag, -fno-gpu-defer-diag
Defer host/device related diagnostic messages for CUDA/HIP
.. option:: -fgpu-rdc, -fcuda-rdc, -fno-gpu-rdc
Generate relocatable device code, also known as separate compilation mode
.. option:: -fgpu-sanitize, -fno-gpu-sanitize
Enable sanitizer for AMDGPU target
.. option:: -fhip-fp32-correctly-rounded-divide-sqrt, -fno-hip-fp32-correctly-rounded-divide-sqrt
Specify that single precision floating-point divide and sqrt used in the program source are correctly rounded (HIP device compilation only)
.. option:: -fhip-new-launch-api, -fno-hip-new-launch-api
Use new kernel launching API for HIP
.. option:: -fhonor-infinities, -fhonor-infinites, -fno-honor-infinities
.. option:: -fhonor-nans, -fno-honor-nans
.. option:: -fhosted
.. option:: -fignore-exceptions
Enable support for ignoring exception handling constructs
.. option:: -fimplicit-module-maps, -fmodule-maps, -fno-implicit-module-maps
Implicitly search the file system for module map files.
.. option:: -fimplicit-modules, -fno-implicit-modules
.. option:: -finput-charset=<arg>
Specify the default character set for source files
.. option:: -finstrument-function-entry-bare
Instrument function entry only, after inlining, without arguments to the instrumentation call
.. option:: -finstrument-functions
Generate calls to instrument function entry and exit
.. option:: -finstrument-functions-after-inlining
Like -finstrument-functions, but insert the calls after inlining
.. option:: -fintegrated-as, -fno-integrated-as, -integrated-as
Enable the integrated assembler
.. option:: -fintegrated-cc1, -fno-integrated-cc1
Run cc1 in-process
.. option:: -fjump-tables, -fno-jump-tables
Use jump tables for lowering switches
.. option:: -fkeep-static-consts, -fno-keep-static-consts
Keep static const variables if unused
.. option:: -flax-vector-conversions=<arg>, -flax-vector-conversions (equivalent to -flax-vector-conversions=integer), -fno-lax-vector-conversions (equivalent to -flax-vector-conversions=none)
Enable implicit vector bit-casts
.. option:: -flimited-precision=<arg>
.. option:: -flto-jobs=<arg>
Controls the backend parallelism of -flto=thin (default of 0 means the number of threads will be derived from the number of CPUs detected)
.. option:: -flto=<arg>, -flto (equivalent to -flto=full), -flto=auto (equivalent to -flto=full), -flto=jobserver (equivalent to -flto=full)
Set LTO mode to either 'full' or 'thin'
.. option:: -fmacro-backtrace-limit=<arg>
.. option:: -fmacro-prefix-map=<arg>
remap file source paths in predefined preprocessor macros and \_\_builtin\_FILE()
.. option:: -fmath-errno, -fno-math-errno
Require math functions to indicate errors by setting errno
.. option:: -fmax-tokens=<arg>
Max total number of preprocessed tokens for -Wmax-tokens.
.. option:: -fmax-type-align=<arg>
Specify the maximum alignment to enforce on pointers lacking an explicit alignment
.. option:: -fmemory-profile, -fno-memory-profile
Enable heap memory profiling
.. program:: clang1
.. option:: -fmemory-profile=<directory>
.. program:: clang
Enable heap memory profiling and dump results into <directory>
.. option:: -fmerge-all-constants, -fno-merge-all-constants
Allow merging of constants
.. option:: -fmessage-length=<arg>
Format message diagnostics so that they fit within N columns
.. option:: -fminimize-whitespace, -fno-minimize-whitespace
Minimize whitespace when emitting preprocessor output
.. option:: -fmodule-file-deps, -fno-module-file-deps
.. option:: -fmodule-map-file=<file>
Load this module map file
.. option:: -fmodule-name=<name>, -fmodule-implementation-of <arg>
Specify the name of the module to build
.. option:: -fmodules, -fno-modules
Enable the 'modules' language feature
.. option:: -fmodules-decluse, -fno-modules-decluse
Require declaration of modules used within a module
.. option:: -fmodules-ignore-macro=<arg>
Ignore the definition of the given macro when building and loading modules
.. option:: -fmodules-search-all, -fno-modules-search-all
Search even non-imported modules to resolve references
.. option:: -fmodules-strict-decluse
Like -fmodules-decluse but requires all headers to be in modules
.. option:: -fmodules-ts
Enable support for the C++ Modules TS
.. option:: -fmodules-validate-input-files-content
Validate PCM input files based on content if mtime differs
.. option:: -fms-compatibility, -fno-ms-compatibility
Enable full Microsoft Visual C++ compatibility
.. option:: -fms-compatibility-version=<arg>
Dot-separated value representing the Microsoft compiler version number to report in \_MSC\_VER (0 = don't define it (default))
.. option:: -fms-extensions, -fno-ms-extensions
Accept some non-standard constructs supported by the Microsoft compiler
.. option:: -fms-memptr-rep=<arg>
.. option:: -fms-volatile
.. option:: -fmsc-version=<arg>
Microsoft compiler version number to report in \_MSC\_VER (0 = don't define it (default))
.. option:: -fmudflap
.. option:: -fmudflapth
.. option:: -fnested-functions
.. option:: -fnew-alignment=<align>, -fnew-alignment <arg>
Specifies the largest alignment guaranteed by '::operator new(size\_t)'
.. option:: -fnew-infallible, -fno-new-infallible
Enable treating throwing global C++ operator new as always returning valid memory (annotates with \_\_attribute\_\_((returns\_nonnull)) and throw()). This is detectable in source.
.. option:: -fnext-runtime
.. option:: -fno-builtin-<arg>
Disable implicit builtin knowledge of a specific function
.. option:: -fno-elide-type
Do not elide types when printing diagnostics
.. option:: -fno-max-type-align
.. option:: -fno-strict-modules-decluse
.. option:: -fno-temp-file
Directly create compilation output files. This may lead to incorrect incremental builds if the compiler crashes
.. option:: -fno-working-directory
.. option:: -fno\_modules-validate-input-files-content
.. program:: clang1
.. option:: -fno\_pch-validate-input-files-content
.. program:: clang
.. option:: -fnoxray-link-deps
.. option:: -fobjc-abi-version=<arg>
.. option:: -fobjc-arc, -fno-objc-arc
Synthesize retain and release calls for Objective-C pointers
.. option:: -fobjc-arc-exceptions, -fno-objc-arc-exceptions
Use EH-safe code when synthesizing retains and releases in -fobjc-arc
.. option:: -fobjc-convert-messages-to-runtime-calls, -fno-objc-convert-messages-to-runtime-calls
.. option:: -fobjc-disable-direct-methods-for-testing
Ignore attribute objc\_direct so that direct methods can be tested
.. option:: -fobjc-encode-cxx-class-template-spec, -fno-objc-encode-cxx-class-template-spec
Fully encode c++ class template specialization
.. option:: -fobjc-exceptions, -fno-objc-exceptions
Enable Objective-C exceptions
.. option:: -fobjc-infer-related-result-type, -fno-objc-infer-related-result-type
.. option:: -fobjc-legacy-dispatch, -fno-objc-legacy-dispatch
.. option:: -fobjc-link-runtime
.. option:: -fobjc-nonfragile-abi, -fno-objc-nonfragile-abi
.. option:: -fobjc-nonfragile-abi-version=<arg>
.. option:: -fobjc-runtime=<arg>
Specify the target Objective-C runtime kind and version
.. option:: -fobjc-sender-dependent-dispatch
.. option:: -fobjc-weak, -fno-objc-weak
Enable ARC-style weak references in Objective-C
.. option:: -foffload-lto=<arg>, -foffload-lto (equivalent to -foffload-lto=full)
Set LTO mode to either 'full' or 'thin' for offload compilation
.. option:: -fomit-frame-pointer, -fno-omit-frame-pointer
.. option:: -fopenmp, -fno-openmp
Parse OpenMP pragmas and generate parallel code.
.. option:: -fopenmp-extensions, -fno-openmp-extensions
Enable all Clang extensions for OpenMP directives and clauses
.. option:: -fopenmp-simd, -fno-openmp-simd
Emit OpenMP code only for SIMD-based constructs.
.. option:: -fopenmp-target-debug, -fno-openmp-target-debug
Enable debugging in the OpenMP offloading device RTL
.. option:: -fopenmp-target-new-runtime, -fno-openmp-target-new-runtime
Use the new bitcode library for OpenMP offloading
.. option:: -fopenmp-version=<arg>
Set OpenMP version (e.g. 45 for OpenMP 4.5, 50 for OpenMP 5.0). Default value is 50.
.. program:: clang1
.. option:: -fopenmp=<arg>
.. program:: clang
.. option:: -foperator-arrow-depth=<arg>
.. option:: -foperator-names, -fno-operator-names
.. option:: -foptimization-record-file=<file>
Specify the output name of the file containing the optimization remarks. Implies -fsave-optimization-record. On Darwin platforms, this cannot be used with multiple -arch <arch> options.
.. option:: -foptimization-record-passes=<regex>
Only include passes which match a specified regular expression in the generated optimization record (by default, include all passes)
.. option:: -foptimize-sibling-calls, -fno-optimize-sibling-calls
.. option:: -forder-file-instrumentation
Generate instrumented code to collect order file into default.profraw file (overridden by '=' form of option or LLVM\_PROFILE\_FILE env var)
.. option:: -foutput-class-dir=<arg>, --output-class-directory <arg>, --output-class-directory=<arg>
.. option:: -fpack-struct, -fno-pack-struct
.. program:: clang1
.. option:: -fpack-struct=<arg>
.. program:: clang
Specify the default maximum struct packing alignment
.. option:: -fpascal-strings, -fno-pascal-strings, -mpascal-strings
Recognize and construct Pascal-style string literals
.. option:: -fpass-plugin=<dsopath>
Load pass plugin from a dynamic shared object file (only with new pass manager).
.. option:: -fpatchable-function-entry=<N,M>
Generate M NOPs before function entry and N-M NOPs after function entry
.. option:: -fpcc-struct-return
Override the default ABI to return all structs on the stack
.. option:: -fpch-codegen, -fno-pch-codegen
Generate code for uses of this PCH that assumes an explicit object file will be built for the PCH
.. option:: -fpch-debuginfo, -fno-pch-debuginfo
Generate debug info for types in an object file built from this PCH and do not generate them elsewhere
.. option:: -fpch-instantiate-templates, -fno-pch-instantiate-templates
Instantiate templates already while building a PCH
.. option:: -fpch-preprocess
.. option:: -fpch-validate-input-files-content
Validate PCH input files based on content if mtime differs
.. option:: -fpic, -fno-pic
.. option:: -fpie, -fno-pie
.. option:: -fplt, -fno-plt
.. option:: -fplugin=<dsopath>
Load the named plugin (dynamic shared object)
.. option:: -fprebuilt-implicit-modules, -fno-prebuilt-implicit-modules
Look up implicit modules in the prebuilt module path
.. option:: -fpreserve-as-comments, -fno-preserve-as-comments
.. option:: -fproc-stat-report<arg>
Print subprocess statistics
.. program:: clang1
.. option:: -fproc-stat-report=<arg>
.. program:: clang
Save subprocess statistics to the given file
.. option:: -fprofile-arcs, -fno-profile-arcs
.. option:: -fprofile-dir=<arg>
.. option:: -fprofile-exclude-files=<arg>
Instrument only functions from files where names don't match all the regexes separated by a semi-colon
.. option:: -fprofile-filter-files=<arg>
Instrument only functions from files where names match any regex separated by a semi-colon
.. option:: -fprofile-generate, -fno-profile-generate
Generate instrumented code to collect execution counts into default.profraw (overridden by LLVM\_PROFILE\_FILE env var)
.. program:: clang1
.. option:: -fprofile-generate=<directory>
.. program:: clang
Generate instrumented code to collect execution counts into <directory>/default.profraw (overridden by LLVM\_PROFILE\_FILE env var)
.. option:: -fprofile-instr-generate, -fno-profile-instr-generate
Generate instrumented code to collect execution counts into default.profraw file (overridden by '=' form of option or LLVM\_PROFILE\_FILE env var)
.. program:: clang1
.. option:: -fprofile-instr-generate=<file>
.. program:: clang
Generate instrumented code to collect execution counts into <file> (overridden by LLVM\_PROFILE\_FILE env var)
.. option:: -fprofile-instr-use, -fno-profile-instr-use, -fprofile-use
.. program:: clang1
.. option:: -fprofile-instr-use=<arg>
.. program:: clang
Use instrumentation data for profile-guided optimization
.. option:: -fprofile-list=<arg>
Filename defining the list of functions/files to instrument
.. option:: -fprofile-remapping-file=<file>
Use the remappings described in <file> to match the profile data against names in the program
.. option:: -fprofile-sample-accurate, -fauto-profile-accurate, -fno-profile-sample-accurate
Specifies that the sample profile is accurate. If the sample
profile is accurate, callsites without profile samples are marked
as cold. Otherwise, treat callsites without profile samples as if
we have no profile
.. option:: -fprofile-sample-use, -fauto-profile, -fno-profile-sample-use
.. program:: clang1
.. option:: -fprofile-sample-use=<arg>, -fauto-profile=<arg>
.. program:: clang
Enable sample-based profile guided optimizations
.. option:: -fprofile-update=<method>
Set update method of profile counters (atomic,prefer-atomic,single)
.. program:: clang1
.. option:: -fprofile-use=<pathname>
.. program:: clang
Use instrumentation data for profile-guided optimization. If pathname is a directory, it reads from <pathname>/default.profdata. Otherwise, it reads from file <pathname>.
.. option:: -fprotect-parens, -fno-protect-parens
Determines whether the optimizer honors parentheses when floating-point expressions are evaluated
.. option:: -fpseudo-probe-for-profiling, -fno-pseudo-probe-for-profiling
Emit pseudo probes for sample profiling
.. option:: -freciprocal-math, -fno-reciprocal-math
Allow division operations to be reassociated
.. option:: -freg-struct-return
Override the default ABI to return small structs in registers
.. option:: -fregister-global-dtors-with-atexit, -fno-register-global-dtors-with-atexit
Use atexit or \_\_cxa\_atexit to register global destructors
.. option:: -frelaxed-template-template-args, -fno-relaxed-template-template-args
Enable C++17 relaxed template template argument matching
.. option:: -freroll-loops, -fno-reroll-loops
Turn on loop reroller
.. option:: -fretain-comments-from-system-headers
.. option:: -frewrite-imports, -fno-rewrite-imports
.. option:: -frewrite-includes, -fno-rewrite-includes
.. option:: -frewrite-map-file=<arg>
.. option:: -fropi, -fno-ropi
Generate read-only position independent code (ARM only)
.. option:: -frounding-math, -fno-rounding-math
.. option:: -frtti, -fno-rtti
.. option:: -frtti-data, -fno-rtti-data
.. option:: -frwpi, -fno-rwpi
Generate read-write position independent code (ARM only)
.. option:: -fsave-optimization-record, -fno-save-optimization-record
Generate a YAML optimization record file
.. program:: clang1
.. option:: -fsave-optimization-record=<format>
.. program:: clang
Generate an optimization record file in a specific format
.. option:: -fseh-exceptions
Use SEH style exceptions
.. option:: -fsemantic-interposition, -fno-semantic-interposition
.. option:: -fshort-enums, -fno-short-enums
Allocate to an enum type only as many bytes as it needs for the declared range of possible values
.. option:: -fshort-wchar, -fno-short-wchar
Force wchar\_t to be a short unsigned int
.. option:: -fshow-column, -fno-show-column
.. option:: -fshow-overloads=<arg>
Which overload candidates to show when overload resolution fails: best\|all; defaults to all
.. option:: -fshow-source-location, -fno-show-source-location
.. option:: -fsignaling-math, -fno-signaling-math
.. option:: -fsigned-bitfields
.. option:: -fsigned-char, -fno-signed-char, --signed-char
char is signed
.. option:: -fsigned-zeros, -fno-signed-zeros
.. option:: -fsized-deallocation, -fno-sized-deallocation
Enable C++14 sized global deallocation functions
.. option:: -fsjlj-exceptions
Use SjLj style exceptions
.. option:: -fslp-vectorize, -fno-slp-vectorize, -ftree-slp-vectorize
Enable the superword-level parallelism vectorization passes
.. option:: -fspell-checking, -fno-spell-checking
.. option:: -fspell-checking-limit=<arg>
.. option:: -fsplit-dwarf-inlining, -fno-split-dwarf-inlining
Provide minimal debug info in the object/executable to facilitate online symbolication/stack traces in the absence of .dwo/.dwp files when using Split DWARF
.. option:: -fsplit-lto-unit, -fno-split-lto-unit
Enables splitting of the LTO unit
.. option:: -fsplit-machine-functions, -fno-split-machine-functions
Enable late function splitting using profile information (x86 ELF)
.. option:: -fsplit-stack, -fno-split-stack
Use segmented stack
.. option:: -fstack-clash-protection, -fno-stack-clash-protection
Enable stack clash protection
.. option:: -fstack-protector, -fno-stack-protector
Enable stack protectors for some functions vulnerable to stack smashing. This uses a loose heuristic which considers functions vulnerable if they contain a char (or 8bit integer) array or constant sized calls to alloca , which are of greater size than ssp-buffer-size (default: 8 bytes). All variable sized calls to alloca are considered vulnerable. A function with a stack protector has a guard value added to the stack frame that is checked on function exit. The guard value must be positioned in the stack frame such that a buffer overflow from a vulnerable variable will overwrite the guard value before overwriting the function's return address. The reference stack guard value is stored in a global variable.
.. option:: -fstack-protector-all
Enable stack protectors for all functions
.. option:: -fstack-protector-strong
Enable stack protectors for some functions vulnerable to stack smashing. Compared to -fstack-protector, this uses a stronger heuristic that includes functions containing arrays of any size (and any type), as well as any calls to alloca or the taking of an address from a local variable
.. option:: -fstack-size-section, -fno-stack-size-section
Emit section containing metadata on function stack sizes
.. option:: -fstack-usage
Emit .su file containing information on function stack sizes
.. option:: -fstandalone-debug, -fno-limit-debug-info, -fno-standalone-debug
Emit full debug info for all types used by the program
.. option:: -fstrict-aliasing, -fno-strict-aliasing
.. option:: -fstrict-enums, -fno-strict-enums
Enable optimizations based on the strict definition of an enum's value range
.. option:: -fstrict-float-cast-overflow, -fno-strict-float-cast-overflow
Assume that overflowing float-to-int casts are undefined (default)
.. option:: -fstrict-overflow, -fno-strict-overflow
.. option:: -fstrict-return, -fno-strict-return
.. option:: -fstrict-vtable-pointers, -fno-strict-vtable-pointers
Enable optimizations based on the strict rules for overwriting polymorphic C++ objects
.. option:: -fstruct-path-tbaa, -fno-struct-path-tbaa
.. option:: -fswift-async-fp=<option>
Control emission of Swift async extended frame info (option: auto, always, never)
.. option:: -fsymbol-partition=<arg>
.. option:: -ftabstop=<arg>
.. option:: -ftemplate-backtrace-limit=<arg>
.. option:: -ftemplate-depth-<arg>
.. option:: -ftemplate-depth=<arg>
.. option:: -ftest-coverage, -fno-test-coverage
.. option:: -fthin-link-bitcode=<arg>
Write minimized bitcode to <file> for the ThinLTO thin link only
.. option:: -fthinlto-index=<arg>
Perform ThinLTO importing using provided function summary index
.. option:: -fthreadsafe-statics, -fno-threadsafe-statics
.. option:: -ftime-report
.. program:: clang1
.. option:: -ftime-report=<arg>
.. program:: clang
(For new pass manager) "per-pass": one report for each pass; "per-pass-run": one report for each pass invocation
.. option:: -ftime-trace
Turn on time profiler. Generates JSON file based on output filename. Results
can be analyzed with chrome://tracing or `Speedscope App
<https://www.speedscope.app>`_ for flamegraph visualization.
.. option:: -ftime-trace-granularity=<arg>
Minimum time granularity (in microseconds) traced by time profiler
.. option:: -ftls-model=<arg>
.. option:: -ftrap-function=<arg>
Issue call to specified function rather than a trap instruction
.. option:: -ftrapping-math, -fno-trapping-math
.. option:: -ftrapv
Trap on integer overflow
.. option:: -ftrapv-handler <arg>
.. program:: clang1
.. option:: -ftrapv-handler=<function name>
.. program:: clang
Specify the function to be called on overflow
.. option:: -ftrigraphs, -fno-trigraphs, -trigraphs, --trigraphs
Process trigraph sequences
.. option:: -ftrivial-auto-var-init-stop-after=<arg>
Stop initializing trivial automatic stack variables after the specified number of instances
.. option:: -ftrivial-auto-var-init=<arg>
Initialize trivial automatic stack variables: uninitialized (default) \| pattern
.. option:: -funique-basic-block-section-names, -fno-unique-basic-block-section-names
Use unique names for basic block sections (ELF Only)
.. option:: -funique-internal-linkage-names, -fno-unique-internal-linkage-names
Uniqueify Internal Linkage Symbol Names by appending the MD5 hash of the module path
.. option:: -funique-section-names, -fno-unique-section-names
.. option:: -funit-at-a-time, -fno-unit-at-a-time
.. option:: -funroll-loops, -fno-unroll-loops
Turn on loop unroller
.. option:: -funsafe-math-optimizations, -fno-unsafe-math-optimizations
.. option:: -funsigned-bitfields
.. option:: -funsigned-char, -fno-unsigned-char, --unsigned-char
.. option:: -funwind-tables, -fno-unwind-tables
.. option:: -fuse-cxa-atexit, -fno-use-cxa-atexit
.. option:: -fuse-init-array, -fno-use-init-array
.. option:: -fuse-ld=<arg>
.. option:: -fuse-line-directives, -fno-use-line-directives
Use #line in preprocessed output
.. option:: -fvalidate-ast-input-files-content
Compute and store the hash of input files used to build an AST. Files with mismatching mtime's are considered valid if both contents is identical
.. option:: -fveclib=<arg>
Use the given vector functions library
.. option:: -fvectorize, -fno-vectorize, -ftree-vectorize
Enable the loop vectorization passes
.. option:: -fverbose-asm, -dA, -fno-verbose-asm
Generate verbose assembly output
.. option:: -fvirtual-function-elimination, -fno-virtual-function-elimination
Enables dead virtual function elimination optimization. Requires -flto=full
.. option:: -fvisibility-dllexport=<arg>
The visibility for dllexport definitions \[-fvisibility-from-dllstorageclass\]
.. option:: -fvisibility-externs-dllimport=<arg>
The visibility for dllimport external declarations \[-fvisibility-from-dllstorageclass\]
.. option:: -fvisibility-externs-nodllstorageclass=<arg>
The visibility for external declarations without an explicit DLL dllstorageclass \[-fvisibility-from-dllstorageclass\]
.. option:: -fvisibility-from-dllstorageclass, -fno-visibility-from-dllstorageclass
Set the visibility of symbols in the generated code from their DLL storage class
.. option:: -fvisibility-global-new-delete-hidden
Give global C++ operator new and delete declarations hidden visibility
.. option:: -fvisibility-inlines-hidden, -fno-visibility-inlines-hidden
Give inline C++ member functions hidden visibility by default
.. option:: -fvisibility-inlines-hidden-static-local-var, -fno-visibility-inlines-hidden-static-local-var
When -fvisibility-inlines-hidden is enabled, static variables in inline C++ member functions will also be given hidden visibility by default
.. option:: -fvisibility-ms-compat
Give global types 'default' visibility and global functions and variables 'hidden' visibility by default
.. option:: -fvisibility-nodllstorageclass=<arg>
The visibility for defintiions without an explicit DLL export class \[-fvisibility-from-dllstorageclass\]
.. option:: -fvisibility=<arg>
Set the default symbol visibility for all global declarations
.. option:: -fwasm-exceptions
Use WebAssembly style exceptions
.. option:: -fwhole-program-vtables, -fno-whole-program-vtables
Enables whole-program vtable optimization. Requires -flto
.. option:: -fwrapv, -fno-wrapv
Treat signed integer overflow as two's complement
.. option:: -fwritable-strings
Store string literals as writable data
.. option:: -fxl-pragma-pack, -fno-xl-pragma-pack
Enable IBM XL #pragma pack handling
.. option:: -fxray-always-emit-customevents, -fno-xray-always-emit-customevents
Always emit \_\_xray\_customevent(...) calls even if the containing function is not always instrumented
.. option:: -fxray-always-emit-typedevents, -fno-xray-always-emit-typedevents
Always emit \_\_xray\_typedevent(...) calls even if the containing function is not always instrumented
.. option:: -fxray-always-instrument=<arg>
DEPRECATED: Filename defining the whitelist for imbuing the 'always instrument' XRay attribute.
.. option:: -fxray-attr-list=<arg>
Filename defining the list of functions/types for imbuing XRay attributes.
.. option:: -fxray-function-groups=<arg>
Only instrument 1 of N groups
.. option:: -fxray-function-index, -fno-xray-function-index
.. option:: -fxray-ignore-loops, -fno-xray-ignore-loops
Don't instrument functions with loops unless they also meet the minimum function size
.. option:: -fxray-instruction-threshold<arg>
.. program:: clang1
.. option:: -fxray-instruction-threshold=<arg>
.. program:: clang
Sets the minimum function size to instrument with XRay
.. option:: -fxray-instrument, -fno-xray-instrument
Generate XRay instrumentation sleds on function entry and exit
.. option:: -fxray-instrumentation-bundle=<arg>
Select which XRay instrumentation points to emit. Options: all, none, function-entry, function-exit, function, custom. Default is 'all'. 'function' includes both 'function-entry' and 'function-exit'.
.. option:: -fxray-link-deps
Tells clang to add the link dependencies for XRay.
.. option:: -fxray-modes=<arg>
List of modes to link in by default into XRay instrumented binaries.
.. option:: -fxray-never-instrument=<arg>
DEPRECATED: Filename defining the whitelist for imbuing the 'never instrument' XRay attribute.
.. option:: -fxray-selected-function-group=<arg>
When using -fxray-function-groups, select which group of functions to instrument. Valid range is 0 to fxray-function-groups - 1
.. option:: -fzero-initialized-in-bss, -fno-zero-initialized-in-bss
.. option:: -fzvector, -fno-zvector, -mzvector
Enable System z vector language extension
.. option:: --gpu-bundle-output, --no-gpu-bundle-output
Bundle output files of HIP device compilation
.. option:: -pedantic, --pedantic, -no-pedantic, --no-pedantic
Warn on language extensions
.. option:: -pedantic-errors, --pedantic-errors
OpenCL flags
------------
.. option:: -cl-denorms-are-zero
OpenCL only. Allow denormals to be flushed to zero.
.. option:: -cl-fast-relaxed-math
OpenCL only. Sets -cl-finite-math-only and -cl-unsafe-math-optimizations, and defines \_\_FAST\_RELAXED\_MATH\_\_.
.. option:: -cl-finite-math-only
OpenCL only. Allow floating-point optimizations that assume arguments and results are not NaNs or +-Inf.
.. option:: -cl-fp32-correctly-rounded-divide-sqrt
OpenCL only. Specify that single precision floating-point divide and sqrt used in the program source are correctly rounded.
.. option:: -cl-kernel-arg-info
OpenCL only. Generate kernel argument metadata.
.. option:: -cl-mad-enable
OpenCL only. Allow use of less precise MAD computations in the generated binary.
.. option:: -cl-no-signed-zeros
OpenCL only. Allow use of less precise no signed zeros computations in the generated binary.
.. option:: -cl-no-stdinc
OpenCL only. Disables all standard includes containing non-native compiler types and functions.
.. option:: -cl-opt-disable
OpenCL only. This option disables all optimizations. By default optimizations are enabled.
.. option:: -cl-single-precision-constant
OpenCL only. Treat double precision floating-point constant as single precision constant.
.. option:: -cl-std=<arg>
OpenCL language standard to compile for.
.. option:: -cl-strict-aliasing
OpenCL only. This option is added for compatibility with OpenCL 1.0.
.. option:: -cl-uniform-work-group-size
OpenCL only. Defines that the global work-size be a multiple of the work-group size specified to clEnqueueNDRangeKernel
.. option:: -cl-unsafe-math-optimizations
OpenCL only. Allow unsafe floating-point optimizations. Also implies -cl-no-signed-zeros and -cl-mad-enable.
SYCL flags
----------
.. option:: -fsycl, -fno-sycl
Enables SYCL kernels compilation for device
.. option:: -sycl-std=<arg>
SYCL language standard to compile for.
Target-dependent compilation options
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. option:: -G<size>, -G=<arg>, -msmall-data-limit=<arg>, -msmall-data-threshold=<arg>
Put objects of at most <size> bytes into small data section (MIPS / Hexagon)
.. option:: -ffixed-x1
Reserve the x1 register (AArch64/RISC-V only)
.. option:: -ffixed-x10
Reserve the x10 register (AArch64/RISC-V only)
.. option:: -ffixed-x11
Reserve the x11 register (AArch64/RISC-V only)
.. option:: -ffixed-x12
Reserve the x12 register (AArch64/RISC-V only)
.. option:: -ffixed-x13
Reserve the x13 register (AArch64/RISC-V only)
.. option:: -ffixed-x14
Reserve the x14 register (AArch64/RISC-V only)
.. option:: -ffixed-x15
Reserve the x15 register (AArch64/RISC-V only)
.. option:: -ffixed-x16
Reserve the x16 register (AArch64/RISC-V only)
.. option:: -ffixed-x17
Reserve the x17 register (AArch64/RISC-V only)
.. option:: -ffixed-x18
Reserve the x18 register (AArch64/RISC-V only)
.. option:: -ffixed-x19
Reserve the x19 register (AArch64/RISC-V only)
.. option:: -ffixed-x2
Reserve the x2 register (AArch64/RISC-V only)
.. option:: -ffixed-x20
Reserve the x20 register (AArch64/RISC-V only)
.. option:: -ffixed-x21
Reserve the x21 register (AArch64/RISC-V only)
.. option:: -ffixed-x22
Reserve the x22 register (AArch64/RISC-V only)
.. option:: -ffixed-x23
Reserve the x23 register (AArch64/RISC-V only)
.. option:: -ffixed-x24
Reserve the x24 register (AArch64/RISC-V only)
.. option:: -ffixed-x25
Reserve the x25 register (AArch64/RISC-V only)
.. option:: -ffixed-x26
Reserve the x26 register (AArch64/RISC-V only)
.. option:: -ffixed-x27
Reserve the x27 register (AArch64/RISC-V only)
.. option:: -ffixed-x28
Reserve the x28 register (AArch64/RISC-V only)
.. option:: -ffixed-x29
Reserve the x29 register (AArch64/RISC-V only)
.. option:: -ffixed-x3
Reserve the x3 register (AArch64/RISC-V only)
.. option:: -ffixed-x30
Reserve the x30 register (AArch64/RISC-V only)
.. option:: -ffixed-x31
Reserve the x31 register (AArch64/RISC-V only)
.. option:: -ffixed-x4
Reserve the x4 register (AArch64/RISC-V only)
.. option:: -ffixed-x5
Reserve the x5 register (AArch64/RISC-V only)
.. option:: -ffixed-x6
Reserve the x6 register (AArch64/RISC-V only)
.. option:: -ffixed-x7
Reserve the x7 register (AArch64/RISC-V only)
.. option:: -ffixed-x8
Reserve the x8 register (AArch64/RISC-V only)
.. option:: -ffixed-x9
Reserve the x9 register (AArch64/RISC-V only)
.. option:: -ffuchsia-api-level=<arg>
Set Fuchsia API level
.. option:: -inline-asm=<arg>
.. option:: -m16
.. option:: -m32
.. option:: -m64
.. option:: -mabi=<arg>
.. program:: clang1
.. option:: -mabi=vec-default
.. program:: clang
Enable the default Altivec ABI on AIX (AIX only). Uses only volatile vector registers.
.. program:: clang2
.. option:: -mabi=vec-extabi
.. program:: clang
Enable the extended Altivec ABI on AIX (AIX only). Uses volatile and nonvolatile vector registers
.. option:: -maix-struct-return
Return all structs in memory (PPC32 only)
.. option:: -malign-branch-boundary=<arg>
Specify the boundary's size to align branches
.. option:: -malign-branch=<arg1>,<arg2>...
Specify types of branches to align
.. option:: -malign-double
Align doubles to two words in structs (x86 only)
.. option:: -mamdgpu-ieee, -mno-amdgpu-ieee
Sets the IEEE bit in the expected default floating point mode register. Floating point opcodes that support exception flag gathering quiet and propagate signaling NaN inputs per IEEE 754-2008. This option changes the ABI. (AMDGPU only)
.. option:: -march=<arg>
.. option:: -masm=<arg>
.. option:: -mbackchain, -mno-backchain
Link stack frames through backchain on System Z
.. option:: -mbranches-within-32B-boundaries
Align selected branches (fused, jcc, jmp) within 32-byte boundary
.. option:: -mcmodel=<arg>, -mcmodel=medany (equivalent to -mcmodel=medium), -mcmodel=medlow (equivalent to -mcmodel=small)
.. option:: -mcode-object-v3, -mno-code-object-v3
Legacy option to specify code object ABI V3 (AMDGPU only)
.. option:: -mcode-object-version=<version>
Specify code object ABI version. Defaults to 3. (AMDGPU only)
.. option:: -mconsole<arg>
.. program:: clang1
.. option:: -mcpu=<arg>, -mv5 (equivalent to -mcpu=hexagonv5), -mv55 (equivalent to -mcpu=hexagonv55), -mv60 (equivalent to -mcpu=hexagonv60), -mv62 (equivalent to -mcpu=hexagonv62), -mv65 (equivalent to -mcpu=hexagonv65), -mv66 (equivalent to -mcpu=hexagonv66), -mv67 (equivalent to -mcpu=hexagonv67), -mv67t (equivalent to -mcpu=hexagonv67t), -mv68 (equivalent to -mcpu=hexagonv68), -mv69 (equivalent to -mcpu=hexagonv69)
.. program:: clang
.. option:: -mcrc, -mno-crc
Allow use of CRC instructions (ARM/Mips only)
.. option:: -mdefault-build-attributes<arg>, -mno-default-build-attributes<arg>
.. option:: -mdll<arg>
.. option:: -mdouble=<arg>
Force double to be 32 bits or 64 bits
.. option:: -mdynamic-no-pic<arg>
.. option:: -meabi <arg>
Set EABI type, e.g. 4, 5 or gnu (default depends on triple)
.. option:: -menable-experimental-extensions
Enable use of experimental RISC-V extensions.
.. option:: -mfentry
Insert calls to fentry at function entry (x86/SystemZ only)
.. option:: -mfloat-abi=<arg>
.. option:: -mfpmath=<arg>
.. option:: -mfpu=<arg>
.. option:: -mgeneral-regs-only
Generate code which only uses the general purpose registers (AArch64/x86 only)
.. option:: -mglobal-merge, -mno-global-merge
Enable merging of globals
.. option:: -mhard-float
.. option:: -mhwdiv=<arg>, --mhwdiv <arg>, --mhwdiv=<arg>
.. option:: -mhwmult=<arg>
.. option:: -miamcu, -mno-iamcu
Use Intel MCU ABI
.. option:: -mignore-xcoff-visibility
Not emit the visibility attribute for asm in AIX OS or give all symbols 'unspecified' visibility in XCOFF object file
.. option:: -mimplicit-float, -mno-implicit-float
.. option:: -mimplicit-it=<arg>
.. option:: -mincremental-linker-compatible, -mno-incremental-linker-compatible
(integrated-as) Emit an object file which can be used with an incremental linker
.. option:: -miphoneos-version-min=<arg>, -mios-version-min=<arg>
.. option:: -mkernel
.. option:: -mlong-calls, -mno-long-calls
Generate branches with extended addressability, usually via indirect jumps.
.. option:: -mlvi-cfi, -mno-lvi-cfi
Enable only control-flow mitigations for Load Value Injection (LVI)
.. option:: -mlvi-hardening, -mno-lvi-hardening
Enable all mitigations for Load Value Injection (LVI)
.. option:: -mmacosx-version-min=<arg>, -mmacos-version-min=<arg>
Set Mac OS X deployment target
.. option:: -mmcu=<arg>
.. option:: -mms-bitfields, -mno-ms-bitfields
Set the default structure layout to be compatible with the Microsoft compiler standard
.. option:: -mnop-mcount
Generate mcount/\_\_fentry\_\_ calls as nops. To activate they need to be patched in.
.. option:: -momit-leaf-frame-pointer, -mno-omit-leaf-frame-pointer
Omit frame pointer setup for leaf functions
.. option:: -moslib=<arg>
.. option:: -mpacked-stack, -mno-packed-stack
Use packed stack layout (SystemZ only).
.. option:: -mpad-max-prefix-size=<arg>
Specify maximum number of prefixes to use for padding
.. option:: -mprefer-vector-width=<arg>
Specifies preferred vector width for auto-vectorization. Defaults to 'none' which allows target specific decisions.
.. option:: -mqdsp6-compat
Enable hexagon-qdsp6 backward compatibility
.. option:: -mrecip
.. program:: clang1
.. option:: -mrecip=<arg1>,<arg2>...
.. program:: clang
.. option:: -mrecord-mcount
Generate a \_\_mcount\_loc section entry for each \_\_fentry\_\_ call.
.. option:: -mred-zone, -mno-red-zone
.. option:: -mregparm=<arg>
.. option:: -mrelax, -mno-relax
Enable linker relaxation
.. option:: -mrelax-all, -mno-relax-all
(integrated-as) Relax all machine instructions
.. option:: -mretpoline, -mno-retpoline
.. option:: -mrtd, -mno-rtd
Make StdCall calling convention the default
.. option:: -mseses, -mno-seses
Enable speculative execution side effect suppression (SESES). Includes LVI control flow integrity mitigations
.. option:: -msign-return-address=<arg>
Select return address signing scope
.. option:: -msim
.. option:: -mskip-rax-setup, -mno-skip-rax-setup
Skip setting up RAX register when passing variable arguments (x86 only)
.. option:: -msoft-float, -mno-soft-float
Use software floating point
.. option:: -mspeculative-load-hardening, -mno-speculative-load-hardening
.. option:: -mstack-alignment=<arg>
Set the stack alignment
.. option:: -mstack-arg-probe, -mno-stack-arg-probe
Enable stack probes
.. option:: -mstack-probe-size=<arg>
Set the stack probe size
.. option:: -mstack-protector-guard-offset=<arg>
Use the given offset for addressing the stack-protector guard
.. option:: -mstack-protector-guard-reg=<arg>
Use the given reg for addressing the stack-protector guard
.. option:: -mstack-protector-guard=<arg>
Use the given guard (global, tls) for addressing the stack-protector guard
.. option:: -mstackrealign, -mno-stackrealign
Force realign the stack at entry to every function
.. option:: -msvr4-struct-return
Return small structs in registers (PPC32 only)
.. option:: -mtargetos=<arg>
Set the deployment target to be the specified OS and OS version
.. option:: -mthread-model <arg>
The thread model to use, e.g. posix, single (posix by default)
.. option:: -mthreads<arg>
.. option:: -mthumb, -mno-thumb
.. option:: -mtls-direct-seg-refs, -mno-tls-direct-seg-refs
Enable direct TLS access through segment registers (default)
.. option:: -mtls-size=<arg>
Specify bit size of immediate TLS offsets (AArch64 ELF only): 12 (for 4KB) \| 24 (for 16MB, default) \| 32 (for 4GB) \| 48 (for 256TB, needs -mcmodel=large)
.. program:: clang1
.. option:: -mtune=<arg>
.. program:: clang
Only supported on X86 and RISC-V. Otherwise accepted for compatibility with GCC.
.. option:: -mtvos-version-min=<arg>, -mappletvos-version-min=<arg>
.. option:: -municode<arg>
.. option:: -munsafe-fp-atomics, -mno-unsafe-fp-atomics
Enable unsafe floating point atomic instructions (AMDGPU only)
.. option:: -mvx, -mno-vx
.. option:: -mwarn-nonportable-cfstrings, -mno-warn-nonportable-cfstrings
.. option:: -mwatchos-version-min=<arg>
.. option:: -mwavefrontsize64, -mno-wavefrontsize64
Specify wavefront size 64 mode (AMDGPU only)
.. option:: -mwindows<arg>
.. option:: -mx32
AARCH64
-------
.. option:: -fcall-saved-x10
Make the x10 register call-saved (AArch64 only)
.. option:: -fcall-saved-x11
Make the x11 register call-saved (AArch64 only)
.. option:: -fcall-saved-x12
Make the x12 register call-saved (AArch64 only)
.. option:: -fcall-saved-x13
Make the x13 register call-saved (AArch64 only)
.. option:: -fcall-saved-x14
Make the x14 register call-saved (AArch64 only)
.. option:: -fcall-saved-x15
Make the x15 register call-saved (AArch64 only)
.. option:: -fcall-saved-x18
Make the x18 register call-saved (AArch64 only)
.. option:: -fcall-saved-x8
Make the x8 register call-saved (AArch64 only)
.. option:: -fcall-saved-x9
Make the x9 register call-saved (AArch64 only)
.. option:: -mfix-cortex-a53-835769, -mno-fix-cortex-a53-835769
Workaround Cortex-A53 erratum 835769 (AArch64 only)
.. option:: -mmark-bti-property
Add .note.gnu.property with BTI to assembly files (AArch64 only)
.. option:: -msve-vector-bits=<arg>
Specify the size in bits of an SVE vector register. Defaults to the vector length agnostic value of "scalable". (AArch64 only)
.. option:: -mvscale-max=<arg>
Specify the vscale maximum. Defaults to the vector length agnostic value of "0". (AArch64 only)
.. option:: -mvscale-min=<arg>
Specify the vscale minimum. Defaults to "1". (AArch64 only)
AMDGPU
------
.. option:: -mcumode, -mno-cumode
Specify CU wavefront execution mode (AMDGPU only)
.. option:: -mtgsplit, -mno-tgsplit
Enable threadgroup split execution mode (AMDGPU only)
ARM
---
.. option:: -faapcs-bitfield-load
Follows the AAPCS standard that all volatile bit-field write generates at least one load. (ARM only).
.. option:: -faapcs-bitfield-width, -fno-aapcs-bitfield-width
Follow the AAPCS standard requirement stating that volatile bit-field width is dictated by the field container type. (ARM only).
.. option:: -ffixed-r9
Reserve the r9 register (ARM only)
.. option:: -mcmse
Allow use of CMSE (Armv8-M Security Extensions)
.. option:: -mexecute-only, -mno-execute-only, -mpure-code
Disallow generation of data access to code sections (ARM only)
.. option:: -mfix-cmse-cve-2021-35465, -mno-fix-cmse-cve-2021-35465
Work around VLLDM erratum CVE-2021-35465 (ARM only)
.. option:: -mno-bti-at-return-twice
Do not add a BTI instruction after a setjmp or other return-twice construct (AArch32/AArch64 only)
.. option:: -mno-movt
Disallow use of movt/movw pairs (ARM only)
.. option:: -mno-neg-immediates
Disallow converting instructions with negative immediates to their negation or inversion.
.. option:: -mnocrc
Disallow use of CRC instructions (ARM only)
.. option:: -mrestrict-it, -mno-restrict-it
Disallow generation of deprecated IT blocks for ARMv8. It is on by default for ARMv8 Thumb mode.
.. option:: -mtp=<arg>
Thread pointer access method (AArch32/AArch64 only)
.. option:: -munaligned-access, -mno-unaligned-access
Allow memory accesses to be unaligned (AArch32/AArch64 only)
Hexagon
-------
.. option:: -mhvx-ieee-fp, -mno-hvx-ieee-fp
Enable Hexagon HVX IEEE floating-point
.. option:: -mieee-rnd-near
.. option:: -mmemops, -mno-memops
Enable generation of memop instructions
.. option:: -mnvj, -mno-nvj
Enable generation of new-value jumps
.. option:: -mnvs, -mno-nvs
Enable generation of new-value stores
.. option:: -mpackets, -mno-packets
Enable generation of instruction packets
Hexagon
-------
.. option:: -mhvx, -mno-hvx
Enable Hexagon Vector eXtensions
.. option:: -mhvx-length=<arg>
Set Hexagon Vector Length
.. option:: -mhvx-qfloat, -mno-hvx-qfloat
Enable Hexagon HVX QFloat instructions
.. program:: clang1
.. option:: -mhvx=<arg>
.. program:: clang
Enable Hexagon Vector eXtensions
M68k
----
.. option:: -ffixed-a0
Reserve the a0 register (M68k only)
.. option:: -ffixed-a1
Reserve the a1 register (M68k only)
.. option:: -ffixed-a2
Reserve the a2 register (M68k only)
.. option:: -ffixed-a3
Reserve the a3 register (M68k only)
.. option:: -ffixed-a4
Reserve the a4 register (M68k only)
.. option:: -ffixed-a5
Reserve the a5 register (M68k only)
.. option:: -ffixed-a6
Reserve the a6 register (M68k only)
.. option:: -ffixed-d0
Reserve the d0 register (M68k only)
.. option:: -ffixed-d1
Reserve the d1 register (M68k only)
.. option:: -ffixed-d2
Reserve the d2 register (M68k only)
.. option:: -ffixed-d3
Reserve the d3 register (M68k only)
.. option:: -ffixed-d4
Reserve the d4 register (M68k only)
.. option:: -ffixed-d5
Reserve the d5 register (M68k only)
.. option:: -ffixed-d6
Reserve the d6 register (M68k only)
.. option:: -ffixed-d7
Reserve the d7 register (M68k only)
.. option:: -m68000
.. option:: -m68010
.. option:: -m68020
.. option:: -m68030
.. option:: -m68040
.. option:: -m68060
MIPS
----
.. option:: -mabicalls, -mno-abicalls
Enable SVR4-style position-independent code (Mips only)
.. option:: -mabs=<arg>
.. option:: -mcheck-zero-division, -mno-check-zero-division
.. option:: -mcompact-branches=<arg>
.. option:: -mdouble-float
.. option:: -mdsp, -mno-dsp
.. option:: -mdspr2, -mno-dspr2
.. option:: -membedded-data, -mno-embedded-data
Place constants in the .rodata section instead of the .sdata section even if they meet the -G <size> threshold (MIPS)
.. option:: -mextern-sdata, -mno-extern-sdata
Assume that externally defined data is in the small data if it meets the -G <size> threshold (MIPS)
.. option:: -mfix4300
.. option:: -mfp32
Use 32-bit floating point registers (MIPS only)
.. option:: -mfp64
Use 64-bit floating point registers (MIPS only)
.. option:: -mginv, -mno-ginv
.. option:: -mgpopt, -mno-gpopt
Use GP relative accesses for symbols known to be in a small data section (MIPS)
.. option:: -mindirect-jump=<arg>
Change indirect jump instructions to inhibit speculation
.. option:: -mips16
.. option:: -mldc1-sdc1, -mno-ldc1-sdc1
.. option:: -mlocal-sdata, -mno-local-sdata
Extend the -G behaviour to object local data (MIPS)
.. option:: -mmadd4, -mno-madd4
Enable the generation of 4-operand madd.s, madd.d and related instructions.
.. option:: -mmicromips, -mno-micromips
.. option:: -mmsa, -mno-msa
Enable MSA ASE (MIPS only)
.. option:: -mmt, -mno-mt
Enable MT ASE (MIPS only)
.. option:: -mnan=<arg>
.. option:: -mno-mips16
.. option:: -msingle-float
.. option:: -mvirt, -mno-virt
.. option:: -mxgot, -mno-xgot
PowerPC
-------
.. option:: -maltivec, -mno-altivec
.. option:: -mcmpb, -mno-cmpb
.. option:: -mcrbits, -mno-crbits
.. option:: -mcrypto, -mno-crypto
.. option:: -mdirect-move, -mno-direct-move
.. option:: -mefpu2
.. option:: -mfloat128, -mno-float128
.. option:: -mfprnd, -mno-fprnd
.. option:: -mhtm, -mno-htm
.. option:: -minvariant-function-descriptors, -mno-invariant-function-descriptors
.. option:: -misel, -mno-isel
.. option:: -mlongcall, -mno-longcall
.. option:: -mmfocrf, -mmfcrf, -mno-mfocrf
.. option:: -mmma, -mno-mma
.. option:: -mpaired-vector-memops, -mno-paired-vector-memops
.. option:: -mpcrel, -mno-pcrel
.. option:: -mpopcntd, -mno-popcntd
.. option:: -mpower10-vector, -mno-power10-vector
.. option:: -mpower8-vector, -mno-power8-vector
.. option:: -mpower9-vector, -mno-power9-vector
.. option:: -mprefixed, -mno-prefixed
.. option:: -mprivileged
.. option:: -mrop-protect
.. option:: -msecure-plt
.. option:: -mspe, -mno-spe
.. option:: -mvsx, -mno-vsx
WebAssembly
-----------
.. option:: -matomics, -mno-atomics
.. option:: -mbulk-memory, -mno-bulk-memory
.. option:: -mexception-handling, -mno-exception-handling
.. option:: -mmultivalue, -mno-multivalue
.. option:: -mmutable-globals, -mno-mutable-globals
.. option:: -mnontrapping-fptoint, -mno-nontrapping-fptoint
.. option:: -mreference-types, -mno-reference-types
.. option:: -mrelaxed-simd, -mno-relaxed-simd
.. option:: -msign-ext, -mno-sign-ext
.. option:: -msimd128, -mno-simd128
.. option:: -mtail-call, -mno-tail-call
WebAssembly Driver
------------------
.. option:: -mexec-model=<arg>
Execution model (WebAssembly only)
X86
---
.. option:: -m3dnow, -mno-3dnow
.. option:: -m3dnowa, -mno-3dnowa
.. option:: -madx, -mno-adx
.. option:: -maes, -mno-aes
.. option:: -mamx-bf16, -mno-amx-bf16
.. option:: -mamx-int8, -mno-amx-int8
.. option:: -mamx-tile, -mno-amx-tile
.. option:: -mavx, -mno-avx
.. option:: -mavx2, -mno-avx2
.. option:: -mavx512bf16, -mno-avx512bf16
.. option:: -mavx512bitalg, -mno-avx512bitalg
.. option:: -mavx512bw, -mno-avx512bw
.. option:: -mavx512cd, -mno-avx512cd
.. option:: -mavx512dq, -mno-avx512dq
.. option:: -mavx512er, -mno-avx512er
.. option:: -mavx512f, -mno-avx512f
.. option:: -mavx512fp16, -mno-avx512fp16
.. option:: -mavx512ifma, -mno-avx512ifma
.. option:: -mavx512pf, -mno-avx512pf
.. option:: -mavx512vbmi, -mno-avx512vbmi
.. option:: -mavx512vbmi2, -mno-avx512vbmi2
.. option:: -mavx512vl, -mno-avx512vl
.. option:: -mavx512vnni, -mno-avx512vnni
.. option:: -mavx512vp2intersect, -mno-avx512vp2intersect
.. option:: -mavx512vpopcntdq, -mno-avx512vpopcntdq
.. option:: -mavxvnni, -mno-avxvnni
.. option:: -mbmi, -mno-bmi
.. option:: -mbmi2, -mno-bmi2
.. option:: -mcldemote, -mno-cldemote
.. option:: -mclflushopt, -mno-clflushopt
.. option:: -mclwb, -mno-clwb
.. option:: -mclzero, -mno-clzero
.. option:: -mcrc32, -mno-crc32
.. option:: -mcx16, -mno-cx16
.. option:: -menqcmd, -mno-enqcmd
.. option:: -mf16c, -mno-f16c
.. option:: -mfma, -mno-fma
.. option:: -mfma4, -mno-fma4
.. option:: -mfsgsbase, -mno-fsgsbase
.. option:: -mfxsr, -mno-fxsr
.. option:: -mgfni, -mno-gfni
.. option:: -mhreset, -mno-hreset
.. option:: -minvpcid, -mno-invpcid
.. option:: -mkl, -mno-kl
.. option:: -mlwp, -mno-lwp
.. option:: -mlzcnt, -mno-lzcnt
.. option:: -mmmx, -mno-mmx
.. option:: -mmovbe, -mno-movbe
.. option:: -mmovdir64b, -mno-movdir64b
.. option:: -mmovdiri, -mno-movdiri
.. option:: -mmwaitx, -mno-mwaitx
.. option:: -mpclmul, -mno-pclmul
.. option:: -mpconfig, -mno-pconfig
.. option:: -mpku, -mno-pku
.. option:: -mpopcnt, -mno-popcnt
.. option:: -mprefetchwt1, -mno-prefetchwt1
.. option:: -mprfchw, -mno-prfchw
.. option:: -mptwrite, -mno-ptwrite
.. option:: -mrdpid, -mno-rdpid
.. option:: -mrdrnd, -mno-rdrnd
.. option:: -mrdseed, -mno-rdseed
.. option:: -mretpoline-external-thunk, -mno-retpoline-external-thunk
.. option:: -mrtm, -mno-rtm
.. option:: -msahf, -mno-sahf
.. option:: -mserialize, -mno-serialize
.. option:: -msgx, -mno-sgx
.. option:: -msha, -mno-sha
.. option:: -mshstk, -mno-shstk
.. option:: -msse, -mno-sse
.. option:: -msse2, -mno-sse2
.. option:: -msse3, -mno-sse3
.. option:: -msse4.1, -mno-sse4.1
.. program:: clang1
.. option:: -msse4.2, -mno-sse4.2, -msse4
.. program:: clang
.. option:: -msse4a, -mno-sse4a
.. option:: -mssse3, -mno-ssse3
.. option:: -mtbm, -mno-tbm
.. option:: -mtsxldtrk, -mno-tsxldtrk
.. option:: -muintr, -mno-uintr
.. option:: -mvaes, -mno-vaes
.. option:: -mvpclmulqdq, -mno-vpclmulqdq
.. option:: -mvzeroupper, -mno-vzeroupper
.. option:: -mwaitpkg, -mno-waitpkg
.. option:: -mwbnoinvd, -mno-wbnoinvd
.. option:: -mwidekl, -mno-widekl
.. option:: -mx87, -m80387, -mno-x87
.. option:: -mxop, -mno-xop
.. option:: -mxsave, -mno-xsave
.. option:: -mxsavec, -mno-xsavec
.. option:: -mxsaveopt, -mno-xsaveopt
.. option:: -mxsaves, -mno-xsaves
RISCV
-----
.. option:: -msave-restore, -mno-save-restore
Enable using library calls for save and restore
Long double flags
-----------------
Selects the long double implementation
.. option:: -mlong-double-128
Force long double to be 128 bits
.. option:: -mlong-double-64
Force long double to be 64 bits
.. option:: -mlong-double-80
Force long double to be 80 bits, padded to 128 bits for storage
Optimization level
~~~~~~~~~~~~~~~~~~
Flags controlling how much optimization should be performed.
.. option:: -O<arg>, -O (equivalent to -O1), --optimize, --optimize=<arg>
.. option:: -Ofast<arg>
Debug information generation
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Flags controlling how much and what kind of debug information should be
generated.
Kind and level of debug information
-----------------------------------
.. option:: -g, --debug, --debug=<arg>
Generate source-level debug information
.. option:: -gdwarf
Generate source-level debug information with the default dwarf version
.. option:: -gdwarf-2
Generate source-level debug information with dwarf version 2
.. option:: -gdwarf-3
Generate source-level debug information with dwarf version 3
.. option:: -gdwarf-4
Generate source-level debug information with dwarf version 4
.. option:: -gdwarf-5
Generate source-level debug information with dwarf version 5
.. option:: -gdwarf32
Enables DWARF32 format for ELF binaries, if debug information emission is enabled.
.. option:: -gdwarf64
Enables DWARF64 format for ELF binaries, if debug information emission is enabled.
.. option:: -gfull
.. option:: -ginline-line-tables, -gno-inline-line-tables
.. option:: -gused
Debug level
___________
.. option:: -g0
.. option:: -g2
.. option:: -g3
.. option:: -ggdb0
.. option:: -ggdb1
.. option:: -ggdb2
.. option:: -ggdb3
.. option:: -gline-directives-only
Emit debug line info directives only
.. option:: -gline-tables-only, -g1, -gmlt
Emit debug line number tables only
.. option:: -gmodules
Generate debug info with external references to clang modules or precompiled headers
Debugger to tune debug information for
______________________________________
.. option:: -gdbx
.. option:: -ggdb
.. option:: -glldb
.. option:: -gsce
Debug information flags
-----------------------
.. option:: -gcolumn-info, -gno-column-info
.. option:: -gdwarf-aranges
.. option:: -gembed-source, -gno-embed-source
Embed source text in DWARF debug sections
.. option:: -ggnu-pubnames, -gno-gnu-pubnames
.. option:: -gpubnames, -gno-pubnames
.. option:: -grecord-command-line, -gno-record-command-line, -grecord-gcc-switches
.. option:: -gsimple-template-names, -gno-simple-template-names
.. option:: -gsplit-dwarf, -gno-split-dwarf
.. program:: clang1
.. option:: -gsplit-dwarf=<arg>
.. program:: clang
Set DWARF fission mode to either 'split' or 'single'
.. option:: -gstrict-dwarf, -gno-strict-dwarf
.. option:: -gz=<arg>, -gz (equivalent to -gz=zlib)
DWARF debug sections compression type
Static analyzer flags
=====================
Flags controlling the behavior of the Clang Static Analyzer.
.. option:: -Xanalyzer <arg>
Pass <arg> to the static analyzer
Fortran compilation flags
=========================
Flags that will be passed onto the ``gfortran`` compiler when Clang is given
a Fortran input.
.. option:: -A<arg>, --assert <arg>, --assert=<arg>
.. option:: -A-<arg>
.. option:: -faggressive-function-elimination, -fno-aggressive-function-elimination
.. option:: -falign-commons, -fno-align-commons
.. option:: -fall-intrinsics, -fno-all-intrinsics
.. option:: -fbacktrace, -fno-backtrace
.. option:: -fblas-matmul-limit=<arg>
.. option:: -fbounds-check, -fno-bounds-check
.. option:: -fcheck-array-temporaries, -fno-check-array-temporaries
.. option:: -fcheck=<arg>
.. option:: -fcoarray=<arg>
.. option:: -fconvert=<arg>
.. option:: -fcray-pointer, -fno-cray-pointer
.. option:: -fd-lines-as-code, -fno-d-lines-as-code
.. option:: -fd-lines-as-comments, -fno-d-lines-as-comments
.. option:: -fdollar-ok, -fno-dollar-ok
.. option:: -fdump-fortran-optimized, -fno-dump-fortran-optimized
.. option:: -fdump-fortran-original, -fno-dump-fortran-original
.. option:: -fdump-parse-tree, -fno-dump-parse-tree
.. option:: -fexternal-blas, -fno-external-blas
.. option:: -ff2c, -fno-f2c
.. option:: -ffpe-trap=<arg>
.. option:: -ffree-line-length-<arg>
.. option:: -ffrontend-optimize, -fno-frontend-optimize
.. option:: -finit-character=<arg>
.. option:: -finit-integer=<arg>
.. option:: -finit-local-zero, -fno-init-local-zero
.. option:: -finit-logical=<arg>
.. option:: -finit-real=<arg>
.. option:: -finteger-4-integer-8, -fno-integer-4-integer-8
.. option:: -fmax-array-constructor=<arg>
.. option:: -fmax-errors=<arg>
.. option:: -fmax-identifier-length, -fno-max-identifier-length
.. option:: -fmax-stack-var-size=<arg>
.. option:: -fmax-subrecord-length=<arg>
.. option:: -fmodule-private, -fno-module-private
.. option:: -fpack-derived, -fno-pack-derived
.. option:: -frange-check, -fno-range-check
.. option:: -freal-4-real-10, -fno-real-4-real-10
.. option:: -freal-4-real-16, -fno-real-4-real-16
.. option:: -freal-4-real-8, -fno-real-4-real-8
.. option:: -freal-8-real-10, -fno-real-8-real-10
.. option:: -freal-8-real-16, -fno-real-8-real-16
.. option:: -freal-8-real-4, -fno-real-8-real-4
.. option:: -frealloc-lhs, -fno-realloc-lhs
.. option:: -frecord-marker=<arg>
.. option:: -frecursive, -fno-recursive
.. option:: -frepack-arrays, -fno-repack-arrays
.. option:: -fsecond-underscore, -fno-second-underscore
.. option:: -fsign-zero, -fno-sign-zero
.. option:: -fstack-arrays, -fno-stack-arrays
.. option:: -funderscoring, -fno-underscoring
.. option:: -fwhole-file, -fno-whole-file
.. option:: -imultilib <arg>
.. option:: -static-libgfortran
Linker flags
============
Flags that are passed on to the linker
.. option:: -L<dir>, --library-directory <arg>, --library-directory=<arg>
Add directory to library search path
.. option:: -Mach
.. option:: -T<script>
Specify <script> as linker script
.. option:: -Tbss<addr>
Set starting address of BSS to <addr>
.. option:: -Tdata<addr>
Set starting address of DATA to <addr>
.. option:: -Ttext<addr>
Set starting address of TEXT to <addr>
.. option:: -Wl,<arg>,<arg2>...
Pass the comma separated arguments in <arg> to the linker
.. option:: -X
.. option:: -Xlinker <arg>, --for-linker <arg>, --for-linker=<arg>
Pass <arg> to the linker
.. program:: clang1
.. option:: -Z
.. program:: clang
.. option:: -b<arg>
Pass -b <arg> to the linker on AIX (only).
.. option:: -coverage, --coverage
.. option:: -e<arg>, --entry
.. option:: -filelist <arg>
.. option:: --hip-device-lib=<arg>
HIP device library
.. option:: --hipspv-pass-plugin=<dsopath>
path to a pass plugin for HIP to SPIR-V passes.
.. option:: -l<arg>
.. option:: --ld-path=<arg>
.. option:: -nostartfiles
.. program:: clang1
.. option:: -nostdlib, --no-standard-libraries
.. program:: clang
.. option:: -pie
.. option:: -r
.. option:: -rdynamic
.. option:: --rocm-device-lib-path=<arg>, --hip-device-lib-path=<arg>
ROCm device library path. Alternative to rocm-path.
.. option:: -rpath <arg>
.. option:: -s
.. option:: -shared, --shared
.. option:: -specs=<arg>, --specs=<arg>
.. option:: -static, --static
.. option:: -static-pie
.. option:: -t
.. option:: -u<arg>, --force-link <arg>, --force-link=<arg>
.. option:: -undef
undef all system defines
.. option:: -undefined<arg>, --no-undefined
.. option:: -z <arg>
Pass -z <arg> to the linker
|