dune

A composable build system for OCaml.

Github星跟踪图

Dune - A composable build system

Dune is a build system designed for OCaml/Reason projects only. It
focuses on providing the user with a consistent experience and takes
care of most of the low-level details of OCaml compilation. All you
have to do is provide a description of your project and dune will
do the rest.

The scheme it implements is inspired from the one used inside Jane
Street and adapted to the open source world. It has matured over a
long time and is used daily by hundreds of developers, which means
that it is highly tested and productive.

Dune comes with a manual. If you want to get started
without reading too much, you can look at the quick start
guide
or watch this introduction video.

The example directory contains examples of projects using
dune.

Travis status
AppVeyor status
Release

Overview

Dune reads project metadata from dune files, which are either
static files in a simple S-expression syntax or OCaml scripts. It uses
this information to setup build rules, generate configuration files
for development tools such as merlin, handle installation,
etc...

Dune itself is fast, has very low overhead and supports parallel
builds on all platforms. It has no system dependencies: all you need
to build dune and packages using dune is OCaml. You don't need
make or bash as long as the packages themselves don't use bash
explicitly.

In particular, one can install OCaml on Windows with a binary installer
and then use only the Windows Console to build dune and packages
using dune.

Strengths

Composable

Take n repositories that use dune, arrange them in any way on the
file system and the result is still a single repository that dune
knows how to build at once.

This make simultaneous development on multiple packages trivial.

Gracefully handles multi-package repositories

Dune knows how to handle repositories containing several
packages. When building via opam, it is able to correctly use
libraries that were previously installed even if they are already
present in the source tree.

The magic invocation is:

$ dune build --only-packages <package-name> @install

Building against several configurations at once

Dune is able to build a given source code repository against
several configurations simultaneously. This helps maintaining packages
across several versions of OCaml as you can test them all at once
without hassle.

In particular, this makes it easy to handle cross-compilation.

This feature requires opam.

Requirements

Dune requires OCaml version 4.07.0 to build itself and can build OCaml
projects using ocaml 4.02.3 or greater.

Installation

The recommended way to install dune is via the opam package manager:

$ opam install dune

You can also build it manually with:

$ make release
$ make install

If you do not have make, you can do the following:

$ ocaml bootstrap.ml
$ ./dune.exe build -p dune --profile dune-bootstrap
$ ./dune.exe install dune

The first command builds the dune.exe binary. The second builds the
additional files that are installed by dune, such as the man pages, and
the last simply installs all of that on the system.

Note that unless you ran the optional ./configure script, you can
simply copy dune.exe anywhere and it will just work. dune is
fully relocatable and discovers its environment at runtime rather than
hard-coding it at compilation time.

Support

If you have questions about dune, you can send an email to
ocaml-core@googlegroups.com or open a ticket on GitHub.

Migration from jbuilder

Dune was formerly known as jbuilder. Migration from jbuilder to dune is
described in the manual.

Status

Dune is now fairly stable and is used by the majority of packages on
opam. Note that dune retains backward compatibility with Jbuilder, and
in particular existing Jbuilder projects will continue to be buildable
with dune.

主要指标

概览
名称与所有者ocaml/dune
主编程语言OCaml
编程语言OCaml (语言数: 16)
平台
许可证MIT License
所有者活动
创建于2016-10-30 18:42:23
推送于2025-06-05 15:16:27
最后一次提交
发布数161
最新版本名称3.19.0 (发布于 2025-05-21 16:59:09)
第一版名称0.1.alpha1 (发布于 )
用户参与
星数1.7k
关注者数40
派生数433
提交数14k
已启用问题?
问题数3188
打开的问题数923
拉请求数7479
打开的拉请求数122
关闭的拉请求数1034
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?