this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Prefer 64-bit compilers

Use avoid-version to steer Windows towards a 64-bit compiler by default.
Note that although opam can be compiled for 32-bit Windows, 32-bit
Windows is deprecated (Windows 10 is the last version available as a
32-bit host), Cygwin is only available for 64-bit.

+11 -2
+3 -1
packages/arch-x86_32/arch-x86_32.1/opam
··· 11 11 license: "CC0-1.0+" 12 12 homepage: "https://opam.ocaml.org" 13 13 bug-reports: "https://github.com/ocaml/opam-repository/issues" 14 - flags: compiler 14 + # This package is marked avoid-version in order to steer the default on 64-bit 15 + # systems towards a 64-bit compiler. 16 + flags: [compiler avoid-version] 15 17 available: os = "win32" 16 18 depends: [ 17 19 ("ocaml-base-compiler" {post & >= "4.13.0~"} | "ocaml-variants" {post & >= "4.13.0~"})
+8 -1
packages/arch-x86_64/arch-x86_64.1/opam
··· 12 12 homepage: "https://opam.ocaml.org" 13 13 bug-reports: "https://github.com/ocaml/opam-repository/issues" 14 14 flags: compiler 15 - available: os = "win32" 15 + # The architecture selection is somewhat belt-and-braces while this system is 16 + # only available for Windows. The dependency of the OCaml ecosystem on either 17 + # Cygwin or MSYS2 means that OCaml cannot be used on 32-bit Windows, although 18 + # 32-bit is fully supported as a target. 19 + # When these packages are extended to all platforms, the available field would 20 + # ensure that this package becomes unavailable on a 32-bit system, and the 21 + # avoid-version in arch-x86_32 will be ignored. 22 + available: os = "win32" & (arch = "x86_64" | arch = "arm64") 16 23 depends: [ 17 24 ("ocaml-base-compiler" {post & >= "4.13.0~"} | "ocaml-variants" {post & >= "4.13.0~"}) 18 25 "host-arch-x86_64" {post}