Skip to content

Latest commit

 

History

History
47 lines (34 loc) · 2.44 KB

windows_support.md

File metadata and controls

47 lines (34 loc) · 2.44 KB
tags
learning

Windows Support

Many projects, including the OCaml compiler itself, rely on the Unix shell and its various utilities. Windows doesn't include these utilities or any of their substitutes (or even a built-in compiler), making it much harder to support a complex library on Windows.

Nevertheless, OCaml is gradually making a transition towards increased Windows support.

Options

  • OCaml on WSL (Windows Subsystem for Linux) - Windows 10 supports Ubuntu or any other Linux distribution natively. This is by far the easiest option for using OCaml on Windows, and the one that support OCaml most fully. The one disadvantage is that you'll be creating Linux binaries, which can only be run on Linux or on another Windows 10 machine that has WSL activated. GUI support is also limited to running via an X server (such as Xming) on the Windows side.

  • Several other projects exist for installing OCaml under windows. We recommend sticking to OCaml for Windows as it is the most recent distribution.

    • OCaml for Windows - The most maintained version, which installs the Cygwin toolchain and OCaml on top of that. The OCaml versions lag slightly behind, but not as much as the other projects.
    • OCPWin - A self-contained binary distribution for Windows, supports MSVC. This distribution lags behind on OCaml versions
    • Installing from source - Its possible to also install OCaml manually using the Cygwin toolcheck by following this README, published by the OCaml project.
  • Another obvious option is to run OCaml in a Linux virtual machine. If you have Windows 10 though, this is suboptimal, as WSL is much less resource-intensive than running a virtual machine.

Limitations

Using OCaml on WSL is virtually the same as using it on Linux. Otherwise, the versions supported by the windows distributions seem to lag behind the versions supported on Unix. Many tools (ocamlbuild, ocamlfind, etc.) can't be used without cygwin or some other unix-like environment.

There is work being put in by OCaml Labs to improve the windows situtation.