this repo has no description
1opam-version: "2.0" 2synopsis: 3 "A front-end for the C programming language that facilitates program analysis and transformation" 4description: """ 5This is a fork of the 'cil' package used for 'goblint'. Major changes include: 6* Support for C99 and C11. 7* Compatibility with modern OCaml versions. 8* Use Zarith instead of Num and use that for integer constants. 9* Improved locations with columns and spans. 10* Removal of unmaintained extensions and MSVC support. 11* Use dune instead of make and ocamlbuild. 12* Many bug fixes.""" 13maintainer: [ 14 "Michael Schwarz <michael.schwarz93@gmail.com>" 15 "Simmo Saan <simmo.saan@gmail.com>" 16] 17authors: [ 18 "George Necula" 19 "Scott McPeak" 20 "Westley Weimer" 21 "Gabriel Kerneis" 22 "Ralf Vogler" 23 "Michael Schwarz" 24 "Simmo Saan" 25] 26license: "BSD-3-Clause" 27homepage: "https://github.com/goblint/cil" 28bug-reports: "https://github.com/goblint/cil/issues" 29depends: [ 30 "ocaml" {>= "4.05.0"} 31 "ocamlfind" {with-test} 32 "zarith" 33 "hevea" {with-doc} 34 "dune" {>= "2.7"} 35 "dune-configurator" 36 "odoc" {with-doc} 37 "stdlib-shims" 38 "ppx_deriving_yojson" {>= "3.2"} 39 "yojson" 40 "conf-perl" 41 "cppo" 42 "conf-gcc" 43] 44patches: ["realGccConfigure.patch"] 45conflicts: ["cil"] 46build: [ 47 ["dune" "subst"] {dev} 48 [ 49 "dune" 50 "build" 51 "-p" 52 name 53 "-j" 54 jobs 55 "@install" 56 "@runtest" {with-test} 57 "@doc" {with-doc} 58 ] 59] 60dev-repo: "git+https://github.com/goblint/cil.git" 61depexts: [ 62 ["perl-ExtUtils-MakeMaker"] {os-distribution = "centos" | os-distribution = "fedora" | os-distribution = "ol"} 63 ["perl-FindBin"] {os-distribution = "fedora"} 64 ["build-base"] {os-distribution = "alpine"} 65] 66available: arch != "x86_32" & arch != "arm32" & arch != "ppc32" & arch != "ppc64" & arch != "s390x" 67url { 68 src: 69 "https://github.com/goblint/cil/releases/download/2.0.0/goblint-cil-2.0.0.tbz" 70 checksum: [ 71 "sha256=0467f30218c7ef03074b96912e46f58883e5229ba7d30102470191ad39a49b26" 72 "sha512=08a7a1a79dce32072431dd681866682e9dab7acbc4cb6e0e2255d6b71fea7020d7fcf00bbbb130489b77f03fa244382dce30eca67d75967e81b06e09996d44a8" 73 ] 74} 75x-commit-hash: "9968b57aae763fd0b5d652e13e2f18b643eb82e4" 76extra-source "realGccConfigure.patch" { 77 src: 78 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/goblint-cil/realGccConfigure.patch" 79 checksum: [ 80 "sha256=ed2db32965c435cfc658c8294ac2e94b06fed2303e2ccc9158a36ff1cf4092cc" 81 "md5=8cbe9cc88a05dc7b034b54930b31baed" 82 ] 83}