this repo has no description
1opam-version: "2.0" 2synopsis: "Latest 4.07 development without safe strings by default" 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.07" 8depends: [ 9 "ocaml" {= "4.07.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 [ 28 "./configure" 29 "-prefix" 30 prefix 31 "-with-debug-runtime" 32 "-no-force-safe-string" 33 "-default-unsafe-string" 34 ] {os != "openbsd" & os != "freebsd" & os != "macos"} 35 [ 36 "./configure" 37 "-prefix" 38 prefix 39 "-with-debug-runtime" 40 "-no-force-safe-string" 41 "-default-unsafe-string" 42 "-cc" 43 "cc" 44 "-aspp" 45 "cc -c" 46 ] {os = "openbsd" | os = "freebsd" | os = "macos"} 47 [make "-j%{jobs}%" {os != "cygwin"} "world"] 48 [make "-j%{jobs}%" {os != "cygwin"} "world.opt"] 49] 50install: [make "install"] 51url { 52 src: "https://github.com/ocaml/ocaml/archive/4.07.tar.gz" 53} 54post-messages: [ 55 "A failure in the middle of the build may be caused by build parallelism 56 (enabled by default). 57 See https://github.com/ocaml/opam-repository/pull/14257 for more info." 58 {failure & jobs > 1 & os != "cygwin"} 59 "You can try installing again including --jobs=1 60 to force a sequential build instead." 61 {failure & jobs > 1 & os != "cygwin" & opam-version >= "2.0.5"} 62] 63patches: ["fix-gcc10.patch"] 64available: !(os = "macos" & arch = "arm64") 65extra-source "fix-gcc10.patch" { 66 src: 67 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/ocaml-variants/fix-gcc10.patch.4.07.2" 68 checksum: [ 69 "sha256=f0a7ee630046ffb83fb2a78ca5a81e288e817fbda6b12692dadb79ab93a8737d" 70 "md5=b054fa6b6651763edc8e16b6bc4c58f6" 71 ] 72}