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 { 24src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/ocaml_intrinsics-v0.16.0.tar.gz" 25checksum: "sha256=9b28693fefa85b8d783317f93aa4764aab9bac8967d38a360e8bb36972f807a4" 26}