Go to file
Jeremie Dimino cdcc520430 Disable old syntax for opam contexts in dune-workspace files
Signed-off-by: Jeremie Dimino <jeremie@dimino.org>
2018-07-01 01:46:32 +07:00
bin Reimplement workspace.ml with the new parsing API 2018-07-01 01:46:32 +07:00
doc Make the set language more future proof (#930) 2018-06-29 21:11:47 +01:00
example Update tests for new variables syntax 2018-06-28 09:48:35 +06:30
pkg Convert a few files to markdown 2017-06-02 13:54:23 +01:00
plugin Replace meta language by ocaml 2017-02-26 19:49:54 +00:00
src Disable old syntax for opam contexts in dune-workspace files 2018-07-01 01:46:32 +07:00
test Use Sexp.Loc.none rather than reinventing in test 2018-07-01 00:34:45 +07:00
vendor Remove most useless parentheses from the syntax (#915) 2018-06-27 16:38:05 +01:00
.gitignore Allow to set the library path at configure time (#575) 2018-03-06 14:56:24 +00:00
.ocp-indent Add a .ocp-indent file 2017-03-04 10:38:10 +00:00
.travis-ci.sh Add Which_program to know whether we are dune or jbuilder 2018-06-28 11:23:10 +01:00
.travis.yml Disable OSX tests 2018-04-17 11:22:55 +01:00
CHANGES.md Make the default build profile be dev 2018-06-28 11:23:10 +01:00
CONTRIBUTING.md Added contributing 2018-05-23 10:44:25 +01:00
HACKING.md Move hacking to its own page 2018-03-21 00:06:51 +08:00
LICENSE.md Switch to MIT License 2018-05-23 10:44:25 +01:00
MIGRATION.md Refer to migration page from manual and readme 2018-06-25 15:54:32 +06:30
Makefile Make the default build profile be dev 2018-06-28 11:23:10 +01:00
README.md Refer to migration page from manual and readme 2018-06-25 15:54:32 +06:30
appveyor.yml Make the default build profile be dev 2018-06-28 11:23:10 +01:00
bootstrap.ml Add Which_program to know whether we are dune or jbuilder 2018-06-28 11:23:10 +01:00
configure Allow to set the library path at configure time (#575) 2018-03-06 14:56:24 +00:00
configure.ml Allow to set the library path at configure time (#575) 2018-03-06 14:56:24 +00:00
dune-project Set dune language version to 1.0 (#873) 2018-06-11 16:17:22 +01:00
dune-workspace.dev Disable old syntax for opam contexts in dune-workspace files 2018-07-01 01:46:32 +07:00
dune.descr Renaming to Dune (#721) 2018-05-02 12:56:12 +01:00
dune.opam Make the default build profile be dev 2018-06-28 11:23:10 +01:00
install_ocaml.cmd Update AppVeyor to OCaml 4.06.0 2017-11-15 13:53:38 +00:00
jbuilder.descr Add a jbuilder transition package (#796) 2018-05-28 18:19:30 +01:00
jbuilder.opam Temporarily fix pinning jbuilder to master (#841) 2018-06-02 10:01:14 +01:00

README.md

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.

Jbuilder 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 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 long time and is used daily by hundreds of developers, which means that it is highly tested and productive.

Jbuilder 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 jbuilder.

Travis status AppVeyor status

Overview

Jbuilder reads project metadata from jbuild 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...

Jbuilder itself is fast, has very low overhead and supports parallel 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.

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.

Strengths

Composable

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.

This make simultaneous development on multiple packages trivial.

Gracefully handles multi-package repositories

Jbuilder 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:

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

Building against several configurations at once

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.

This feature should make cross-compilation easy, see details in the roadmap.

This feature requires opam.

Jenga bridge

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 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.

Requirements

Jbuilder requires OCaml version 4.02.3 or greater.

installation

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

$ opam install jbuilder

You can also build it manually with:

$ 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:

$ 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.

Migration from 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. The package is still in beta version as we are waiting for the renaming from Jbuilder to Dune before releasing version 1.0.0. Note that Dune will have backward compatiblity with Jbuilder, in particular existing Jbuilder projects will continue to be buildable with Dune. Additionally, Dune will be able to automatically convert a Jbuilder project into a Dune project.