-
Notifications
You must be signed in to change notification settings - Fork 56
Building OCaml
linuxonz edited this page Jan 23, 2025
·
45 revisions
Below versions of OCaml are available in respective distributions at the time of creation of these build instructions:
- RHEL (8.8, 8.10) have
4.07.0
- RHEL (9.2, 9.4, 9.5) have
4.11.1
- SLES 15 SP6 has
4.14.2
- Ubuntu 20.04 has
4.08.1
- Ubuntu 22.04 has
4.13.1
- Ubuntu (24.04, 24.10) have
4.14.1
The instructions provided below specify the steps to build OCaml v5.3.0 on Linux on IBM Z for following distributions:
- RHEL (8.8, 8.10, 9.2, 9.4, 9.5)
- SLES 15 SP6
- Ubuntu (20.04, 22.04, 24.04, 24.10)
General Notes:
- When following the steps below please use a standard permission user unless otherwise specified.
- A directory
/<source_root>/
will be referred to in these instructions, this is a temporary writable directory anywhere you'd like to place it.
export SOURCE_ROOT=/<source_root>/
-
RHEL (8.8, 8.10)
sudo yum install -y gcc make git gawk sed diffutils
-
RHEL (9.2, 9.4, 9.5)
sudo yum install -y gcc gcc-c++ make git gawk sed diffutils binutils lbzip2 hostname tar unzip cmake curl wget vim patch tcl gettext autoconf libtool automake bzip2 zlib zlib-devel bison
-
SLES 15 SP6
sudo zypper install -y gcc make git-core gawk sed diffutils
-
Ubuntu (20.04, 22.04, 24.04, 24.10)
sudo apt-get update sudo apt-get -y install gcc make git gawk sed diffutils
cd $SOURCE_ROOT
git clone -b 5.3.0 https://github.com/ocaml/ocaml.git
cd ocaml
./configure --enable-ocamltest
make
make tests
sudo make install
ocaml --version
The output should be:
The OCaml toplevel, version 5.3.0
The information provided in this article is accurate at the time of writing, but on-going development in the open-source projects involved may make the information incorrect or obsolete. Please open issue or contact us on IBM Z Community if you have any questions or feedback.