dune/README.md

278 lines
9.3 KiB
Markdown
Raw Normal View History

Dune (Jbuilder) - A composable build system
===========================================
__Jbuilder has been renamed to Dune__. A full renaming of the documentation and
the tool will be done as part of the 1.0 release.
2016-12-02 13:54:32 +00:00
2017-04-20 15:52:05 +00:00
Jbuilder is a build system designed for OCaml/Reason projects only. It
2017-02-28 17:20:41 +00:00
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 Jbuilder 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
2017-08-06 09:39:42 +00:00
long time and is used daily by hundreds of developers, which means
2017-02-28 17:20:41 +00:00
that it is highly tested and productive.
2016-12-02 13:54:32 +00:00
Jbuilder comes with a [manual][manual]. If you want to get started
2017-11-26 19:12:23 +00:00
without reading too much, you can look at the [quick start
guide][quick-start] or watch [this introduction video][video].
2017-02-21 15:09:26 +00:00
2017-06-13 16:07:36 +00:00
The [example][example] directory contains examples of projects using
jbuilder.
2017-03-21 14:37:35 +00:00
[![Travis status][travis-img]][travis] [![AppVeyor status][appveyor-img]][appveyor]
2017-03-01 09:04:01 +00:00
2017-07-14 11:19:55 +00:00
[manual]: https://jbuilder.readthedocs.io/en/latest/
[quick-start]: https://jbuilder.readthedocs.io/en/latest/quick-start.html
[example]: https://github.com/ocaml/dune/tree/master/example
2018-01-23 05:23:19 +00:00
[travis]: https://travis-ci.org/ocaml/dune
[travis-img]: https://travis-ci.org/ocaml/dune.svg?branch=master
2018-01-23 05:22:32 +00:00
[appveyor]: https://ci.appveyor.com/project/diml/dune/branch/master
2018-01-23 05:21:42 +00:00
[appveyor-img]: https://ci.appveyor.com/api/projects/status/rsxayce22e8f2jkp?svg=true
[merlin]: https://github.com/ocaml/merlin
[opam]: https://opam.ocaml.org
[jenga]: https://github.com/janestreet/jenga
[issues]: https://github.com/ocaml/dune/issues
[topkg-jbuilder]: https://github.com/diml/topkg-jbuilder
2017-11-26 19:12:23 +00:00
[video]: https://youtu.be/BNZhmMAJarw
2016-12-02 13:54:32 +00:00
Overview
--------
Jbuilder reads project metadata from `jbuild` files, which are either
2017-02-28 17:20:41 +00:00
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][merlin], handle installation,
etc...
2017-02-28 17:20:41 +00:00
Jbuilder itself is fast, has very low overhead and supports parallel
2017-02-28 17:20:41 +00:00
builds on all platforms. It has no system dependencies: all you need
to build jbuilder and packages using jbuilder is OCaml. You don't need
`make` or `bash` as long as the packages themselves don't use `bash`
explicitly.
2016-12-02 13:54:32 +00:00
2017-04-24 11:58:11 +00:00
Especially, one can install OCaml on Windows with a binary installer
and then use only the Windows Console to build Jbuilder and packages
using Jbuilder.
2016-12-02 13:54:32 +00:00
Strengths
---------
2016-12-02 13:54:32 +00:00
### Composable
2016-12-02 13:54:32 +00:00
2017-02-28 17:20:41 +00:00
Take n repositories that use Jbuilder, arrange them in any way on the
file system and the result is still a single repository that Jbuilder
knows how to build at once.
2016-12-02 13:54:32 +00:00
2017-02-28 17:20:41 +00:00
This make simultaneous development on multiple packages trivial.
2016-12-02 13:54:32 +00:00
### Gracefully handles multi-package repositories
2016-12-02 13:54:32 +00:00
2017-02-28 17:20:41 +00:00
Jbuilder knows how to handle repositories containing several
packages. When building via [opam][opam], it is able to correctly use
2017-02-28 17:20:41 +00:00
libraries that were previously installed even if they are already
present in the source tree.
2016-12-02 13:54:32 +00:00
The magic invocation is:
```sh
$ jbuilder build --only-packages <package-name> @install
```
2016-12-02 13:54:32 +00:00
### Building against several configurations at once
2016-12-02 13:54:32 +00:00
2017-02-28 17:20:41 +00:00
Jbuilder 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 tests them all at once
without hassle.
2016-12-02 13:54:32 +00:00
2017-02-28 17:20:41 +00:00
This feature should make cross-compilation easy, see details in the
2017-06-02 12:55:11 +00:00
[roadmap](ROADMAP.md).
2016-12-02 13:54:32 +00:00
This feature requires [opam][opam].
2016-12-02 13:54:32 +00:00
### Jenga bridge
2016-12-02 13:54:32 +00:00
[Jenga][jenga] is another build system for OCaml that has more
advanced features such as polling or much better editor
integration. Jenga is more powerful and more complex and as a result
2017-06-30 21:33:37 +00:00
has many more dependencies. It is planned to implement a small bridge
between the two so that a Jbuilder project can build with Jenga using
this bridge.
2016-12-02 13:54:32 +00:00
Requirements
------------
Jbuilder requires OCaml version 4.02.3 or greater.
2017-06-05 15:32:58 +00:00
installation
------------
The recommended way to install jbuilder is via the
[opam package manager][opam]:
```sh
$ opam install jbuilder
```
You can also build it manually with:
```sh
$ make release
$ make install
```
Note however that `make install` requires the `opam-installer`
tool. Running simply `make` will build jbuilder using the development
settings.
If you do not have `make`, you can do the following:
```sh
$ ocaml bootstrap.ml
$ ./boot.exe
$ ./_build/default/bin/main.exe install
```
Support
-------
If you have questions about jbuilder, you can send an email to
ocaml-core@googlegroups.com or [open a ticket on github][issues].
Status
------
2016-12-02 13:54:32 +00:00
2017-03-10 12:43:38 +00:00
Jbuilder is now in beta testing stage. Once a bit more testing has
been done, it will be released in 1.0.
2016-12-02 13:54:32 +00:00
Roadmap
-------
2016-12-02 13:54:32 +00:00
2017-06-02 12:55:11 +00:00
See [the roadmap](ROADMAP.md) for the current plan. Help on any of
these points is welcome!
2017-02-28 17:20:41 +00:00
FAQ
---
2017-03-21 14:37:35 +00:00
### Why do many Jbuilder projects contain a Makefile?
2017-03-21 14:37:35 +00:00
Many Jbuilder project contain a toplevel `Makefile`. It is often only
2017-06-30 21:33:37 +00:00
there for convenience, for the following reasons:
2017-03-21 14:37:35 +00:00
1. there are many different build systems out there, all with a
different CLI. If you have been hacking for a long time, the one
true invocation you know is `make && make install`, possibly
preceded by `./configure`
2017-03-21 14:37:35 +00:00
2. you often have a few common operations that are not part of the
build and `make <blah>` is a good way to provide them
2017-03-21 14:37:35 +00:00
3. `make` is shorter to type than `jbuilder build @install`
2017-03-21 14:37:35 +00:00
### How to add a configure step to a jbuilder project?
[example/sample-projects/with-configure-step](example/sample-projects/with-configure-step) shows
one way to do it which preserves composability; i.e. it doesn't require manually
running `./configure` script when working on multiple projects at the same time.
### Can I use topkg with jbuilder?
2017-05-08 16:11:04 +00:00
Yes, have a look at the [topkg-jbuilder][topkg-jbuilder] project for
more details.
2017-05-08 16:11:04 +00:00
2018-01-18 17:41:12 +00:00
### Where can I find some examples of projects using Jbuilder?
2018-02-02 13:39:42 +00:00
The [dune-universe](https://github.com/dune-universe/dune-universe)
repository contains a snapshot of the latest versions of all opam packages
depending on jbuilder. It is therefore a useful reference to search through
to find different approaches to constructing build rules.
Known issues
------------
2017-04-05 11:50:56 +00:00
### mli only modules
2018-03-03 10:34:41 +00:00
These are supported, however using them might cause make it impossible
for non-jbuilder users to use your library. We tried to use them for
some internal module generated by Jbuilder and it broke the build of
projects not using Jbuilder:
2018-03-03 10:34:41 +00:00
https://github.com/ocaml/dune/issues/567
2018-03-03 10:34:41 +00:00
So, while they are supported, you should be careful where you use
them. Using a `.ml` only module is still preferable.
Implementation details
----------------------
2017-02-28 17:20:41 +00:00
This section is for people who want to work on Jbuilder itself.
### Bootstrap
2017-02-28 17:20:41 +00:00
In order to build itself, Jbuilder uses an OCaml script
([bootstrap.ml](bootstrap.ml)) that dumps most of the sources of Jbuilder into a
single `boot.ml` file. This file is built using `ocamlopt` or `ocamlc`
and used to build everything else.
2017-02-28 17:20:41 +00:00
Note that we don't include all of the sources in boot.ml. We skip a
few parts to speed up the build. In particular:
- vendored libraries are replaced by simpler implementations taken
from `vendor/boot`
- a few files in `src` have an alternative version. These alternatives
versions are named `XXX.boot.EXT`. For instance: `glob_lexer.boot.ml`
### OCaml compatibility test
2017-02-28 17:20:41 +00:00
Install opam switches for all the entries in the
[jbuild-workspace.dev](jbuild-workspace.dev) file and run:
2017-02-28 17:20:41 +00:00
```sh
2017-02-28 17:20:41 +00:00
$ make all-supported-ocaml-versions
```
2017-02-28 17:20:41 +00:00
### Repository organization
2017-02-28 17:20:41 +00:00
- `vendor/` contains dependencies of Jbuilder, that have been vendored
- `plugin/` contains the API given to `jbuild` files that are OCaml
2017-02-28 17:20:41 +00:00
scripts
- `src/` contains the core of `Jbuilder`, as a library so that it can
2017-02-28 17:20:41 +00:00
be used to implement the Jenga bridge later
- `bin/` contains the command line interface
- `doc/` contains the manual and rules to generate the manual pages
2017-02-28 17:20:41 +00:00
### Design
2017-02-28 17:20:41 +00:00
Jbuilder was initially designed to sort out the public release of Jane
Street packages which became incredibly complicated over time. It is
still successfully used for this purpose.
One necessary feature to achieve this is the ability to precisely
report the external dependencies necessary to build a given set of
2017-02-28 17:20:41 +00:00
targets without running any command, just by looking at the source
tree. This is used to automatically generate the `<package>.opam`
2017-02-28 17:20:41 +00:00
files for all Jane Street packages.
To implement this, the build rules are described using a build arrow,
which is defined in [src/build.mli](src/build.mli). In the end it makes the
development of the internal rules of Jbuilder very composable and
quite pleasant.
2017-02-28 17:20:41 +00:00
To deal with process multiplexing, Jbuilder uses a simplified
Lwt/Async-like monad, implemented in [src/future.mli](src/future.mli).
2017-02-28 17:20:41 +00:00
#### Code flow
2017-02-28 17:20:41 +00:00
- [src/jbuild.mli](src/jbuild.mli) contains the internal representation
of `jbuild` files and the parsing code
- [src/jbuild_load.mli](src/jbuild_load.mli) contains the code to scan
a source tree and build the internal database by reading
the `jbuild` files
- [src/gen_rules.mli](src/gen_rules.mli) contains all the build rules
of Jbuilder
- [src/build_system.mli](src/build_system.mli) contains a trivial
implementation of a Build system. This is what Jenga will provide
when implementing the bridge