this repo has no description
1opam-version: "2.0"
2synopsis: "4.06 release branch with afl-fuzz instrumentation"
3maintainer: "David Allsopp <david@tarides.com>"
4authors: ["Xavier Leroy" "Damien Doligez" "Alain Frisch" "Jacques Garrigue" "Didier Rémy" "Jérôme Vouillon"]
5homepage: "https://ocaml.org"
6bug-reports: "https://github.com/ocaml/opam-repository/issues"
7dev-repo: "git+https://github.com/ocaml/ocaml.git#4.06"
8depends: [
9 "ocaml" {= "4.06.2" & post}
10 "base-unix" {post}
11 "base-bigarray" {post}
12 "base-threads" {post}
13 "ocaml-beta" {opam-version < "2.1.0"}
14]
15conflict-class: "ocaml-core-compiler"
16flags: [ compiler avoid-version ]
17setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs"
18build: [
19 ["sed" "-ib" "-e" "s/ -Werror//" "configure"]
20 [
21 "sed"
22 "-ib"
23 "-e"
24 "s/opts=\"\"/opts=\"-Wno-implicit-function-declaration\"/"
25 "config/auto-aux/hasgot"
26 ] {os = "macos"}
27 ["./configure" "-prefix" prefix "-afl-instrument"]
28 {os != "openbsd" & os != "freebsd" & os != "macos"}
29 [
30 "./configure"
31 "-prefix"
32 prefix
33 "-afl-instrument"
34 "-cc"
35 "cc"
36 "-aspp"
37 "cc -c"
38 ] {os = "openbsd" | os = "freebsd" | os = "macos"}
39 [make "world"]
40 [make "world.opt"]
41]
42install: [make "install"]
43url {
44 src: "https://github.com/ocaml/ocaml/archive/4.06.tar.gz"
45}
46patches: ["fix-gcc10.patch"]
47available: !(os = "macos" & arch = "arm64")
48extra-source "fix-gcc10.patch" {
49 src:
50 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/ocaml-variants/fix-gcc10.patch.4.06.2"
51 checksum: [
52 "sha256=860a3e47b86a11a71e75d18d46f17f8343c58ee9297342d6ea885128f393dac6"
53 "md5=171b510547baa777839b2ad50608a3ee"
54 ]
55}