this repo has no description
1opam-version: "2.0" 2synopsis: "OCaml 4.12.0, with support for multicore domains" 3maintainer: [ 4 "David Allsopp <david@tarides.com>" 5 "Florian Angeletti <florian.angeletti@inria.fr>" 6] 7authors: "Xavier Leroy and many contributors" 8homepage: "https://github.com/ocaml-multicore/ocaml-multicore" 9bug-reports: "https://github.com/ocaml-multicore/ocaml-multicore/issues" 10depends: [ 11 "ocaml" {= "4.12.0" & post} 12 "base-unix" {post} 13 "base-bigarray" {post} 14 "base-threads" {post} 15 "base-domains" {post} 16 "ocaml-option-nnp" 17] 18conflict-class: "ocaml-core-compiler" 19flags: [compiler avoid-version] 20setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs" 21build: [ 22 [ 23 "./configure" 24 "--prefix=%{prefix}%" 25 "--with-afl" {ocaml-option-afl:installed} 26 "--disable-native-compiler" {ocaml-option-bytecode-only:installed} 27 "--disable-force-safe-string" {ocaml-option-default-unsafe-string:installed} 28 "DEFAULT_STRING=unsafe" {ocaml-option-default-unsafe-string:installed} 29 "--disable-flat-float-array" {ocaml-option-no-flat-float-array:installed} 30 "--enable-flambda" {ocaml-option-flambda:installed} 31 "--enable-frame-pointers" {ocaml-option-fp:installed} 32 "CC=cc" {!ocaml-option-32bit:installed & !ocaml-option-musl:installed & (os="openbsd"|os="macos")} 33 "CC=musl-gcc" {ocaml-option-musl:installed & os-distribution!="alpine"} 34 "CFLAGS=-Os" {ocaml-option-musl:installed} 35 #"CC=gcc -m32" {ocaml-option-32bit:installed & os="linux"} 36 #"CC=gcc -Wl,-read_only_relocs,suppress -arch i386 -m32" {ocaml-option-32bit:installed & os="macos"} 37 "ASPP=cc -c" {!ocaml-option-32bit:installed & !ocaml-option-musl:installed & (os="openbsd"|os="macos")} 38 "ASPP=musl-gcc -c" {ocaml-option-musl:installed & os-distribution!="alpine"} 39 #"ASPP=gcc -m32 -c" {ocaml-option-32bit:installed & os="linux"} 40 #"ASPP=gcc -arch i386 -m32 -c" {ocaml-option-32bit:installed & os="macos"} 41 #"AS=as --32" {ocaml-option-32bit:installed & os="linux"} 42 #"AS=as -arch i386" {ocaml-option-32bit:installed & os="macos"} 43 #"--host=i386-linux" {ocaml-option-32bit:installed & os="linux"} 44 #"--host=i386-apple-darwin13.2.0" {ocaml-option-32bit:installed & os="macos"} 45 #"PARTIALLD=ld -r -melf_i386" {ocaml-option-32bit:installed & os="linux"} 46 # 32bit options above commented out just to reduce diff with ocaml-variants.4.12.0+options 47 "LIBS=-static" {ocaml-option-static:installed} 48 "--disable-warn-error" 49 ] 50 [make "-j%{jobs}%"] 51] 52install: [make "install"] 53url { 54 src: "git+https://github.com/ocaml-multicore/ocaml-multicore.git#4.12+domains" 55} 56conflicts: [ 57 "ocaml-option-32bit" # Not yet implemented 58 "ocaml-option-nnpchecker" # Fundamentally not possible 59] 60depopts: [ 61 "ocaml-option-afl" 62 "ocaml-option-bytecode-only" 63 "ocaml-option-default-unsafe-string" 64 "ocaml-option-no-flat-float-array" 65 "ocaml-option-flambda" 66 "ocaml-option-fp" 67 "ocaml-option-musl" 68 "ocaml-option-static" 69]