this repo has no description
1opam-version: "2.0" 2synopsis: 3 "First release candidate for 4.07.0 with frame-pointers and flambda activated" 4maintainer: "David Allsopp <david@tarides.com>" 5depends: [ 6 "ocaml" {= "4.07.0" & post} 7 "base-unix" {post} 8 "base-bigarray" {post} 9 "base-threads" {post} 10] 11conflict-class: "ocaml-core-compiler" 12flags: compiler 13setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs" 14build: [ 15 [ 16 "sed" 17 "-ib" 18 "-e" 19 "s/opts=\"\"/opts=\"-Wno-implicit-function-declaration\"/" 20 "config/auto-aux/hasgot" 21 ] {os = "macos"} 22 [ 23 "./configure" 24 "-prefix" 25 prefix 26 "-with-debug-runtime" 27 "-with-frame-pointers" 28 "-flambda" 29 ] {os != "openbsd" & os != "freebsd" & os != "macos"} 30 [ 31 "./configure" 32 "-prefix" 33 prefix 34 "-with-debug-runtime" 35 "-with-frame-pointers" 36 "-flambda" 37 "-cc" 38 "cc" 39 "-aspp" 40 "cc -c" 41 ] {os = "openbsd" | os = "freebsd" | os = "macos"} 42 [make "-j%{jobs}%" {os != "cygwin"} "world"] 43 [make "-j%{jobs}%" {os != "cygwin"} "world.opt"] 44] 45install: [make "install"] 46url { 47 src: "https://github.com/ocaml/ocaml/archive/4.07.0+rc1.tar.gz" 48 checksum: [ 49 "sha256=8807daca1c866b7de0fd210f13518152d26c3bd5f9dfaa53848cb57df297277b" 50 "md5=f800c2e02157fbb18051d2635af6a055" 51 ] 52} 53post-messages: [ 54 "A failure in the middle of the build may be caused by build parallelism 55 (enabled by default). 56 Please file a bug report at https://github.com/ocaml/opam-repository/issues" 57 {failure & jobs > 1 & os != "cygwin"} 58 "You can try installing again including --jobs=1 59 to force a sequential build instead." 60 {failure & jobs > 1 & os != "cygwin" & opam-version >= "2.0.5"} 61] 62available: os = "linux" & arch = "x86_64" 63x-maintained: false