-
Notifications
You must be signed in to change notification settings - Fork 0
/
ocaml-variants.opam
41 lines (32 loc) · 1.1 KB
/
ocaml-variants.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
(* In order to use the development compiler with opam 2.0, first create a new
switch
opam switch create 4.10.0+multicore --empty
Initial build:
opam pin add -k path --inplace-build ocaml-variants.4.10.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.10.0+multicore+parafuzz"
synopsis: "OCaml multicore 4.10.0"
depends: [
"ocaml" {= "4.10.0" & post}
"base-unix" {post}
"base-bigarray" {post}
"base-threads" {post}
]
conflict-class: "ocaml-core-compiler"
flags: compiler
setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs"
build: [
["./configure" "--prefix=%{prefix}%" "--enable-debug-runtime" "--with-afl"]
[make "-j%{jobs}%"]
]
install: [make "install"]
maintainer: "[email protected]"
homepage: "https://github.com/ocaml-multicore/ocaml-multicore"
bug-reports: "https://github.com/ocaml-multicore/ocaml-multicore/issues"
authors: "Xavier Leroy and many contributors"