this repo has no description

Merge pull request #24921 from OlivierNicole/tsan_backport_5.1.1

Add TSan backport switch: 5.1.1+tsan

Changed files
+77
packages
ocaml-variants
ocaml-variants.5.1.1+tsan
+1
packages/ocaml-variants/ocaml-variants.5.1.1+tsan/files/ocaml-variants.install
···
+
share_root: ["config.cache" {"ocaml/config.cache"}]
+76
packages/ocaml-variants/ocaml-variants.5.1.1+tsan/opam
···
+
opam-version: "2.0"
+
license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception"
+
synopsis: "OCaml 5.1.1, with ThreadSanitizer support"
+
maintainer: "platform@lists.ocaml.org"
+
authors: [
+
"Xavier Leroy"
+
"Damien Doligez"
+
"Alain Frisch"
+
"Jacques Garrigue"
+
"Didier Rémy"
+
"Jérôme Vouillon"
+
]
+
homepage: "https://github.com/ocaml/ocaml"
+
bug-reports: "https://github.com/ocaml/ocaml/issues"
+
dev-repo: "git+https://github.com/ocaml-multicore/ocaml-tsan.git#5.1.1+tsan"
+
depends: [
+
"ocaml" {= "5.1.1" & post}
+
"base-unix" {post}
+
"base-bigarray" {post}
+
"base-threads" {post}
+
"base-domains" {post}
+
"base-nnp" {post}
+
"ocaml-beta" {opam-version < "2.1.0"}
+
"conf-unwind"
+
]
+
conflict-class: "ocaml-core-compiler"
+
flags: [ compiler avoid-version ]
+
setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs"
+
build-env: [
+
[LSAN_OPTIONS = "detect_leaks=0,exitcode=0"]
+
[ASAN_OPTIONS = "detect_leaks=0,exitcode=0"]
+
]
+
build: [
+
[
+
"./configure"
+
"--prefix=%{prefix}%"
+
"--docdir=%{doc}%/ocaml"
+
"-C"
+
"--disable-flat-float-array" {ocaml-option-no-flat-float-array:installed}
+
"--enable-flambda" {ocaml-option-flambda:installed}
+
"--enable-frame-pointers" {ocaml-option-fp:installed}
+
"CC=cc" {!ocaml-option-32bit:installed & !ocaml-option-musl:installed & (os="openbsd")}
+
"CC=clang" {!ocaml-option-32bit:installed & !ocaml-option-musl:installed & (os="macos")}
+
"CC=musl-gcc" {ocaml-option-musl:installed & os-distribution!="alpine"}
+
"CFLAGS=-Os" {ocaml-option-musl:installed}
+
"--enable-tsan"
+
"ASPP=musl-gcc -c" {ocaml-option-musl:installed & os-distribution!="alpine"}
+
"LIBS=-static" {ocaml-option-static:installed}
+
"--disable-warn-error"
+
]
+
[make "-j%{jobs}%"]
+
]
+
install: [make "install"]
+
url {
+
src: "https://github.com/ocaml-multicore/ocaml-tsan/archive/5.1.1+tsan.tar.gz"
+
checksum: "sha256=4fde4255b581496a1b92ccc699b5a12db6663c50afb69d6ac25207c8905d6c04"
+
}
+
extra-files: ["ocaml-variants.install" "md5=3e969b841df1f51ca448e6e6295cb451"]
+
conflicts: [
+
"ocaml-option-afl"
+
"ocaml-option-bytecode-only"
+
"ocaml-option-32bit"
+
"ocaml-option-leak-sanitizer"
+
"ocaml-option-address-sanitizer"
+
]
+
depopts: [
+
"ocaml-option-32bit"
+
"ocaml-option-afl"
+
"ocaml-option-bytecode-only"
+
"ocaml-option-no-flat-float-array"
+
"ocaml-option-flambda"
+
"ocaml-option-musl"
+
"ocaml-option-leak-sanitizer"
+
"ocaml-option-address-sanitizer"
+
"ocaml-option-static"
+
]