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
|
(** {2 Command line} *)
let () = Printexc.record_backtrace true
let concurrency, verbose, debug, secondary, force_byte_compilation, static, build_dir =
let build_dir = ref "_boot" in
let anon s = raise (Arg.Bad (Printf.sprintf "don't know what to do with %s\n" s)) in
let concurrency = ref None in
let verbose = ref false in
let prog = Filename.basename Sys.argv.(0) in
let debug = ref false in
let secondary = ref false in
let force_byte_compilation = ref false in
let static = ref false in
Arg.parse
[ "-j", Int (fun n -> concurrency := Some n), "JOBS Concurrency"
; "--verbose", Set verbose, " Set the display mode"
; "--keep-generated-files", Unit ignore, " Keep generated files"
; "--debug", Set debug, " Enable various debugging options"
; "--secondary", Set secondary, " Use the secondary compiler installation"
; ( "--force-byte-compilation"
, Set force_byte_compilation
, " Force bytecode compilation even if ocamlopt is available" )
; "--static", Set static, " Build a static binary"
; "--boot-dir", Set_string build_dir, " Set the boot directory"
]
anon
(Printf.sprintf "Usage: %s <options>\nOptions are:" prog);
!concurrency, !verbose, !debug, !secondary, !force_byte_compilation, !static, !build_dir
;;
(** {2 General configuration} *)
open Types
(** {2 Utility functions} *)
include struct
[@@@ocaml.warning "-32-34-37"]
module Either = struct
type ('l, 'r) t =
| Left of 'l
| Right of 'r
end
end
open Stdlib
open StdLabels
open MoreLabels
open Printf
module Option = struct
include Option
let iter t ~f = Option.iter f t
let map t ~f = Option.map f t
let bind t ~f = Option.bind t f
end
module Map = struct
module type S = sig
include Map.S
val of_list : (key * 'a) list -> 'a t
val of_list_reduce : (key * 'a) list -> f:('a -> 'a -> 'a) -> 'a t
val to_list : 'a t -> (key * 'a) list
val filter_map : f:(key -> 'a -> 'b option) -> 'a t -> 'b t
end
module Make (S : Map.OrderedType) : S with type key = S.t = struct
include Map.Make (S)
let of_list_reduce xs ~f =
List.fold_left xs ~init:empty ~f:(fun acc (key, v) ->
update acc ~key ~f:(function
| None -> Some v
| Some v' -> Some (f v' v)))
;;
let of_list xs =
of_list_reduce xs ~f:(fun _ _ -> failwith "of_list: key already exists")
;;
[@@@ocaml.warning "-32"]
let to_list t = bindings t
let filter_map ~f t =
mapi t ~f:(fun key a -> f key a)
|> filter ~f:(fun _ v ->
match v with
| None -> false
| Some _ -> true)
|> map ~f:(function
| None -> assert false
| Some v -> v)
;;
end
end
module List = struct
let partition_map_skip t ~f =
let rec loop l m r = function
| [] -> l, m, r
| x :: xs ->
(match f x with
| `Skip -> loop l m r xs
| `Left x -> loop (x :: l) m r xs
| `Middle x -> loop l (x :: m) r xs
| `Right x -> loop l m (x :: r) xs)
in
let l, m, r = loop [] [] [] t in
List.(rev l, rev m, rev r)
;;
let cons_opt x t =
match x with
| None -> t
| Some x -> x :: t
;;
[@@@ocaml.warning "-32"]
let rec compare a b ~cmp =
match a, b with
| [], [] -> 0
| [], _ :: _ -> -1
| _ :: _, [] -> 1
| x :: a, y :: b ->
(match cmp x y with
| 0 -> compare a b ~cmp
| ne -> ne)
;;
(* Some list functions are introduced in later OCaml versions. There are also
improvements to performance in some of these. We introduce fallback
versions allowing compatability >= 4.08 which will get shadowed when the
stdlib version is available. *)
(* Introduced in 4.10 *)
let rec find_map l ~f =
match l with
| [] -> None
| x :: l ->
(match f x with
| None -> find_map l ~f
| Some _ as x -> x)
;;
(* Introduced in 4.14 *)
let concat_map l ~f = List.map l ~f |> List.concat
let partition_map t ~f =
let rec loop l r = function
| [] -> l, r
| x :: xs ->
(match f x with
| Either.Left x -> loop (x :: l) r xs
| Right x -> loop l (x :: r) xs)
in
let l, r = loop [] [] t in
List.(rev l, rev r)
;;
include List
end
module Trie = struct
module type S = sig
module Map : Map.S
type 'a t = 'a node Map.t
and 'a node =
| Node of 'a
| Tree of 'a t
val empty : 'a t
val is_empty : _ t -> bool
val map : 'a t -> f:('a -> 'b) -> 'b t
val fold : 'a t -> f:('a -> 'acc -> 'acc) -> init:'acc -> 'acc
val to_list : 'a t -> 'a list
val filter_map : 'a t -> f:('a -> 'b option) -> 'b t
val add_exn : 'a t -> Map.key list -> 'a -> 'a t
end
module Make (Map : Map.S) : S with module Map = Map = struct
module Map = Map
type 'a t = 'a node Map.t
and 'a node =
| Node of 'a
| Tree of 'a t
let empty = Map.empty
let rec map t ~f =
Map.map t ~f:(function
| Node a -> Node (f a)
| Tree t -> Tree (map t ~f))
;;
let is_empty t = Map.is_empty t
let rec fold t ~f ~init =
Map.fold t ~init ~f:(fun ~key:_ ~data acc ->
match data with
| Node n -> f n acc
| Tree t -> fold t ~f ~init:acc)
;;
let to_list t = fold t ~init:[] ~f:List.cons
let rec filter_map t ~f =
Map.filter_map t ~f:(fun _key v ->
match v with
| Node a -> Option.map (f a) ~f:(fun x -> Node x)
| Tree a ->
let m = filter_map ~f a in
if Map.is_empty m then None else Some (Tree m))
;;
let add_exn : 'a t -> Map.key list -> 'a -> 'a t =
fun t key v ->
let rec loop t = function
| [] -> t
| [ key ] ->
Map.update t ~key ~f:(function
| None -> Some (Node v)
| Some _ -> failwith "already set: overriding a final node")
| key :: xs ->
Map.update t ~key ~f:(function
| Some (Node _) -> failwith "already set: overriding intermediate"
| None -> Some (Tree (loop Map.empty xs))
| Some (Tree t) -> Some (Tree (loop t xs)))
in
loop t key
;;
end
module Conv (From : S) (To : S) = struct
let rec conv (t : _ From.t) ~node ~(key : From.Map.key -> To.Map.key) : _ To.t =
From.Map.to_list t
|> List.filter_map ~f:(fun ((k : From.Map.key), (v : _ From.node)) ->
match v with
| Node a -> Option.map (node a) ~f:(fun x -> key k, To.Node x)
| Tree a ->
let a = conv a ~node ~key in
if To.is_empty a then None else Some (key k, To.Tree a))
|> To.Map.of_list_reduce ~f:(fun _ a -> a)
;;
end
end
module String = struct
include String
module Set = Set.Make (String)
module Map = struct
include Map.Make (String)
let find x map =
match find_opt x map with
| None -> failwith (sprintf "failed to find %S" x)
| Some s -> s
;;
end
module Trie = Trie.Make (Map)
let split_lines s =
let rec loop ~last_is_cr ~acc i j =
if j = String.length s
then (
let acc =
if j = i || (j = i + 1 && last_is_cr)
then acc
else String.sub s ~pos:i ~len:(j - i) :: acc
in
List.rev acc)
else (
match s.[j] with
| '\r' -> loop ~last_is_cr:true ~acc i (j + 1)
| '\n' ->
let line =
let len = if last_is_cr then j - i - 1 else j - i in
String.sub s ~pos:i ~len
in
loop ~acc:(line :: acc) (j + 1) (j + 1) ~last_is_cr:false
| _ -> loop ~acc i (j + 1) ~last_is_cr:false)
in
loop ~acc:[] 0 0 ~last_is_cr:false
;;
[@@@ocaml.warning "-32"]
let ends_with t ~suffix = Filename.check_suffix t suffix
let starts_with t ~prefix =
let len_s = length t
and len_pre = length prefix in
let rec aux i =
if i = len_pre
then true
else if unsafe_get t i <> unsafe_get prefix i
then false
else aux (i + 1)
in
len_s >= len_pre && aux 0
;;
include String
end
module Ml_kind = struct
type t =
[ `Mli
| `Ml
| `Mll
| `Mly
]
let all = [ `Mli, ".mli"; `Ml, ".ml"; `Mll, ".mll"; `Mly, ".mly" ]
let ext t = List.assoc t all
let of_ext ext =
let all = List.map all ~f:(fun (x, y) -> y, x) in
List.assoc_opt ext all
;;
end
module Ccomp = struct
type t =
[ `Msvc
| `Other
]
let of_string : string -> t = function
| "msvc" -> `Msvc
| _ -> `Other
;;
end
module Word_size = struct
type t =
[ `Thirty_two
| `Sixty_four
]
let of_string : string -> t = function
| "32" -> `Thirty_two
| "64" -> `Sixty_four
| _ -> failwith "invalid word size"
;;
end
module Os_type = struct
type t =
[ `Unix
| `Win32
| `Cygwin
]
let of_string : string -> t = function
| "Unix" -> `Unix
| "Win32" -> `Win32
| "Cygwin" -> `Cygwin
| _ -> failwith "invalid os_type"
;;
end
module Arch = struct
type t =
[ `arm64
| `amd64
| `x86_64
| `other
]
let of_string : string -> t = function
| "arm64" -> `arm64
| "amd64" -> `amd64
| "x86_64" -> `x86_64
| _ -> `other
;;
end
module Module : sig
module Name : sig
type t
val of_fname : string -> t
val to_fname : t -> kind:Ml_kind.t -> string
val of_string : string -> t
val to_string : t -> string
module Set : Set.S with type elt = t
module Map : Map.S with type key = t
module Trie : Trie.S with module Map = Map
end
module Obj : sig
type t
module Map : Map.S with type key = t
val to_fname : t -> kind:Ml_kind.t -> string
val to_name : t -> Name.t
val of_name : Name.t -> t
end
module Path : sig
type t
val is_prefix : t -> prefix:t -> bool
val is_intf_module : t -> Name.t -> bool
val alias_suffix : t -> t
val to_obj : t -> Obj.t
val parent : t -> t
val of_list : Name.t list -> t
val to_list : t -> Name.t list
val of_name : Name.t -> t
val namespace : t -> prefix:Name.t -> t
module Map : Map.S with type key = t
end
end = struct
module Name = struct
include String
let of_name x = x
let double_underscore = "__"
let to_string s = s
let of_string s =
assert (s <> "");
(match s.[0] with
| 'A' .. 'Z' -> ()
| _ -> failwith ("invalid module " ^ s));
for i = 1 to String.length s - 1 do
match s.[i] with
| 'A' .. 'Z' | 'a' .. 'z' | '_' | '0' .. '9' -> ()
| _ -> failwith ("invalid module " ^ s)
done;
s
;;
let to_fname t ~kind = String.uncapitalize_ascii t ^ Ml_kind.ext kind
let to_name x = x
let of_fname x =
(match String.index_opt x '.' with
| None -> x
| Some len -> String.sub x ~pos:0 ~len)
|> String.capitalize_ascii
|> of_string
;;
end
module Obj = Name
module Path = struct
module T = struct
type t = Name.t list
let compare = List.compare ~cmp:Name.compare
end
include T
module Map = struct
include Map.Make (T)
let find x map =
match find_opt x map with
| None -> failwith (sprintf "failed to find [%s]" (String.concat ~sep:";" x))
| Some s -> s
;;
end
let alias_suffix = function
| [] -> failwith "alias_suffix: invalid module path"
| x :: xs -> (x ^ Name.double_underscore) :: xs
;;
let is_prefix =
let rec loop t prefix =
match t, prefix with
| _, [] -> true
| [], _ :: _ -> false
| x :: t, p :: prefix -> if x = p then loop t prefix else false
in
fun t ~prefix -> loop (List.rev t) (List.rev prefix)
;;
let to_obj t =
match t with
| [] -> assert false
| [ x ] -> x
| x :: y :: xs ->
(if x = y then y :: xs else t)
|> List.rev
|> String.concat ~sep:Name.double_underscore
;;
let of_name t = [ t ]
let of_list x = x
let to_list x = x
let parent = function
| [] -> assert false
| _ :: x -> x
;;
let namespace t ~prefix = t @ [ prefix ]
let is_intf_module t name =
match t with
| [] -> true
| x :: _ -> Name.equal name x
;;
end
end
let ( ^/ ) = Filename.concat
let fatal fmt =
ksprintf
(fun s ->
prerr_endline s;
exit 2)
fmt
;;
module Status_line = struct
let num_jobs = ref 0
let num_jobs_finished = ref 0
let displayed = ref ""
let display_status_line =
Unix.(isatty stdout)
||
match Sys.getenv_opt "INSIDE_EMACS" with
| Some (_ : string) -> true
| None -> false
;;
let update jobs =
if display_status_line && !num_jobs > 0
then (
let new_displayed =
sprintf "Done: %d/%d (jobs: %d)" !num_jobs_finished !num_jobs jobs
in
Printf.printf "\r%*s\r%s%!" (String.length !displayed) "" new_displayed;
displayed := new_displayed)
;;
let clear () =
if display_status_line then Printf.printf "\r%*s\r%!" (String.length !displayed) ""
;;
let () = at_exit clear
end
module Io = struct
(* Return a sorted list of entries in [path] as [path/entry] *)
let readdir path = Sys.readdir path |> Array.to_list |> List.sort ~cmp:String.compare
let open_out ?(must_overwrite = false) file =
let flags =
(if must_overwrite then Open_trunc else Open_excl)
:: [ Open_wronly; Open_creat; Open_binary ]
in
open_out_gen flags 0o666 file
;;
let input_lines ic =
let rec loop ic acc =
match input_line ic with
| line -> loop ic (line :: acc)
| exception End_of_file -> List.rev acc
in
loop ic []
;;
let read_lines fn =
let ic = open_in fn in
let lines = input_lines ic in
close_in ic;
lines
;;
let read_file fn =
let ic = open_in_bin fn in
let s = really_input_string ic (in_channel_length ic) in
close_in ic;
s
;;
let with_file_out ?must_overwrite file ~f =
let oc = open_out ?must_overwrite file in
let res =
try Ok (f oc) with
| exn -> Error exn
in
close_out oc;
match res with
| Error e -> raise e
| Ok s -> s
;;
let do_then_copy ~f a b =
let s = read_file a in
with_file_out b ~f:(fun oc ->
f oc;
output_string oc s)
;;
(* copy a file - fails if the file exists *)
let copy a b = do_then_copy ~f:(fun _ -> ()) a b
(* copy a file and insert a header - fails if the file exists *)
let copy_with_header ~header a b =
do_then_copy ~f:(fun oc -> output_string oc header) a b
;;
(* copy a file and insert a directive - fails if the file exists *)
let copy_with_directive ~directive a b =
do_then_copy ~f:(fun oc -> fprintf oc "#%s 1 %S\n" directive a) a b
;;
let rec rm_rf fn =
match Unix.lstat fn with
| { st_kind = S_DIR; _ } ->
clear fn;
Unix.rmdir fn
| _ -> Unix.unlink fn
| exception Unix.Unix_error (ENOENT, _, _) -> ()
and clear dir =
List.iter (readdir dir) ~f:(fun fn ->
let path = Filename.concat dir fn in
rm_rf path)
;;
end
module Bin = struct
let path =
match Sys.getenv_opt "PATH" with
| None -> []
| Some s -> String.split_on_char s ~sep:(if Sys.win32 then ';' else ':')
;;
let find_prog ~f =
List.find_map path ~f:(fun dir -> Option.map (f dir) ~f:(fun fn -> dir, fn))
;;
let exe = if Sys.win32 then ".exe" else ""
let or_exe file =
let files =
let base = [ file ] in
let with_exe = file ^ exe in
if with_exe = file then base else with_exe :: base
in
List.find_opt files ~f:(fun s ->
match Unix.stat s with
| exception Unix.Unix_error (_, _, _) -> false
| s -> s.st_kind = S_REG)
;;
end
(** {2 Concurrency level} *)
let concurrency =
let try_run_and_capture_line (prog, args) =
Bin.find_prog ~f:(fun dir ->
if Sys.file_exists (dir ^/ prog) then Some prog else None)
|> Option.bind ~f:(fun (dir, prog) ->
let ic, oc, ec =
let path = dir ^/ prog in
let args = Array.of_list @@ (path :: args) in
Unix.open_process_args_full path args (Unix.environment ())
in
let line =
match input_line ic with
| s -> Some s
| exception End_of_file -> None
in
match Unix.close_process_full (ic, oc, ec), line with
| WEXITED 0, Some s -> Some s
| _ -> None)
in
match concurrency with
| Some n -> n
| None ->
(* If no [-j] was given, try to autodetect the number of processors *)
(if Sys.win32
then Sys.getenv_opt "NUMBER_OF_PROCESSORS" |> Option.bind ~f:int_of_string_opt
else
[ "nproc", []
; "getconf", [ "_NPROCESSORS_ONLN" ]
; "getconf", [ "NPROCESSORS_ONLN" ]
]
|> List.find_map ~f:(fun cmd ->
try_run_and_capture_line cmd
|> Option.bind ~f:(fun s -> int_of_string_opt (String.trim s))))
|> Option.value ~default:1
;;
(** {2 Fibers} *)
module Fiber : sig
(** Fibers *)
(** This module is similar to the one in [../src/fiber] except that it is much
less optimised and much easier to understand. You should look at the
documentation of the other module to understand the API. *)
type 'a t
val return : 'a -> 'a t
module O : sig
val ( >>> ) : unit t -> 'a t -> 'a t
val ( >>| ) : 'a t -> ('a -> 'b) -> 'b t
val ( let+ ) : 'a t -> ('a -> 'b) -> 'b t
val ( let* ) : 'a t -> ('a -> 'b t) -> 'b t
end
module Future : sig
type 'a fiber
type 'a t
val wait : 'a t -> 'a fiber
end
with type 'a fiber := 'a t
val fork : (unit -> 'a t) -> 'a Future.t t
val fork_and_join : (unit -> 'a t) -> (unit -> 'b t) -> ('a * 'b) t
val fork_and_join_unit : (unit -> unit t) -> (unit -> 'a t) -> 'a t
val parallel_map : 'a list -> f:('a -> 'b t) -> 'b list t
val parallel_iter : 'a list -> f:('a -> unit t) -> unit t
module Process : sig
val run : ?cwd:string -> string -> string list -> unit t
val run_and_capture : ?cwd:string -> string -> string list -> string t
val try_run_and_capture : ?cwd:string -> string -> string list -> string option t
end
val run : 'a t -> 'a
end = struct
type 'a t = ('a -> unit) -> unit
let return x k = k x
module O = struct
let ( >>> ) a b k = a (fun () -> b k)
let ( >>= ) t f k = t (fun x -> f x k)
let ( >>| ) t f k = t (fun x -> k (f x))
let ( let+ ) = ( >>| )
let ( let* ) = ( >>= )
end
open O
let both a b = a >>= fun a -> b >>= fun b -> return (a, b)
module Ivar = struct
type 'a state =
| Full of 'a
| Empty of ('a -> unit) Queue.t
type 'a t = { mutable state : 'a state }
let create () = { state = Empty (Queue.create ()) }
let fill t x =
match t.state with
| Full _ -> failwith "Fiber.Ivar.fill"
| Empty q ->
t.state <- Full x;
Queue.iter (fun f -> f x) q
;;
let read t k =
match t.state with
| Full x -> k x
| Empty q -> Queue.push k q
;;
end
module Future = struct
type 'a t = 'a Ivar.t
let wait = Ivar.read
end
let fork f k =
let ivar = Ivar.create () in
f () (fun x -> Ivar.fill ivar x);
k ivar
;;
let fork_and_join f g =
let* a = fork f in
let* b = fork g in
both (Future.wait a) (Future.wait b)
;;
let fork_and_join_unit f g =
let* a = fork f in
let* b = fork g in
Future.wait a >>> Future.wait b
;;
let rec parallel_map l ~f =
match l with
| [] -> return []
| x :: l ->
let* future = fork (fun () -> f x) in
let* l = parallel_map l ~f in
let* x = Future.wait future in
return (x :: l)
;;
let rec parallel_iter l ~f =
match l with
| [] -> return ()
| x :: l ->
let* future = fork (fun () -> f x) in
let* () = parallel_iter l ~f in
Future.wait future
;;
module Temp = struct
module Files = Set.Make (String)
let tmp_files = ref Files.empty
let () =
at_exit (fun () ->
let fns = !tmp_files in
tmp_files := Files.empty;
Files.iter fns ~f:(fun fn ->
try Sys.remove fn with
| _ -> ()))
;;
let file prefix suffix =
let fn = Filename.temp_file prefix suffix in
tmp_files := Files.add fn !tmp_files;
fn
;;
let destroy_file fn =
(try Sys.remove fn with
| _ -> ());
tmp_files := Files.remove fn !tmp_files
;;
end
module Process = struct
let running = Hashtbl.create concurrency
exception Finished of int * Unix.process_status
let rec wait_win32 () =
match
Hashtbl.iter running ~f:(fun ~key:pid ~data:_ ->
let pid, status = Unix.waitpid [ WNOHANG ] pid in
if pid <> 0 then raise_notrace (Finished (pid, status)))
with
| () ->
ignore (Unix.select [] [] [] 0.001);
wait_win32 ()
| exception Finished (pid, status) -> pid, status
;;
let wait = if Sys.win32 then wait_win32 else Unix.wait
let waiting_for_slot = Queue.create ()
let throttle () =
if Hashtbl.length running >= concurrency
then (
let ivar = Ivar.create () in
Queue.push ivar waiting_for_slot;
Ivar.read ivar)
else return ()
;;
let restart_throttled () =
while
Hashtbl.length running < concurrency && not (Queue.is_empty waiting_for_slot)
do
Ivar.fill (Queue.pop waiting_for_slot) ()
done
;;
let open_temp_file () =
let out = Temp.file "duneboot-" ".output" in
let fd =
Unix.openfile out [ O_WRONLY; O_CREAT; O_TRUNC; O_SHARE_DELETE; O_CLOEXEC ] 0o666
in
out, fd
;;
let read_temp fn =
let s = Io.read_file fn in
Temp.destroy_file fn;
s
;;
let initial_cwd = Sys.getcwd ()
let run_process ?cwd prog args ~split =
let* () = throttle () in
let stdout_fn, stdout_fd = open_temp_file () in
let stderr_fn, stderr_fd =
if split then open_temp_file () else stdout_fn, stdout_fd
in
Option.iter cwd ~f:Sys.chdir;
let pid =
Unix.create_process
prog
(Array.of_list (prog :: args))
Unix.stdin
stdout_fd
stderr_fd
in
Option.iter cwd ~f:(fun _ -> Sys.chdir initial_cwd);
Unix.close stdout_fd;
if split then Unix.close stderr_fd;
let ivar = Ivar.create () in
Hashtbl.add running ~key:pid ~data:ivar;
let* (status : Unix.process_status) = Ivar.read ivar in
let stdout_s = read_temp stdout_fn in
let stderr_s = if split then read_temp stderr_fn else stdout_s in
if stderr_s <> "" || status <> WEXITED 0 || verbose
then (
let cmdline = String.concat ~sep:" " (prog :: args) in
let cmdline =
match cwd with
| Some x -> sprintf "cd %s && %s" x cmdline
| None -> cmdline
in
Status_line.clear ();
prerr_endline cmdline;
prerr_string stderr_s;
flush stderr);
match status with
| WEXITED 0 -> return (Ok stdout_s)
| WEXITED n -> return (Error n)
| WSIGNALED _ -> return (Error 255)
| WSTOPPED _ -> assert false
;;
let run ?cwd prog args =
run_process ?cwd prog args ~split:false
>>| function
| Ok _ -> ()
| Error n -> exit n
;;
let run_and_capture ?cwd prog args =
run_process ?cwd prog args ~split:true
>>| function
| Ok x -> x
| Error n -> exit n
;;
let try_run_and_capture ?cwd prog args =
run_process ?cwd prog args ~split:true
>>| function
| Ok x -> Some x
| Error _ -> None
;;
end
let run t =
let result = ref None in
t (fun x -> result := Some x);
let rec loop () =
if Hashtbl.length Process.running > 0
then (
Status_line.update (Hashtbl.length Process.running);
let pid, status = Process.wait () in
let ivar = Hashtbl.find Process.running pid in
Hashtbl.remove Process.running pid;
Ivar.fill ivar status;
Process.restart_throttled ();
loop ())
else (
match !result with
| Some x -> x
| None -> fatal "bootstrap got stuck!")
in
loop ()
;;
end
open Fiber.O
module Process = Fiber.Process
(** {2 OCaml tools} *)
module Libs = struct
let external_libraries = Libs.external_libraries
let make_lib lib =
let root_module =
Option.map lib.root_module ~f:(fun { name; entries } ->
let name = Module.Name.of_string name in
let entries = List.map ~f:Module.Name.of_string entries in
{ name; entries })
in
let main_module_name = Option.map ~f:Module.Name.of_string lib.main_module_name in
let special_builtin_support =
Option.map ~f:Module.Name.of_string lib.special_builtin_support
in
{ lib with root_module; main_module_name; special_builtin_support }
;;
let local_libraries =
[ { path = "vendor/csexp/src"
; main_module_name = Some "Csexp"
; include_subdirs = No
; special_builtin_support = None
; root_module = None
}
; { path = "vendor/pp/src"
; main_module_name = Some "Pp"
; include_subdirs = No
; special_builtin_support = None
; root_module = None
}
; { path = "vendor/re/src"
; main_module_name = Some "Re"
; include_subdirs = No
; special_builtin_support = None
; root_module = None
}
; { path = "vendor/spawn/src"
; main_module_name = Some "Spawn"
; include_subdirs = No
; special_builtin_support = None
; root_module = None
}
; { path = "vendor/uutf"
; main_module_name = Some "Uutf"
; include_subdirs = No
; special_builtin_support = None
; root_module = None
}
]
@ Libs.local_libraries
|> List.map ~f:make_lib
;;
let dune_exe = Module.Name.of_string "Dune_exe"
let main = { (make_lib Libs.main) with main_module_name = Some dune_exe }
end
type task =
{ target : string * string
; external_libraries : string list
; local_libraries : Module.Name.t library list
}
let task =
{ target =
( "dune"
, [ Libs.dune_exe; Module.Name.of_string "Main" ]
|> List.rev
|> Module.Path.of_list
|> Module.Path.to_obj
|> Module.Obj.to_fname ~kind:`Ml )
; external_libraries = Libs.external_libraries
; local_libraries = Libs.local_libraries
}
;;
module Mode = struct
type t =
| Byte
| Native
end
module Config : sig
val compiler : string
val ocamldep : string
val ocamllex : string
val ocamlyacc : string
val mode : Mode.t
val ocaml_archive_ext : string
val output_complete_obj_arg : string
val unix_library_flags : string list
type t
val ocaml_config : unit -> t Fiber.t
val ext_obj : t -> string
val ccomp_type : t -> Ccomp.t
val word_size : t -> Word_size.t
val os_type : t -> Os_type.t
val architecture : t -> Arch.t
val system : t -> string
val c_compiler : t -> string
end = struct
let ocaml_version = Scanf.sscanf Sys.ocaml_version "%d.%d" (fun a b -> a, b)
let prog_not_found prog = fatal "Program %s not found in PATH" prog
let best_prog dir prog =
let fn = dir ^/ prog ^ ".opt" ^ Bin.exe in
if Sys.file_exists fn
then Some fn
else (
let fn = dir ^/ prog ^ Bin.exe in
if Sys.file_exists fn then Some fn else None)
;;
let find_prog prog = Bin.find_prog ~f:(fun dir -> best_prog dir prog)
let get_prog dir prog =
match best_prog dir prog with
| None -> prog_not_found prog
| Some fn -> fn
;;
let bin_dir, ocamlc =
if secondary
then (
let s =
Process.run_and_capture
"ocamlfind"
[ "-toolchain"; "secondary"; "query"; "ocaml" ]
|> Fiber.run
in
match String.split_lines s with
| [] | _ :: _ :: _ -> fatal "Unexpected output locating secondary compiler"
| [ bin_dir ] ->
(match best_prog bin_dir "ocamlc" with
| None -> fatal "Failed to locate secondary ocamlc"
| Some x -> bin_dir, x))
else (
match find_prog "ocamlc" with
| None -> prog_not_found "ocamlc"
| Some x -> x)
;;
let ocamlyacc = get_prog bin_dir "ocamlyacc"
let ocamllex = get_prog bin_dir "ocamllex"
let ocamldep = get_prog bin_dir "ocamldep"
let compiler, mode, ocaml_archive_ext =
match force_byte_compilation, best_prog bin_dir "ocamlopt" with
| true, _ | _, None -> ocamlc, Mode.Byte, ".cma"
| false, Some path -> path, Mode.Native, ".cmxa"
;;
let output_complete_obj_arg =
if ocaml_version < (4, 10) then "-custom" else "-output-complete-exe"
;;
let unix_library_flags = if ocaml_version >= (5, 0) then [ "-I"; "+unix" ] else []
type t = string String.Map.t
let ocaml_config () =
Process.run_and_capture ocamlc [ "-config" ]
>>| String.split_lines
>>| List.fold_left ~init:String.Map.empty ~f:(fun acc line ->
match Scanf.sscanf line "%[^:]: %s" (fun k v -> k, v) with
| key, data -> String.Map.add ~key ~data acc
| exception _ ->
fatal "invalid line in output of 'ocamlc -config': %s" (String.escaped line))
;;
let ext_obj t = String.Map.find_opt "ext_obj" t |> Option.value ~default:".o"
let ccomp_type t = String.Map.find "ccomp_type" t |> Ccomp.of_string
let word_size t = String.Map.find "word_size" t |> Word_size.of_string
let os_type t = String.Map.find "os_type" t |> Os_type.of_string
let architecture t = String.Map.find "architecture" t |> Arch.of_string
let system t = String.Map.find "system" t
let c_compiler t = String.Map.find "c_compiler" t
end
let insert_header fn ~header =
match header with
| "" -> ()
| h ->
let s = Io.read_file fn in
Io.with_file_out ~must_overwrite:true fn ~f:(fun oc ->
output_string oc h;
output_string oc s)
;;
let copy_lexer ~header src dst =
let dst = Filename.remove_extension dst ^ ".ml" in
let+ () = Process.run Config.ocamllex [ "-q"; "-o"; dst; src ] in
insert_header dst ~header
;;
let copy_parser ~header src dst =
let dst = Filename.remove_extension dst in
let+ () = Process.run Config.ocamlyacc [ "-b"; dst; src ] in
insert_header (dst ^ ".ml") ~header;
insert_header (dst ^ ".mli") ~header
;;
(** {2 Handling of the dune-build-info library} *)
(** {2 Preparation of library files} *)
module Build_info = struct
let get_version () =
match
match Io.read_lines "dune-project" with
| exception _ -> None
| lines ->
List.find_map lines ~f:(fun line ->
match Scanf.sscanf line "(version %[^)])" (fun v -> v) with
| exception _ -> None
| v -> Some v)
with
| Some _ as s -> Fiber.return s
| None ->
if not (Sys.file_exists ".git")
then Fiber.return None
else (
match
Bin.find_prog ~f:(fun dir ->
let git = Filename.concat dir "git" in
Bin.or_exe git)
with
| None -> Fiber.return None
| Some (_, git) ->
Process.try_run_and_capture
git
[ "describe"; "--always"; "--dirty"; "--abbrev=7" ]
>>| Option.map ~f:String.trim)
;;
let gen_data_module oc =
let pr fmt = fprintf oc fmt in
let prlist name l ~f =
match l with
| [] -> pr "let %s = []\n" name
| x :: l ->
pr "let %s =\n" name;
pr " [ ";
f x;
List.iter l ~f:(fun x ->
pr " ; ";
f x);
pr " ]\n"
in
let+ version = get_version () in
pr
"let version = %s\n"
(match version with
| None -> "None"
| Some v -> sprintf "Some %S" v);
pr "\n";
let libs =
List.map task.local_libraries ~f:(fun (lib : _ library) -> lib.path, "version")
@ List.map task.external_libraries ~f:(fun name ->
name, {|Some "[distributed with OCaml]"|})
|> List.sort ~cmp:(fun (a, _) (b, _) -> String.compare a b)
in
prlist "statically_linked_libraries" libs ~f:(fun (name, v) -> pr "%S, %s\n" name v)
;;
end
module File_kind = struct
type asm =
{ syntax : [ `Gas | `Intel ]
; arch : [ `Amd64 ] option
; os : [ `Win | `Unix ] option
; assembler : [ `C_comp | `Msvc_asm ]
}
type c =
{ arch : [ `Arm64 | `X86 ] option
; flags : string list
}
type ml =
{ kind : [ `Ml | `Mli | `Mll | `Mly ]
; name : Module.Name.t
; module_path : Module.Path.t
; obj : Module.Obj.t
}
type t =
| Header
| C of c
| Asm of asm
| Ml of ml
let analyse module_path dn fn =
let fname, ext =
let i =
try String.index fn '.' with
| Not_found -> String.length fn
in
let fname = String.sub fn ~pos:0 ~len:i in
let ext = String.sub fn ~pos:i ~len:(String.length fn - i) in
fname, ext
in
let name = lazy (Module.Name.of_fname fname) in
let module_path =
lazy
(let path = fname :: module_path in
List.map ~f:Module.Name.of_fname path |> Module.Path.of_list)
in
match ext with
| ".S" | ".asm" ->
let syntax = if ext = ".S" then `Gas else `Intel in
let os, arch, assembler =
let fn = Filename.remove_extension fn in
let check suffix = String.ends_with fn ~suffix in
if check "x86-64_unix"
then Some `Unix, Some `Amd64, `C_comp
else if check "x86-64_windows_gnu"
then Some `Win, Some `Amd64, `C_comp
else if check "x86-64_windows_msvc"
then Some `Win, Some `Amd64, `Msvc_asm
else None, None, `C_comp
in
Some (Asm { syntax; arch; os; assembler })
| ".c" ->
let arch, flags =
let fn = Filename.remove_extension fn in
let check suffix = String.ends_with fn ~suffix in
let x86 gnu _msvc =
(* CR rgrinberg: select msvc flags on windows *)
Some `X86, gnu
in
if check "_sse2"
then x86 [ "-msse2" ] [ "/arch:SSE2" ]
else if check "_sse41"
then x86 [ "-msse4.1" ] [ "/arch:AVX" ]
else if check "_avx2"
then x86 [ "-mavx2" ] [ "/arch:AVX2" ]
else if check "_avx512"
then x86 [ "-mavx512f"; "-mavx512vl"; "-mavx512bw" ] [ "/arch:AVX512" ]
else if String.ends_with fn ~suffix:"_neon"
then Some `Arm64, []
else None, []
in
Some (C { arch; flags })
| ".h" -> Some Header
| ".defaults.ml" ->
let fn' = fname ^ ".ml" in
if Sys.file_exists (dn ^/ fn')
then None
else (
let module_path = Lazy.force module_path in
let obj = Module.Path.to_obj module_path in
Some (Ml { kind = `Ml; name = Lazy.force name; module_path; obj }))
| ext ->
Ml_kind.of_ext ext
|> Option.map ~f:(fun kind ->
let module_path = Lazy.force module_path in
let obj = Module.Path.to_obj module_path in
Ml { kind; name = Lazy.force name; module_path; obj })
;;
end
module Source = struct
type 'a t =
{ file : string
; kind : 'a
}
type c_file =
{ name : string
; flags : string list
}
type asm_file =
{ assembler : [ `C_comp | `Msvc_asm ]
; flags : string list
; out_file : string
}
let mangle_filename ({ file; kind } : File_kind.t t) =
match kind with
| Asm _ | C _ | Header -> Filename.basename file
| Ml { kind; name = _; module_path = _; obj } ->
let kind =
match kind with
| `Mli -> `Mli
| _ -> `Ml
in
Module.Obj.to_fname ~kind obj
;;
end
let gen_module oc bindings =
List.iter bindings ~f:(fun (lhs, rhs) ->
fprintf oc "module %s = %s\n" (Module.Name.to_string lhs) (Module.Name.to_string rhs))
;;
let gen_opens modules =
List.map modules ~f:(fun m -> Module.Name.to_string m |> sprintf "open! %s\n")
|> String.concat ~sep:""
;;
module Group = struct
type singleton =
{ obj : Module.Obj.t
; name : Module.Name.t
}
type wrapped =
{ alias : Module.Obj.t
; modules : node Module.Name.Map.t
; path : Module.Path.t
; aliased : node Module.Name.Map.t
; intf : [ `Alias | `Node of node ]
}
and node =
| Singleton of singleton
| Wrapped of wrapped
type t = node Module.Name.Map.t
let rec find_groups t names acc =
match names with
| [] -> acc
| name :: path ->
(match Module.Name.Map.find_opt name t with
| None -> acc
| Some (Singleton n) ->
let g = Module.Name.Map.singleton n.name (Singleton n) in
g :: acc
| Some (Wrapped w) ->
let acc = w.modules :: acc in
find_groups w.modules path acc)
;;
let find_groups t p = find_groups t (List.rev (Module.Path.to_list p)) [ t ]
let singleton name obj : singleton = { name; obj }
let generate_alias { modules = _; path = _; alias; aliased; intf = _ } =
let fn = Module.Obj.to_fname ~kind:`Ml alias in
Io.with_file_out (build_dir ^/ fn) ~f:(fun oc ->
Module.Name.Map.to_list aliased
|> List.rev_map ~f:(fun (name, m) ->
let obj =
match m with
| Singleton { obj; name = _ } -> obj
| Wrapped { alias = _; modules = _; path; aliased = _; intf = _ } ->
Module.Path.to_obj path
in
name, Module.Obj.to_name obj)
|> gen_module oc);
fn
;;
let rec generate_aliases_node node acc =
match node with
| Singleton _ -> acc
| Wrapped w ->
let acc = generate_alias w :: acc in
generate_aliases w.modules acc
and generate_aliases (m : node Module.Name.Map.t) (acc : string list) =
Module.Name.Map.fold ~init:acc m ~f:(fun ~key:_ ~(data : node) acc ->
generate_aliases_node data acc)
;;
let generate_aliases t =
Module.Name.Map.fold t ~init:[] ~f:(fun ~key:_ ~data acc ->
generate_aliases_node data acc)
;;
let merge_all ts =
List.fold_left ts ~init:Module.Name.Map.empty ~f:(fun acc t ->
Module.Name.Map.union acc t ~f:(fun name _ _ ->
failwith
(sprintf
"libraries with the same top level module name: %s"
(Module.Name.to_string name))))
;;
let rec make names (modules : File_kind.ml Module.Name.Trie.t) : node =
let name = List.hd names in
let path = Module.Path.of_list names in
match
if Module.Name.Map.cardinal modules = 1
then (
let name, first = Module.Name.Map.choose modules in
match first with
| Node m when Module.Path.is_intf_module path name -> Some (singleton name m.obj)
| _ -> None)
else None
with
| Some m -> Singleton m
| None ->
let modules : node Module.Name.Map.t =
Module.Name.Map.mapi modules ~f:(fun name (node : _ Module.Name.Trie.node) ->
match node with
| Node (s : File_kind.ml) -> Singleton (singleton s.name s.obj)
| Tree modules ->
let names = name :: names in
make names modules)
in
let alias =
(if Module.Name.Map.mem name modules then Module.Path.alias_suffix path else path)
|> Module.Path.to_obj
in
let intf =
match Module.Name.Map.find_opt name modules with
| None -> `Alias
| Some s -> `Node s
in
let aliased = Module.Name.Map.remove name modules in
Wrapped { alias; modules; path; aliased; intf }
;;
let make (modules : File_kind.ml Module.Name.Trie.t) : t =
Module.Name.Map.mapi modules ~f:(fun name (trie : _ Module.Name.Trie.node) ->
match trie with
| Node (m : File_kind.ml) -> Singleton (singleton m.name m.obj)
| Tree modules -> make [ name ] modules)
;;
end
module Library = struct
(* Collect source files *)
let scan ~module_path ~dir ~include_subdirs =
let rec collect dir module_path =
let dirs, files =
let paths = Io.readdir dir in
List.partition_map paths ~f:(fun fn ->
let path = Filename.concat dir fn in
let is_dir = Sys.is_directory path in
let module_path =
match
match include_subdirs with
| No | Unqualified -> false
| Qualified -> is_dir
with
| true -> fn :: module_path
| false -> module_path
in
let arg = path, fn, module_path in
if is_dir then Left arg else Right arg)
in
let files =
List.filter_map files ~f:(fun (path, fn, module_path) ->
File_kind.analyse module_path dir fn
|> Option.map ~f:(fun kind -> fn, String.Trie.Node { Source.file = path; kind }))
|> String.Map.of_list
in
let dirs =
match include_subdirs with
| No -> String.Trie.empty
| Unqualified | Qualified ->
List.map dirs ~f:(fun (dir, fn, module_path) ->
fn, String.Trie.Tree (collect dir module_path))
|> String.Map.of_list
in
String.Map.union files dirs ~f:(fun _ _ _ -> assert false)
in
collect dir module_path
;;
module Conv = Trie.Conv (String.Trie) (Module.Name.Trie)
let modules
sources
~namespace
~(include_subdirs : include_subdirs)
~build_info_module
~root_module
=
let sources =
let sources =
let cons_opt (what : File_kind.ml option) trie =
match what with
| None -> trie
| Some x -> String.Trie.add_exn trie [ Module.Name.to_fname x.name ~kind:`Ml ] x
in
String.Trie.filter_map sources ~f:(fun { Source.file = _; kind } ->
match (kind : File_kind.t) with
| Asm _ | Header | C _ -> None
| Ml module_ -> Some module_)
|> cons_opt build_info_module
|> cons_opt root_module
in
match include_subdirs with
| Qualified -> Conv.conv sources ~node:(fun x -> Some x) ~key:Module.Name.of_fname
| No | Unqualified ->
String.Trie.to_list sources
|> List.rev_map ~f:(fun (m : File_kind.ml) -> m.name, Module.Name.Trie.Node m)
|> Module.Name.Map.of_list_reduce ~f:(fun x _ -> x)
in
match namespace with
| None -> sources
| Some s -> Module.Name.Map.singleton s (Module.Name.Trie.Tree sources)
;;
type t =
{ ocaml_files : string list
; alias_files : string list
; c_files : Source.c_file list
; asm_files : Source.asm_file list
; group : Group.t
; root_module : string option
; path_by_obj : Module.Path.t Module.Obj.Map.t
}
let keep_asm
{ File_kind.syntax; arch; os; assembler = _ }
~ccomp_type
~architecture
~os_type
=
(match os with
| Some `Unix -> os_type = `Unix
| Some `Win -> os_type = `Win32
| None -> true)
&& (match syntax, ccomp_type with
| `Intel, `Msvc -> true
| `Gas, `Msvc -> false
| `Gas, _ -> true
| `Intel, _ -> false)
&&
match arch, architecture with
| None, _ -> true
| Some `Amd64, `amd64 -> true
| Some `Amd64, _ -> false
;;
let keep_c { File_kind.arch; flags = _ } ~architecture =
match arch with
| None -> true
| Some `Arm64 -> architecture = `arm64
| Some `X86 -> architecture = `amd64 || architecture = `x86_64
;;
let make_c (c : File_kind.c) ~fn ~os_type ~word_size ~ccomp_type =
let extra_flags =
match fn, ccomp_type, os_type, word_size with
| (fn, _, `Cygwin, _ | fn, _, _, `Thirty_two)
when String.starts_with ~prefix:"blake3_" fn ->
[ "-DBLAKE3_NO_SSE2"
; "-DBLAKE3_NO_SSE41"
; "-DBLAKE3_NO_AVX2"
; "-DBLAKE3_NO_AVX512"
]
| "lmdb_stubs.c", `Msvc, `Win32, _ -> [ "-I ."; "/wd5287" ]
| "lmdb_stubs.c", _, _, _ -> [ "-I ." ]
| "mdb.c", `Msvc, `Win32, _ -> [ "/wd4333"; "/wd4172" ]
| "mdb.c", `Other, `Win32, _ -> [ "-Wno-return-local-addr" ]
| _, _, _, _ -> []
in
{ Source.flags = extra_flags @ c.flags; name = fn }
;;
let gen_build_info_module (ml : File_kind.ml) =
let src =
let fn = Module.Name.to_fname ml.name ~kind:`Ml in
{ Source.file = fn; kind = File_kind.Ml ml }
in
let mangled = Source.mangle_filename src in
let oc = Io.open_out (build_dir ^/ mangled) in
let+ () = Build_info.gen_data_module oc in
close_out oc;
src, mangled
;;
let process_source_file ~header ({ Source.file = fn; kind } as source) =
let mangled = Source.mangle_filename source in
let dst = build_dir ^/ mangled in
match kind with
| Asm _ ->
Io.copy fn dst;
Fiber.return [ mangled ]
| Header | C _ ->
Io.copy_with_directive ~directive:"line" fn dst;
Fiber.return [ mangled ]
| Ml { kind = `Ml | `Mli; _ } ->
Io.copy_with_header ~header fn dst;
Fiber.return [ mangled ]
| Ml { kind = `Mll; _ } -> copy_lexer fn dst ~header >>> Fiber.return [ mangled ]
| Ml { kind = `Mly; _ } ->
(* CR rgrinberg: what if the parser already has an mli? *)
copy_parser fn dst ~header >>> Fiber.return [ mangled; mangled ^ "i" ]
;;
let make_asm ~ext_obj ~fn (asm : File_kind.asm) =
let out_file = Filename.chop_extension fn ^ ext_obj in
{ Source.flags =
(match asm.assembler with
| `C_comp -> [ "-c"; fn; "-o"; out_file ]
| `Msvc_asm -> [ "/nologo"; "/quiet"; "/Fo" ^ out_file; "/c"; fn ])
; assembler = asm.assembler
; out_file
}
;;
let with_namespace ~namespace path =
match namespace with
| None -> path
| Some prefix -> Module.Path.namespace path ~prefix
;;
let header_by_file =
let rec wrapped (modules : Group.wrapped) name path =
modules.alias
::
(match Module.Name.Map.find_opt name modules.modules with
| None -> []
| Some w -> node w path)
and group (g : Group.t) name (path : Module.Name.t list) =
match Module.Name.Map.find_opt name g with
| None -> []
| Some n -> node n path
and node (n : Group.node) path =
match n with
| Singleton _ -> []
| Wrapped w -> unpath path (wrapped w)
and unpath path k =
match path with
| [] -> []
| p :: xs -> k p xs
in
fun (source : _ Source.t) (g : Group.t) ->
match source.kind with
| File_kind.Ml m ->
let comps = Module.Path.to_list m.module_path |> List.rev in
let comps = unpath comps (group g) in
List.map comps ~f:Module.Obj.to_name |> gen_opens
| _ -> ""
;;
let process
{ path = dir
; main_module_name = namespace
; include_subdirs
; special_builtin_support = build_info_module
; root_module
}
~ext_obj
~ccomp_type
~architecture
~word_size
~os_type
=
let with_namespace name = with_namespace ~namespace (Module.Path.of_name name) in
let build_info_module =
Option.map build_info_module ~f:(fun name ->
let module_path = with_namespace name in
let obj = Module.Path.to_obj module_path in
{ File_kind.kind = `Ml; name; module_path; obj })
in
let root_module =
Option.map root_module ~f:(fun { name; entries } ->
let module_path = with_namespace name in
let obj = Module.Path.to_obj module_path in
{ File_kind.kind = `Ml; name; module_path; obj }, entries)
in
let user_written_sources =
let module_path =
match namespace with
| None -> []
| Some x -> [ Module.Name.to_string x ]
in
scan ~module_path ~dir ~include_subdirs
in
let modules, path_by_obj =
let root_module = Option.map root_module ~f:fst in
let trie =
modules
~namespace
~include_subdirs
~build_info_module
~root_module
user_written_sources
in
let path_by_obj =
Module.Name.Trie.fold trie ~init:[] ~f:(fun m acc ->
(m.obj, m.module_path) :: acc)
|> Module.Obj.Map.of_list
in
Group.make trie, path_by_obj
in
let+ files, build_info_file =
Fiber.fork_and_join
(fun () ->
String.Trie.to_list user_written_sources
|> Fiber.parallel_map ~f:(fun file ->
let header = header_by_file file modules in
process_source_file ~header file >>| List.map ~f:(fun x -> file, x))
>>| List.concat)
(fun () ->
match build_info_module with
| None -> Fiber.return None
| Some m ->
let+ src, mangled = gen_build_info_module m in
Some (src, mangled))
in
let root_module =
Option.map root_module ~f:(fun (m, entries) ->
let src =
let fn = Module.Name.to_fname m.name ~kind:`Ml in
{ Source.file = fn; kind = File_kind.Ml m }
in
let mangled = Source.mangle_filename src in
Io.with_file_out (build_dir ^/ mangled) ~f:(fun oc ->
List.map entries ~f:(fun entry -> entry, entry) |> gen_module oc);
src, mangled)
in
let alias_files = Group.generate_aliases modules in
let c_files, ocaml_files, asm_files =
List.cons_opt build_info_file files
|> List.cons_opt root_module
|> List.partition_map_skip ~f:(fun ((src : File_kind.t Source.t), fn) ->
match src.kind with
| C c ->
if keep_c c ~architecture
then `Left (make_c c ~fn ~os_type ~word_size ~ccomp_type)
else `Skip
| Ml _ -> `Middle fn
| Header -> `Skip
| Asm asm ->
if keep_asm asm ~ccomp_type ~architecture ~os_type
then `Right (make_asm ~ext_obj ~fn asm)
else `Skip)
in
let root_module = Option.map root_module ~f:snd in
{ ocaml_files
; alias_files
; c_files
; asm_files
; group = modules
; root_module
; path_by_obj
}
;;
end
module Dep = struct
type 'dep t =
{ file : string
; deps : 'dep list
}
let empty file = { file; deps = [] }
end
let ocamldep args =
Process.run_and_capture Config.ocamldep ("-modules" :: args) ~cwd:build_dir
>>| String.split_lines
>>| List.map ~f:(fun line ->
let colon = String.index line ':' in
let filename = String.sub line ~pos:0 ~len:colon in
let modules =
if colon = String.length line - 1
then []
else
String.sub line ~pos:(colon + 2) ~len:(String.length line - colon - 2)
|> String.split_on_char ~sep:' '
|> List.map ~f:Module.Name.of_string
in
{ Dep.file = filename; deps = modules })
>>| List.sort ~cmp:compare
;;
let ccopt x = [ "-ccopt"; x ]
let rec dep_of_node path (n : Group.node) =
match n with
| Singleton s -> [ s.obj ]
| Wrapped w -> dep_of_wrapped path w
and dep_of_wrapped path (w : Group.wrapped) =
if Module.Path.is_prefix path ~prefix:w.path
then []
else (
match w.intf with
| `Node n -> dep_of_node path n
| `Alias ->
w.alias
:: (Module.Name.Map.to_list w.aliased
|> List.concat_map ~f:(fun (_, (m : Group.node)) -> dep_of_node path m)))
;;
let convert_dependencies ~alias_modules ~all_source_files ~groups ~path { Dep.file; deps }
=
let is_mli = Filename.check_suffix file ".mli" in
let convert_module module_name =
List.find_map groups ~f:(fun (g : Group.t) ->
match Module.Name.Map.find_opt module_name g with
| None -> None
| Some n -> Some (dep_of_node path n))
|> Option.value ~default:[]
|> List.concat_map ~f:(fun obj_name ->
let ml = Module.Obj.to_fname obj_name ~kind:`Ml in
let mli = Module.Obj.to_fname obj_name ~kind:`Mli in
if Filename.chop_extension ml = Filename.chop_extension file
then (* Self-reference *)
[]
else if String.Set.mem mli all_source_files
then
if (not is_mli) && String.Set.mem ml all_source_files
then (* We need to build the .ml for inlining info *)
[ mli; ml ]
else (* .mli files never depend on .ml files *)
[ mli ]
else if String.Set.mem ml all_source_files
then [ (* If there's no .mli, then we must always depend on the .ml *) ml ]
else (* This is a module coming from an external library *)
[])
in
let deps =
List.concat
[ List.concat_map ~f:convert_module deps
; String.Map.find_opt file alias_modules |> Option.value ~default:[]
; (if (not is_mli) && String.Set.mem (file ^ "i") all_source_files
then [ file ^ "i" ]
else [])
]
in
{ Dep.file; deps }
;;
let write_args file args =
Io.with_file_out (build_dir ^/ file) ~f:(fun ch ->
output_string ch (String.concat ~sep:"\n" args));
[ "-args"; file ]
;;
let get_dependencies libraries =
let+ deps =
let alias_files =
List.concat_map libraries ~f:(fun (lib : Library.t) -> lib.alias_files)
in
let all_source_files =
List.concat_map libraries ~f:(fun (lib : Library.t) -> lib.ocaml_files)
in
let alias_files_by_sources =
List.concat_map libraries ~f:(fun (lib : Library.t) ->
List.rev_map lib.ocaml_files ~f:(fun ml -> ml, lib.alias_files))
|> String.Map.of_list
in
let+ dependencies =
let args = write_args "source_files" all_source_files in
ocamldep args
in
let lib_by_file =
List.concat_map libraries ~f:(fun (lib : Library.t) ->
List.rev_map lib.ocaml_files ~f:(fun f -> f, lib))
|> String.Map.of_list
in
let toplevel_modules =
List.map libraries ~f:(fun (lib : Library.t) -> lib.group) |> Group.merge_all
in
let path_by_obj =
List.fold_left libraries ~init:Module.Obj.Map.empty ~f:(fun acc (lib : Library.t) ->
Module.Obj.Map.union ~f:(fun _ _ _ -> assert false) acc lib.path_by_obj)
in
List.concat
[ (* Alias files have no dependencies *)
List.rev_map alias_files ~f:Dep.empty
; (let all_source_files =
List.fold_left
alias_files
~init:(String.Set.of_list all_source_files)
~f:(fun acc fn -> String.Set.add fn acc)
in
List.rev_map dependencies ~f:(fun (dep : _ Dep.t) ->
let module_path =
let obj = Module.Name.of_fname dep.file |> Module.Obj.of_name in
Module.Obj.Map.find obj path_by_obj |> Module.Path.parent
in
let groups =
let groups = Group.find_groups toplevel_modules module_path in
let lib = String.Map.find dep.file lib_by_file in
if lib.root_module = Some dep.file
then [ List.hd (List.rev groups) ]
else groups
in
convert_dependencies
~path:module_path
~groups
~alias_modules:alias_files_by_sources
~all_source_files
dep))
]
in
if debug
then (
eprintf "***** Dependencies *****\n";
List.iter deps ~f:(fun { Dep.file = fn; deps } ->
eprintf "%s: %s\n" fn (String.concat deps ~sep:" "));
eprintf "**********\n");
deps
;;
let assemble_libraries
{ local_libraries; target = _; external_libraries = _ }
~ext_obj
~ccomp_type
~architecture
~word_size
~os_type
=
(* In order to assemble all the sources in one place, the executables
modules are also put in a namespace *)
local_libraries @ [ Libs.main ]
|> Fiber.parallel_map
~f:(Library.process ~ext_obj ~ccomp_type ~architecture ~word_size ~os_type)
;;
type status =
| Not_started of { deps : string list }
| Initializing
| Started of unit Fiber.Future.t
let resolve_externals external_libraries =
let external_libraries, external_includes =
let convert = function
| "threads" -> Some ("threads" ^ Config.ocaml_archive_ext, [ "-I"; "+threads" ])
| "unix" -> Some ("unix" ^ Config.ocaml_archive_ext, Config.unix_library_flags)
| "csexp" | "pp" | "re" | "seq" | "spawn" | "uutf" -> None
| s -> fatal "unhandled external library %s" s
in
List.filter_map ~f:convert external_libraries |> List.split
in
let external_includes = List.concat external_includes in
external_libraries, external_includes
;;
let sort_files dependencies ~main =
let deps_by_file = Hashtbl.create (List.length dependencies) in
List.iter dependencies ~f:(fun { Dep.file; deps } ->
Hashtbl.add deps_by_file ~key:file ~data:deps);
let seen = ref String.Set.empty in
let res = ref [] in
let rec loop file =
if not (String.Set.mem file !seen)
then (
seen := String.Set.add file !seen;
List.iter (Hashtbl.find deps_by_file file) ~f:loop;
res := file :: !res)
in
loop (Filename.basename main);
List.rev !res
;;
let common_build_args name ~external_includes ~external_libraries =
List.concat
[ [ "-o"; name ^ ".exe"; "-g" ]
; (match Config.mode with
| Byte -> [ Config.output_complete_obj_arg ]
| Native -> [])
; external_includes
; external_libraries
]
;;
let allow_unstable_sources = [ "-alert"; "-unstable" ]
let ocaml_warnings =
let warnings =
[ (* Warning 49 [no-cmi-file]: no cmi file was found in path for module *)
"-49"
; (* Warning 23: all the fields are explicitly listed in this record: the
'with' clause is useless.
In order to stay version independent, we use a trick with `with` by
creating a dummy value and filling in the fields available in every
OCaml version. forced_major_collections is the one missing in versions
older than 4.12. We therefore disable warning 23 for our purposes. *)
"-23"
; (* Warning 53 [misplaced-attribute]: the "alert" attribute cannot appear
in this context
Any .mli files that begin wtih [@@@alert] will cause the compiler to
emit warning 53 due to the way we alias modules with an `open!`. It may
be possible to use the command line flag `-open` instead, however this
complicates dependency tracking so disabling this warning instead is
suitable for our purposes. *)
"-53"
]
in
[ "-w"; String.concat ~sep:"" warnings ]
;;
let build
~ext_obj
~c_compiler
~dependencies
~c_files
~asm_files
~build_flags
~link_flags
{ target = name, main; external_libraries; _ }
=
let table =
let num_dependencies = List.length dependencies in
Status_line.num_jobs := num_dependencies;
Hashtbl.create num_dependencies
in
let external_libraries, external_includes = resolve_externals external_libraries in
let rec build ~stack m =
match Hashtbl.find table m with
| exception Not_found -> fatal "file not found: %s" m
| Initializing ->
Format.eprintf "cycle:@.";
List.iter stack ~f:(Format.eprintf "- %s@.");
fatal "dependency cycle compiling %s" m
| Started fut -> Fiber.Future.wait fut
| Not_started { deps } ->
let* fut =
Hashtbl.replace table ~key:m ~data:Initializing;
Fiber.fork (fun () ->
let* () = Fiber.parallel_iter deps ~f:(build ~stack:(m :: stack)) in
List.concat
[ [ "-c"; "-g"; "-no-alias-deps" ]
; ocaml_warnings
; allow_unstable_sources
; external_includes
; [ m ]
]
|> Process.run ~cwd:build_dir Config.compiler)
in
Hashtbl.replace table ~key:m ~data:(Started fut);
let+ () = Fiber.Future.wait fut in
incr Status_line.num_jobs_finished
in
List.iter dependencies ~f:(fun { Dep.file; deps } ->
Hashtbl.add table ~key:file ~data:(Not_started { deps }));
let* obj_files =
Fiber.fork_and_join_unit
(fun () -> build ~stack:[] (Filename.basename main))
(fun () ->
(Fiber.fork_and_join (fun () ->
Fiber.parallel_map c_files ~f:(fun { Source.name = file; flags } ->
let+ () =
List.concat
[ [ "-c"; "-g" ]
; external_includes
; build_flags
; [ file ]
; List.concat_map flags ~f:ccopt
]
|> Process.run ~cwd:build_dir Config.compiler
in
Filename.chop_extension file ^ ext_obj)))
(fun () ->
Fiber.parallel_map
asm_files
~f:(fun { Source.assembler; flags; out_file } ->
let+ () =
Process.run
~cwd:build_dir
(match assembler with
| `C_comp -> c_compiler
| `Msvc_asm -> "ml64.exe")
flags
in
out_file))
>>| fun (x, y) -> x @ y)
in
let args =
let compiled_ml_files =
let compiled_ml_ext =
match Config.mode with
| Byte -> ".cmo"
| Native -> ".cmx"
in
sort_files dependencies ~main
|> List.filter_map ~f:(fun fn ->
match Filename.extension fn with
| ".ml" -> Some (Filename.remove_extension fn ^ compiled_ml_ext)
| _ -> None)
in
write_args "compiled_ml_files" compiled_ml_files
in
List.concat
[ common_build_args name ~external_includes ~external_libraries
; obj_files
; args
; link_flags
; (if static then ccopt "-static" else [])
; allow_unstable_sources
]
|> Process.run ~cwd:build_dir Config.compiler
;;
let get_flags system xs =
List.find_map xs ~f:(fun (set, f) -> if List.mem system ~set then Some f else None)
|> Option.value ~default:[]
;;
let windows_system_values = [ "win32"; "win64"; "mingw"; "mingw64" ]
let build_flags =
[ windows_system_values, List.concat_map ~f:ccopt [ "-D_UNICODE"; "-DUNICODE" ] ]
;;
let link_flags =
let cclib x = [ "-cclib"; x ] in
(* additional link flags keyed by the platform *)
[ ( [ "macosx" ]
, List.concat_map ~f:cclib [ "-framework CoreFoundation"; "-framework CoreServices" ]
)
; windows_system_values, List.concat_map ~f:cclib [ "-lshell32"; "-lole32"; "-luuid" ]
; [ "beos" ], cclib "-lbsd" (* flags for Haiku *)
]
;;
(** {2 Bootstrap process} *)
let main () =
(try Io.clear build_dir with
| Sys_error _ -> ());
(try Unix.mkdir build_dir 0o777 with
| Unix.Unix_error (Unix.EEXIST, _, _) -> ());
let* ocaml_config = Config.ocaml_config () in
let ext_obj = Config.ext_obj ocaml_config in
let* libraries =
let ccomp_type = Config.ccomp_type ocaml_config in
let word_size = Config.word_size ocaml_config in
let os_type = Config.os_type ocaml_config in
let architecture = Config.architecture ocaml_config in
assemble_libraries task ~ext_obj ~ccomp_type ~architecture ~word_size ~os_type
in
let c_files = List.concat_map ~f:(fun (lib : Library.t) -> lib.c_files) libraries in
let asm_files = List.concat_map ~f:(fun (lib : Library.t) -> lib.asm_files) libraries in
let* dependencies = get_dependencies libraries in
let ocaml_system = Config.system ocaml_config in
let build_flags = get_flags ocaml_system build_flags in
let link_flags = get_flags ocaml_system link_flags in
let c_compiler = Config.c_compiler ocaml_config in
build
~ext_obj
~c_compiler
~dependencies
~asm_files
~c_files
~build_flags
~link_flags
task
;;
let () = Fiber.run (main ())
|