this repo has no description
1opam-version: "2.0"
2synopsis: "Set OCaml to be compiled with address sanitizer"
3description: """
4This configuration package enables memory leak sanitzation using
5the -fsanitize=leak gcc and clang option.
6"""
7authors: [
8 "David Allsopp"
9 "Louis Gesbert"
10]
11homepage: "https://opam.ocaml.org"
12bug-reports: "https://github.com/ocaml/opam-repository/issues"
13license: "CC0-1.0+"
14post-messages: """
15Make sure to set ASAN_OPTIONS=detect_leaks=0,exitcode=0
16while compiling and to unset it before running compiled binaries.
17"""
18depends: [
19 "ocaml-variants" {post & >= "5.0"}
20]
21conflicts: [
22 "ocaml-option-32bit"
23 "ocaml-option-afl"
24 "ocaml-option-bytecode-only"
25 "ocaml-option-default-unsafe-string"
26 "ocaml-option-flambda"
27 "ocaml-option-musl"
28 "ocaml-option-no-flat-float-array"
29 "ocaml-option-spacetime"
30 "ocaml-option-static"
31 "ocaml-option-nnp"
32 "ocaml-option-nnpchecker"
33 "ocaml-option-fp"
34 "ocaml-option-leak-sanitizer"
35]
36available: [ os = "macos" | os = "linux" ]
37maintainer: "David Allsopp <david@tarides.com>"
38flags: compiler