package opam-compiler

  1. Overview
  2. Docs
Plugin to create switches using custom compilers

Install

Dune Dependency

Authors

Maintainers

Sources

opam-compiler-0.2.0.tbz
sha256=56e800aac18ebd97226f75815627e30b5673e23873951b4fc84d79b4fdfb409d
sha512=0943ffbd80068ee5603e1542d37087a5841c54764f36e99a1c5fdb703674c5153949d9111a04788e225cd7c1045c2953554decdc261cd7d4ec8716eaa5233fc3

Description

This plugin can manage switches using various sources for compilers, such as git branches, github PRs, etc

Published: 19 Jan 2024

README

opam-compiler

A WIP opam plugin to manage compiler installations.

It can be used to create switches from various sources such as the main repository, ocaml-multicore, or a local directories. It can use tag names, branch names, or PR numbers to specify what to install.

Once installed, these are normal opam switches, and one can install packages in them. To iterate on a compiler feature and try opam packages at the same time, it supports to ways to reinstall the compiler: either a safe and slow technique that will reinstall all packages, or a quick way that will just overwrite the compiler in place.

Installing

This is an opam plugin. Once installed, it will be available globally using opam compiler ARGS. To install it, pin it to get a development version:

opam pin add opam-compiler 'git+https://github.com/emillon/opam-compiler.git'

Creating a switch

opam compiler create is a wrapper around opam switch create that will use a custom. The documentation can be found here, but as an example, the following is recognized:

# Use this pull request number
opam compiler create '#1234'

# Use this branch
opam compiler create 'myself/ocaml:mybranch'

It will try determine a switch name and description from the source name, but it is also possible to pass an explicit switch name:

# Use an explicit switch name
opam compiler create '#1234' --switch optimize-list-map

The resulting switch can be used like a normal switch: one can install packages, update them, etc.

By default, the compiler will be built using a plain ./configure command, which will create a vanilla compiler. It is possible to override this:

# Just build the bytecode compiler from a pull request
opam compiler create '#1234' --configure-command "./configure --disable-native-compiler"

Dependencies (9)

  1. rresult >= "0.6.0"
  2. re >= "1.5.0"
  3. ocaml-version >= "3.0.0"
  4. github-data
  5. curly >= "0.2.0"
  6. cmdliner >= "1.1.0"
  7. bos
  8. ocaml >= "4.08.0"
  9. dune >= "2.7"

Dev Dependencies (4)

  1. odoc with-doc
  2. alcotest >= "1.2.0" & with-test
  3. either with-test
  4. cmdliner >= "1.2.0" & with-test

Used by

None

Conflicts (1)

  1. result < "1.5"