When writing an OPAM package configuration file, I can specify the target platform in the build field, like so:
build: [
["./configure" "build-linux" {os = "linux"}
"build-macosx" {os = "darwin"}
"build-cygwin" {os = "cygwin"}]
]
Is there a way to do the same for target architecture, e.g. ["./configure" "build-linux-x64" {os = "linux" && arch = "x86_64"}]? TIA.