this repo has no description
1opam-version: "2.0"
2synopsis:
3 "second release candidate for 4.06.1, with frame-pointers and flambda activated"
4maintainer: "David Allsopp <david@tarides.com>"
5depends: [
6 "ocaml" {= "4.06.1" & 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 "world"]
43 [make "world.opt"]
44]
45install: [make "install"]
46url {
47 src: "https://github.com/ocaml/ocaml/archive/4.06.1+rc2.tar.gz"
48 checksum: [
49 "sha256=6749fd9bc4ce39210cce5c7f654609d73c41a0001fae887292b9a31c2f78cc41"
50 "md5=8befb315cd6d4dbfad130061b5a34a66"
51 ]
52}
53available: os = "linux" & arch = "x86_64"
54x-maintained: false