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] 44conflicts: ["cil"] 45build: [ 46 ["dune" "subst"] {dev} 47 [ 48 "dune" 49 "build" 50 "-p" 51 name 52 "-j" 53 jobs 54 "@install" 55 "@runtest" {with-test} 56 "@doc" {with-doc} 57 ] 58] 59dev-repo: "git+https://github.com/goblint/cil.git" 60depexts: [ 61 ["perl-ExtUtils-MakeMaker"] {os-distribution = "centos" | os-distribution = "fedora" | os-distribution = "ol"} 62 ["perl-FindBin"] {os-distribution = "fedora"} 63 ["build-base"] {os-distribution = "alpine"} 64] 65available: arch = "x86_64" | arch = "arm64" 66url { 67 src: 68 "https://github.com/goblint/cil/releases/download/2.0.5/goblint-cil-2.0.5.tbz" 69 checksum: [ 70 "sha256=bef0769f2322d03248f6e23b447642baec63c72c430c5affd04239a063d5d601" 71 "sha512=3d0d4a161515cb9ee51c32eca967fa3b2fbb43b647aab61da2f5cb15fec975eb088ed00a5b9961f1e0b7780773c369509a177639c6630b48d222deb56a795760" 72 ] 73} 74x-commit-hash: "c79208b21ea61d7b72eae29a18c1ddeda4795dfd" 75x-ci-accept-failures: [ 76 "freebsd" # installed cilly binary is not found for some reason (https://github.com/ocaml/opam-repository/pull/24812#issuecomment-1819231335) 77]