this repo has no description
1opam-version: "2.0"
2synopsis: "Debug runtime"
3maintainer: "David Allsopp <david@tarides.com>"
4depends: [
5 "ocaml" {= "4.00.0" & post}
6 "base-unix" {post}
7 "base-bigarray" {post}
8 "base-threads" {post}
9 "base-ocamlbuild" {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 ["./configure" "-prefix" prefix "-with-debug-runtime"]
23 {os != "openbsd" & os != "freebsd" & os != "macos"}
24 [
25 "./configure"
26 "-prefix"
27 prefix
28 "-with-debug-runtime"
29 "-cc"
30 "cc"
31 "-aspp"
32 "cc -c"
33 ] {os = "openbsd" | os = "freebsd" | os = "macos"}
34 [make "world"]
35 [make "world.opt"]
36]
37install: [make "install"]
38url {
39 src: "http://caml.inria.fr/pub/distrib/ocaml-4.00/ocaml-4.00.0.tar.gz"
40 checksum: [
41 "sha256=9ea5544538144811b5fd9c7172d63abc0d1c6ba6b64d2c60474807fc57ad4c6e"
42 "md5=fa11560a45793bd9fa45c1295a6f4a91"
43 ]
44}
45available: !(os = "macos" & arch = "arm64")
46license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception"
47authors: [
48 "Xavier Leroy"
49 "Damien Doligez"
50 "Alain Frisch"
51 "Jacques Garrigue"
52 "Didier Rémy"
53 "Jérôme Vouillon"
54]
55bug-reports: "https://github.com/ocaml/opam-repository/issues"
56homepage: "https://ocaml.org"
57dev-repo: "git+https://github.com/ocaml/ocaml.git#4.00"
58patches: ["alt-signal-stack.patch"]
59extra-source "alt-signal-stack.patch" {
60 src: "https://github.com/ocaml/ocaml/commit/60b0cdaf2519d881947af4175ac4c6ff68901be3.patch?full_index=1"
61 checksum: "sha256=bb0e0e736ecc55c9f8cd8f74ca00a920bfe46e4200b82c5a45da952053b374da"
62}