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" {>= "4.14.0"} 14 "dune" {>= "2.0.0"} 15 "dune-configurator" 16] 17synopsis: "Intrinsics" 18description: " 19Provides functions to invoke amd64 instructions (such as clz,popcnt,rdtsc,rdpmc) 20 when available, or compatible software implementation on other targets. 21" 22available: (arch = "x86_64" | arch = "arm64") & os != "win32" 23url { 24 src: 25 "https://github.com/janestreet/ocaml_intrinsics/archive/refs/tags/v0.16.1.tar.gz" 26 checksum: [ 27 "md5=c1ba2b1321f8fb5e3752b7d9250bfc6f" 28 "sha512=62986ffbcac6822ada73ae187c667de1059c398b1c64234d6a887111509e92159a20a560b1846577aced07e82adbb34ef0e8bfd46919f6a2ba79fce45ecf1849" 29 ] 30}