this repo has no description
1opam-version: "2.0" 2synopsis: "second beta of 4.08.0, with afl-fuzz instrumentation" 3maintainer: [ 4 "David Allsopp <david@tarides.com>" 5 "Florian Angeletti <florian.angeletti@inria.fr>" 6] 7depends: [ 8 "ocaml" {= "4.08.0" & post} 9 "base-unix" {post} 10 "base-bigarray" {post} 11 "base-threads" {post} 12 "ocaml-beta" 13] 14conflict-class: "ocaml-core-compiler" 15flags: compiler 16setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs" 17build: [ 18 ["./configure" "--prefix=%{prefix}%" "--with-afl" "--disable-debug-runtime"] 19 {os != "openbsd" & os != "freebsd" & os != "macos"} 20 [ 21 "./configure" 22 "--prefix=%{prefix}%" 23 "--with-afl" 24 "--disable-debug-runtime" 25 "CC=cc" 26 "ASPP=cc -c" 27 ] {os = "openbsd" | os = "freebsd" | os = "macos"} 28 [make "-j%{jobs}%" {os != "cygwin"} "world"] 29 [make "-j%{jobs}%" {os != "cygwin"} "world.opt"] 30] 31install: [make "install"] 32url { 33 src: "https://github.com/ocaml/ocaml/archive/4.08.0+beta2.tar.gz" 34 checksum: [ 35 "sha256=38e1fac25104453dc7a1fd6528d80c45e9ffc076c5843d57132d7736e0d20689" 36 "md5=a0bc4382e736c086b7c3f63f86f0ddac" 37 ] 38} 39post-messages: [ 40 "A failure in the middle of the build may be caused by build parallelism 41 (enabled by default). 42 Please file a bug report at https://github.com/ocaml/opam-repository/issues" 43 {failure & jobs > 1 & os != "cygwin"} 44 "You can try installing again including --jobs=1 45 to force a sequential build instead." 46 {failure & jobs > 1 & os != "cygwin" & opam-version >= "2.0.5"} 47] 48patches: ["fix-gcc10.patch"] 49available: !(os = "macos" & arch = "arm64" | os = "win32") 50extra-source "fix-gcc10.patch" { 51 src: 52 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/ocaml-base-compiler/fix-gcc10.patch.4.08.0" 53 checksum: [ 54 "sha256=f658efe87952165713affe6f1653ab94ca85a8d6bb77ff665b1de43074aa5b00" 55 "md5=f406119ae0091835cdf158d7d0ff53f7" 56 ] 57} 58x-maintained: false