Skip to content

Commit b84d2f0

Browse files
committed
Allow ocaml-option-fp on arm64 starting with OCaml 5.4
1 parent 9b213cf commit b84d2f0

File tree

1 file changed

+4
-2
lines changed
  • packages/ocaml-option-fp/ocaml-option-fp.1

1 file changed

+4
-2
lines changed

packages/ocaml-option-fp/ocaml-option-fp.1/opam

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,11 @@ homepage: "https://opam.ocaml.org"
88
bug-reports: "https://github.com/ocaml/opam-repository/issues"
99
license: "CC0-1.0+"
1010
depends: [
11-
"ocaml-variants" {post & (os = "linux" & >= "4.12.0~" | os = "macos" & >= "5.3.0~")}
11+
"ocaml-variants" {post & ((os = "linux" & arch = "x86_64" & >= "4.12.0~") |
12+
(os = "macos" & arch = "x86_64" & >= "5.3.0~") |
13+
(arch = "arm64" & >= "5.4.0~"))}
1214
]
1315
conflicts: ["ocaml-option-musl"]
14-
available: (os = "linux" | os = "macos") & arch = "x86_64"
16+
available: (os = "linux" | os = "macos") & (arch = "x86_64" | arch = "arm64")
1517
maintainer: "David Allsopp <[email protected]>"
1618
flags: compiler

0 commit comments

Comments
 (0)