this repo has no description

Prefer mingw-w64 on Windows for technical reasons

opam 2.x has no way to determine if Visual Studio is available or to
cause it to be installed. Flagging ocaml-msvc-env as avoid-version
therefore makes the MSVC ports "opt-in" only. Hopefully this situation
can be improved with enhanced depexts in opam 3.0.

Changed files
+8 -2
packages
ocaml-env-msvc32
ocaml-env-msvc32.1
ocaml-env-msvc64
ocaml-env-msvc64.1
+4 -1
packages/ocaml-env-msvc32/ocaml-env-msvc32.1/opam
···
"conf-msvc32"
]
conflict-class: "ocaml-env-msvc"
-
flags: conf
+
# This package is marked avoid-version because opam 2.x's depext system has no
+
# way of detecting Microsoft Visual Studio, but it can install the mingw-w64
+
# compilers. It is intended to address this as part of opam 3.x.
+
flags: [conf avoid-version]
build: [
["xcopy" "%{conf-msvc32:share}%\\conf-msvc32.config" "%{_:name}%.config*"]
]
+4 -1
packages/ocaml-env-msvc64/ocaml-env-msvc64.1/opam
···
"conf-msvc64"
]
conflict-class: "ocaml-env-msvc"
-
flags: conf
+
# This package is marked avoid-version because opam 2.x's depext system has no
+
# way of detecting Microsoft Visual Studio, but it can install the mingw-w64
+
# compilers. It is intended to address this as part of opam 3.x.
+
flags: [conf avoid-version]
build: [
["xcopy" "%{conf-msvc64:share}%\\conf-msvc64.config" "%{_:name}%.config*"]
]