this repo has no description
1opam-version: "2.0" 2synopsis: "Ensure that OCaml is compiled with no special options enabled" 3authors: [ 4 "David Allsopp" 5 "Louis Gesbert" 6] 7homepage: "https://opam.ocaml.org" 8bug-reports: "https://github.com/ocaml/opam-repository/issues" 9license: "CC0-1.0+" 10depends: [ 11 "ocaml-base-compiler" {post} | 12 "ocaml-system" {post} | 13 "ocaml-variants" {post & >= "4.12.0~"} 14] 15conflicts: [ 16 "ocaml-option-32bit" 17 "ocaml-option-afl" 18 # See equivalent constraint in ocaml-option-bytecode-only 19 # Windows is permitted to install 32-bit versions of ocaml-base-compiler on 20 # 64-bit systems hence the (temporary) addition of the `os = "win32"` here, 21 # at least until the ocaml-option- / base- mess is fixed. Note that this puts 22 # 64-bit Windows into the same class as ppc64, riscv64 and s390x where 23 # ocaml-option-bytecode-only can be installed, but has no effect. 24 "ocaml-option-bytecode-only" {arch = "arm64" | (arch = "x86_64" & os != "win32") } 25 "ocaml-option-default-unsafe-string" 26 "ocaml-option-flambda" 27 "ocaml-option-fp" 28 "ocaml-option-musl" 29 "ocaml-option-no-flat-float-array" 30 "ocaml-option-no-compression" 31 "ocaml-option-spacetime" 32 "ocaml-option-static" 33 "ocaml-option-nnp" 34 "ocaml-option-nnpchecker" 35 "ocaml-option-address-sanitizer" 36 "ocaml-option-leak-sanitizer" 37 "ocaml-option-tsan" 38 "ocaml-option-mingw" 39] 40maintainer: "David Allsopp <david@tarides.com>" 41flags: compiler