this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #25911 from dra27/5.2.0+statmemprof

Add ocaml-variants.5.2.0+statmemprof

authored by

Marcello Seri and committed by
GitHub
0d0ea499 43566640

+87
+1
packages/ocaml-variants/ocaml-variants.5.2.0+statmemprof/files/ocaml-variants.install
··· 1 + share_root: ["config.cache" {"ocaml/config.cache"}]
+86
packages/ocaml-variants/ocaml-variants.5.2.0+statmemprof/opam
··· 1 + opam-version: "2.0" 2 + license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception" 3 + synopsis: "OCaml 5.2.0, with Statistical Memory Profiler support" 4 + maintainer: [ 5 + "David Allsopp <david@tarides.com>" 6 + "Florian Angeletti <florian.angeletti@inria.fr>" 7 + ] 8 + authors: [ 9 + "Xavier Leroy" 10 + "Damien Doligez" 11 + "Alain Frisch" 12 + "Jacques Garrigue" 13 + "Didier Rémy" 14 + "Jérôme Vouillon" 15 + ] 16 + homepage: "https://ocaml.org" 17 + bug-reports: "https://github.com/ocaml/opam-repository/issues" 18 + dev-repo: "git+https://github.com/ocaml-multicore/ocaml.git#5.2.0+statmemprof" 19 + depends: [ 20 + "ocaml" {= "5.2.0" & post} 21 + "base-unix" {post} 22 + "base-bigarray" {post} 23 + "base-threads" {post} 24 + "base-domains" {post} 25 + "base-nnp" {post} 26 + "ocaml-option-bytecode-only" {arch != "arm64" & arch != "x86_64" & arch != "s390x" & arch != "riscv64" & arch != "ppc64"} 27 + "ocaml-beta" {opam-version < "2.1.0"} 28 + ] 29 + conflict-class: "ocaml-core-compiler" 30 + flags: [ compiler avoid-version ] 31 + setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs" 32 + build-env: [ 33 + [LSAN_OPTIONS = "detect_leaks=0,exitcode=0"] 34 + [ASAN_OPTIONS = "detect_leaks=0,exitcode=0"] 35 + ] 36 + build: [ 37 + [ 38 + "./configure" 39 + "--prefix=%{prefix}%" 40 + "--docdir=%{doc}%/ocaml" 41 + "-C" 42 + "--with-afl" {ocaml-option-afl:installed} 43 + "--disable-native-compiler" {ocaml-option-bytecode-only:installed} 44 + "--disable-flat-float-array" {ocaml-option-no-flat-float-array:installed} 45 + "--enable-flambda" {ocaml-option-flambda:installed} 46 + "--enable-frame-pointers" {ocaml-option-fp:installed} 47 + "--without-zstd" {ocaml-option-no-compression:installed} 48 + "--enable-tsan" {ocaml-option-tsan:installed} 49 + "CC=cc" {!ocaml-option-32bit:installed & !ocaml-option-musl:installed & (os="openbsd"|os="macos")} 50 + "CC=clang" {ocaml-option-tsan:installed & (os="macos")} 51 + "CC=musl-gcc" {ocaml-option-musl:installed & os-distribution!="alpine"} 52 + "CFLAGS=-Os" {ocaml-option-musl:installed} 53 + "LDFLAGS=-Wl,--no-as-needed,-ldl" {ocaml-option-leak-sanitizer:installed | (ocaml-option-address-sanitizer:installed & os!="macos")} 54 + "CC=gcc -ldl -fsanitize=leak -fno-omit-frame-pointer -O1 -g" {ocaml-option-leak-sanitizer:installed} 55 + "CC=gcc -ldl -fsanitize=address -fno-omit-frame-pointer -O1 -g" {ocaml-option-address-sanitizer:installed & os!="macos"} 56 + "CC=clang -fsanitize=address -fno-omit-frame-pointer -O1 -g" {ocaml-option-address-sanitizer:installed & os="macos"} 57 + "CC=gcc -m32" {ocaml-option-32bit:installed & os="linux"} 58 + "CC=gcc -Wl,-read_only_relocs,suppress -arch i386 -m32" {ocaml-option-32bit:installed & os="macos"} 59 + "ASPP=musl-gcc -c" {ocaml-option-musl:installed & os-distribution!="alpine"} 60 + "--host=i386-linux" {ocaml-option-32bit:installed & os="linux"} 61 + "--host=i386-apple-darwin13.2.0" {ocaml-option-32bit:installed & os="macos"} 62 + "LIBS=-static" {ocaml-option-static:installed} 63 + "--disable-warn-error" 64 + ] 65 + [make "-j%{jobs}%"] 66 + ] 67 + install: [make "install"] 68 + url { 69 + src: "https://github.com/ocaml-multicore/ocaml/archive/5.2.0+statmemprof.tar.gz" 70 + checksum: "sha256=7118bd121642cd8fc8558b26b99d62670f3f1442e43e26c05fc9b5ed77b70ca7" 71 + } 72 + extra-files: ["ocaml-variants.install" "md5=3e969b841df1f51ca448e6e6295cb451"] 73 + depopts: [ 74 + "ocaml-option-32bit" 75 + "ocaml-option-afl" 76 + "ocaml-option-bytecode-only" 77 + "ocaml-option-no-flat-float-array" 78 + "ocaml-option-flambda" 79 + "ocaml-option-fp" 80 + "ocaml-option-no-compression" 81 + "ocaml-option-musl" 82 + "ocaml-option-leak-sanitizer" 83 + "ocaml-option-address-sanitizer" 84 + "ocaml-option-static" 85 + "ocaml-option-tsan" 86 + ]