summaryrefslogtreecommitdiff
path: root/ocaml-variants.opam
diff options
context:
space:
mode:
Diffstat (limited to 'ocaml-variants.opam')
-rw-r--r--ocaml-variants.opam41
1 files changed, 27 insertions, 14 deletions
diff --git a/ocaml-variants.opam b/ocaml-variants.opam
index ee159c3eca..6f719f4389 100644
--- a/ocaml-variants.opam
+++ b/ocaml-variants.opam
@@ -1,6 +1,26 @@
+(* In order to use the development compiler with opam 2.0, first create a new
+ switch
+
+ opam switch create 4.12.0+multicore --empty
+
+ Initial build:
+
+ opam pin add -k path --inplace-build ocaml-variants.4.12.0+multicore .
+
+ This installs the compiler for the new opam switch. Subsequent builds can be
+ done locally with:
+
+ make world; make world.opt
+
+ Subsequent installs are done with:
+
+ opam install --assume-built ocaml-variants
+
+*)
+
opam-version: "2.0"
-version: "4.12.0+trunk"
-synopsis: "OCaml development version"
+version: "4.12.0+multicore"
+synopsis: "OCaml multicore 4.12.0"
depends: [
"ocaml" {= "4.12.0" & post}
"base-unix" {post}
@@ -11,18 +31,11 @@ conflict-class: "ocaml-core-compiler"
flags: compiler
setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs"
build: [
- ["./configure" "--prefix=%{prefix}%"]
+ ["./configure" "--prefix=%{prefix}%" "--enable-debug-runtime"]
[make "-j%{jobs}%"]
]
install: [make "install"]
-maintainer: "caml-list@inria.fr"
-homepage: "https://github.com/ocaml/ocaml/"
-bug-reports: "https://github.com/ocaml/ocaml/issues"
-authors: [
- "Xavier Leroy"
- "Damien Doligez"
- "Alain Frisch"
- "Jacques Garrigue"
- "Didier Rémy"
- "Jérôme Vouillon"
-]
+maintainer: "kc@kcsrk.info"
+homepage: "https://github.com/ocaml-multicore/ocaml-multicore"
+bug-reports: "https://github.com/ocaml-multicore/ocaml-multicore/issues"
+authors: "Xavier Leroy and many contributors"