this repo has no description
1opam-version: "2.0" 2synopsis: "first release candidate for 4.08.0, with flambda activated" 3maintainer: [ 4 "David Allsopp <david@tarides.com>" 5 "Florian Angeletti <florian.angeletti@inria.fr>" 6] 7depends: [ 8 "ocaml" {= "4.08.0" & post} 9 "base-unix" {post} 10 "base-bigarray" {post} 11 "base-threads" {post} 12 "ocaml-beta" 13] 14conflict-class: "ocaml-core-compiler" 15flags: compiler 16setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs" 17build: [ 18 ["./configure" "--prefix=%{prefix}%" "--enable-flambda"] 19 {os != "openbsd" & os != "freebsd" & os != "macos"} 20 [ 21 "./configure" 22 "--prefix=%{prefix}%" 23 "--enable-flambda" 24 "CC=cc" 25 "ASPP=cc -c" 26 ] {os = "openbsd" | os = "freebsd" | os = "macos"} 27 [make "-j%{jobs}%" {os != "cygwin"} "world"] 28 [make "-j%{jobs}%" {os != "cygwin"} "world.opt"] 29] 30install: [make "install"] 31url { 32 src: "https://github.com/ocaml/ocaml/archive/4.08.0+rc1.tar.gz" 33 checksum: [ 34 "sha256=bfedce81a31c6acb9fbc4dd6384889c4b316c59fdfbf33f3acd0582512a6694c" 35 "md5=737902be9699c38fcb44f1f25f6a5997" 36 ] 37} 38post-messages: [ 39 "A failure in the middle of the build may be caused by build parallelism 40 (enabled by default). 41 Please file a bug report at https://github.com/ocaml/opam-repository/issues" 42 {failure & jobs > 1 & os != "cygwin"} 43 "You can try installing again including --jobs=1 44 to force a sequential build instead." 45 {failure & jobs > 1 & os != "cygwin" & opam-version >= "2.0.5"} 46] 47available: !(os = "macos" & arch = "arm64" | os = "win32") 48x-maintained: false