23 lines
830 B
Text
23 lines
830 B
Text
opam-version: "2.0"
|
|
version: "v0.17.1"
|
|
maintainer: "Jane Street developers"
|
|
authors: ["Jane Street Group, LLC"]
|
|
homepage: "https://github.com/janestreet/ocaml_intrinsics_kernel"
|
|
bug-reports: "https://github.com/janestreet/ocaml_intrinsics_kernel/issues"
|
|
dev-repo: "git+https://github.com/janestreet/ocaml_intrinsics_kernel.git"
|
|
doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ocaml_intrinsics_kernel/index.html"
|
|
license: "MIT"
|
|
build: [
|
|
["dune" "build" "-p" name "-j" jobs]
|
|
]
|
|
depends: [
|
|
"ocaml" {>= "5.1.0"}
|
|
"dune" {>= "3.11.0"}
|
|
]
|
|
available: arch != "arm32" & arch != "x86_32"
|
|
synopsis: "Intrinsics"
|
|
description: "
|
|
Provides functions to invoke amd64 instructions (such as cmov, min/maxsd, popcnt)
|
|
when available, or compatible software implementation on other targets.
|
|
See also ocaml_intrinsics library.
|
|
"
|