this repo has no description
1opam-version: "2.0"
2synopsis:
3 "first 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+rc1.tar.gz"
48 checksum: [
49 "sha256=eb162786b7d18fce4427a3c9f0b3e58f18b063f2008a674aa0b7037d8342f83a"
50 "md5=7a8d77a43528224fa589e962604bd184"
51 ]
52}
53available: os = "linux" & arch = "x86_64"
54x-maintained: false