opam-version: "2.0"
synopsis: "Latest 4.11 development, with afl-fuzz instrumentation"
maintainer: "platform@lists.ocaml.org"
authors: ["Xavier Leroy" "Damien Doligez" "Alain Frisch" "Jacques Garrigue" "Didier Rémy" "Jérôme Vouillon"]
homepage: "https://ocaml.org"
bug-reports: "https://github.com/ocaml/opam-repository/issues"
dev-repo: "git+https://github.com/ocaml/ocaml.git#4.11"
depends: [
  "ocaml" {= "4.11.3" & post}
  "base-unix" {post}
  "base-bigarray" {post}
  "base-threads" {post}
  "ocaml-beta" {opam-version < "2.1"}
]
conflict-class: "ocaml-core-compiler"
flags: [ compiler avoid-version hidden-version ]
setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs"
build: [
  ["sed" "-ib" "-e" "s/ -Werror//" "configure"]
  ["./configure" "--prefix=%{prefix}%" "--with-afl" "--enable-frame-pointers" ]
    {os != "openbsd" & os != "macos"}
  [
    "./configure"
    "--prefix=%{prefix}%"
    "CC=cc"
    "ASPP=cc -c"
    "--enable-frame-pointers"
  ] {os = "openbsd" | os = "macos"}
  [make "-j%{jobs}%" "world"]
  [make "-j%{jobs}%" "world.opt"]
]
install: [make "install"]
url {
  src: "https://github.com/ocaml/ocaml/archive/4.11.tar.gz"
}
post-messages: [
  "A failure in the middle of the build may be caused by build parallelism
   (enabled by default).
   See https://github.com/ocaml/opam-repository/pull/14257 for more info."
  {failure & jobs > 1}
  "You can try installing again including --jobs=1
   to force a sequential build instead."
  {failure & jobs > 1 & opam-version >= "2.0.5"}
]
available: !(os = "macos" & arch = "arm64")
