this repo has no description
1opam-version: "2.0" 2synopsis: 3 "Official release 4.10.2, with frame-pointers and flambda activated" 4maintainer: [ 5 "David Allsopp <david@tarides.com>" 6 "Florian Angeletti <florian.angeletti@inria.fr>" 7] 8authors: "Xavier Leroy and many contributors" 9homepage: "https://ocaml.org" 10bug-reports: "https://github.com/ocaml/opam-repository/issues" 11dev-repo: "git+https://github.com/ocaml/ocaml" 12available: os = "linux" & arch = "x86_64" 13depends: [ 14 "ocaml" {= "4.10.2" & post} 15 "base-unix" {post} 16 "base-bigarray" {post} 17 "base-threads" {post} 18] 19conflict-class: "ocaml-core-compiler" 20flags: compiler 21setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs" 22build: [ 23 ["./configure" "--prefix=%{prefix}%" 24 "--enable-frame-pointers" "--enable-flambda"] 25 {os != "openbsd" & os != "freebsd" & os != "macos"} 26 [ 27 "./configure" 28 "--prefix=%{prefix}%" 29 "CC=cc" 30 "ASPP=cc -c" 31 "--enable-frame-pointers" 32 "--enable-flambda" 33 ] {os = "openbsd" | os = "freebsd" | os = "macos"} 34 [make "-j%{jobs}%" "world"] 35 [make "-j%{jobs}%" "world.opt"] 36] 37install: [make "install"] 38url { 39 src: "https://github.com/ocaml/ocaml/archive/4.10.2.tar.gz" 40 checksum: "sha256=7aa26e0d70f36f0338df92cf5aaeb2704f3443bfe910a3d02a5dca9162f1d866" 41} 42post-messages: [ 43 "A failure in the middle of the build may be caused by build parallelism 44 (enabled by default). 45 Please file a bug report at https://github.com/ocaml/opam-repository/issues" 46 {failure & jobs > 1} 47 "You can try installing again including --jobs=1 48 to force a sequential build instead." 49 {failure & jobs > 1 & opam-version >= "2.0.5"} 50] 51license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception" 52patches: ["alt-signal-stack.patch"] 53extra-source "alt-signal-stack.patch" { 54 src: "https://github.com/ocaml/ocaml/commit/4b4c643d1d5d28738f6d900cd902851ed9dc5364.patch?full_index=1" 55 checksum: "sha256=355fa7bd55ce5646db1365b116082aee31f9b466f0ffc27723f5971d03c14a53" 56}