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