this repo has no description
1opam-version: "2.0" 2synopsis: "Latest 4.05 snapshot with frame-pointers" 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.05" 8depends: [ 9 "ocaml" {= "4.05.1" & 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 "-with-frame-pointers" 33 ] {os != "openbsd" & os != "freebsd" & os != "macos"} 34 [ 35 "./configure" 36 "-prefix" 37 prefix 38 "-with-debug-runtime" 39 "-with-frame-pointers" 40 "-cc" 41 "cc" 42 "-aspp" 43 "cc -c" 44 ] {os = "openbsd" | os = "freebsd" | os = "macos"} 45 [make "world"] 46 [make "world.opt"] 47] 48install: [make "install"] 49url { 50 src: "https://github.com/ocaml/ocaml/archive/4.05.tar.gz" 51} 52patches: ["fix-gcc10.patch"] 53available: os = "linux" & arch = "x86_64" 54extra-source "fix-gcc10.patch" { 55 src: 56 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/ocaml-variants/fix-gcc10.patch.4.05.1" 57 checksum: [ 58 "sha256=7a4645db04d32520f59e2676219d5626d361dbd7d55cf509b7839f3613a51028" 59 "md5=3791e3c17d11ec0f246fc6c5c5e5e2f3" 60 ] 61}