this repo has no description
1opam-version: "2.0"
2maintainer: "Jane Street developers"
3authors: ["Jane Street Group, LLC"]
4homepage: "https://github.com/janestreet/ocaml_intrinsics"
5bug-reports: "https://github.com/janestreet/ocaml_intrinsics/issues"
6dev-repo: "git+https://github.com/janestreet/ocaml_intrinsics.git"
7doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ocaml_intrinsics/index.html"
8license: "MIT"
9build: [
10 ["dune" "build" "-p" name "-j" jobs]
11]
12depends: [
13 "ocaml" {>= "5.1.0"}
14 "ocaml_intrinsics_kernel" {>= "v0.17" & < "v0.18"}
15 "dune" {>= "3.11.0"}
16 "dune-configurator"
17]
18synopsis: "Intrinsics"
19description: "
20Provides functions to invoke amd64 instructions (such as clz,popcnt,rdtsc,rdpmc)
21 when available, or compatible software implementation on other targets.
22"
23available: (arch = "x86_64") & os != "win32"
24url {
25src: "https://github.com/janestreet/ocaml_intrinsics/archive/refs/tags/v0.17.0.tar.gz"
26checksum: "sha256=d42b21dc49a05be658391e63fe64c055d52ec67c0812cf6801f1de0f22733ce2"
27}