this repo has no description
1opam-version: "2.0"
2synopsis: "Latest 4.10 development, with flambda activated"
3maintainer: [
4 "David Allsopp <david@tarides.com>"
5 "Florian Angeletti <florian.angeletti@inria.fr>"
6]
7authors: ["Xavier Leroy" "Damien Doligez" "Alain Frisch" "Jacques Garrigue" "Didier Rémy" "Jérôme Vouillon"]
8homepage: "https://ocaml.org"
9bug-reports: "https://github.com/ocaml/opam-repository/issues"
10dev-repo: "git+https://github.com/ocaml/ocaml.git#4.10"
11depends: [
12 "ocaml" {= "4.10.3" & post}
13 "base-unix" {post}
14 "base-bigarray" {post}
15 "base-threads" {post}
16 "ocaml-beta" {opam-version < "2.1.0"}
17]
18conflict-class: "ocaml-core-compiler"
19flags: [ compiler avoid-version ]
20setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs"
21build: [
22 ["sed" "-ib" "-e" "s/ -Werror//" "configure"]
23 ["./configure" "--prefix=%{prefix}%" "--enable-flambda"]
24 {os != "openbsd" & os != "freebsd" & os != "macos"}
25 [
26 "./configure"
27 "--prefix=%{prefix}%"
28 "CC=cc"
29 "ASPP=cc -c"
30 "--enable-flambda"
31 ] {os = "openbsd" | os = "freebsd" | os = "macos"}
32 [make "-j%{jobs}%" "world"]
33 [make "-j%{jobs}%" "world.opt"]
34]
35install: [make "install"]
36url {
37 src: "https://github.com/ocaml/ocaml/archive/4.10.tar.gz"
38}
39post-messages: [
40 "A failure in the middle of the build may be caused by build parallelism
41 (enabled by default).
42 See https://github.com/ocaml/opam-repository/pull/14257 for more info."
43 {failure & jobs > 1}
44 "You can try installing again including --jobs=1
45 to force a sequential build instead."
46 {failure & jobs > 1 & opam-version >= "2.0.5"}
47]