All Projects → ocaml → Dune

ocaml / Dune

Licence: mit
A composable build system for OCaml.

Programming Languages

ocaml
1615 projects

Labels

Projects that are alternatives of or similar to Dune

Ngc
NewGoCommand - An opinionated and lightweight project starter. (WORK IN PROGRESS)
Stars: ✭ 16 (-98.49%)
Mutual labels:  build
Angular Builders
Angular build facade extensions (Jest and custom webpack configuration)
Stars: ✭ 843 (-20.62%)
Mutual labels:  build
Graphql Factory
A toolkit for building GraphQL
Stars: ✭ 44 (-95.86%)
Mutual labels:  build
Flutter engine build
Flutter Engine构建产物归档
Stars: ✭ 19 (-98.21%)
Mutual labels:  build
C cpp project framework
CMake build system( framework) with kconfig support for C/CPP projects
Stars: ✭ 26 (-97.55%)
Mutual labels:  build
Npm Build Boilerplate
A collection of packages that build a website using npm scripts.
Stars: ✭ 963 (-9.32%)
Mutual labels:  build
Microbundle
📦 Zero-configuration bundler for tiny modules.
Stars: ✭ 6,622 (+523.54%)
Mutual labels:  build
Backfill
A JavaScript caching library for reducing build time
Stars: ✭ 50 (-95.29%)
Mutual labels:  build
Cloud Builders Community
Community-contributed images for Google Cloud Build
Stars: ✭ 842 (-20.72%)
Mutual labels:  build
Grabver
Gradle Automatic Build Versioning Plugin - An easy Gradle plugin that follows semver.org rules to automatically generate the Patch version, Build number and Code version, while Major, Minor and Pre-Release suffix remain under our control.
Stars: ✭ 39 (-96.33%)
Mutual labels:  build
Hopp
Crazy rapid build system.
Stars: ✭ 24 (-97.74%)
Mutual labels:  build
Obi
OCaml Build Infrastructure
Stars: ✭ 25 (-97.65%)
Mutual labels:  build
Cloud Builders
Builder images and examples commonly used for Google Cloud Build
Stars: ✭ 968 (-8.85%)
Mutual labels:  build
Cargo Make
Rust task runner and build tool.
Stars: ✭ 895 (-15.73%)
Mutual labels:  build
Ansible Role Packer rhel
Ansible Role - Packer RHEL/CentOS Configuration for Vagrant VirtualBox
Stars: ✭ 45 (-95.76%)
Mutual labels:  build
Androidsdk
🐳 Full-fledged Android SDK Docker Image
Stars: ✭ 776 (-26.93%)
Mutual labels:  build
Workshop Net Core Iniciantes
Repositório responsável pelo workshop para aprender os principais conceitos de desenvolvimento em .NET CORE & EF
Stars: ✭ 28 (-97.36%)
Mutual labels:  build
Dawn
🌅 Dawn is a lightweight task management and build tool for front-end and nodejs.
Stars: ✭ 1,057 (-0.47%)
Mutual labels:  build
Openjdk8 Releases
AdoptOpenJDK main binary releases for OpenJDK 8 with HotSpot
Stars: ✭ 46 (-95.67%)
Mutual labels:  build
Golang Docker Build Tutorial
A template project to create a minimal Docker image for a Go application
Stars: ✭ 36 (-96.61%)
Mutual labels:  build

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

If you are new to opam, make sure to run eval $(opam config env) to make dune available in your PATH. The dune binary is self contained and relocatable, so you can safely copy it somewhere else to make it permanently available.

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 [email protected] 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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].