Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
77 changes: 77 additions & 0 deletions packages/goblint-cil/goblint-cil.2.0.8/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
opam-version: "2.0"
synopsis:
"A front-end for the C programming language that facilitates program analysis and transformation"
description: """
This is a fork of the 'cil' package used for 'goblint'. Major changes include:
* Support for C99 and C11.
* Compatibility with modern OCaml versions.
* Use Zarith instead of Num and use that for integer constants.
* Improved locations with columns and spans.
* Removal of unmaintained extensions and MSVC support.
* Use dune instead of make and ocamlbuild.
* Many bug fixes."""
maintainer: [
"Michael Schwarz <[email protected]>"
"Simmo Saan <[email protected]>"
]
authors: [
"George Necula"
"Scott McPeak"
"Westley Weimer"
"Gabriel Kerneis"
"Ralf Vogler"
"Michael Schwarz"
"Simmo Saan"
]
license: "BSD-3-Clause"
homepage: "https://github.com/goblint/cil"
bug-reports: "https://github.com/goblint/cil/issues"
depends: [
"ocaml" {>= "4.12.0"}
"ocamlfind" {with-test}
"zarith"
"hevea" {with-doc}
"dune" {>= "2.7"}
"dune-configurator"
"odoc" {with-doc}
"stdlib-shims"
"ppx_deriving_yojson" {>= "3.2"}
"yojson"
"conf-perl"
"cppo"
"conf-gcc"
]
conflicts: ["cil" "host-system-mingw"]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
conflicts: ["cil" "host-system-mingw"]
conflicts: ["cil" "host-system-msvc"]

Hm, according to the CI logs host-system-msvc is used on the two GHA runners:
https://github.com/ocaml/opam-repository/actions/runs/18243132453/job/51947665615?pr=28478
https://github.com/ocaml/opam-repository/actions/runs/18243132453/job/51947665614?pr=28478

We can switch to that or remove the host-system-mingw suggestion again.
In either case, this is still good to go.

build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test & (arch = "x86_64" | os != "linux")} # fails on arm64 debian-13
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/goblint/cil.git"
depexts: [
["perl-ExtUtils-MakeMaker"] {os-distribution = "centos" | os-family = "fedora" | os-distribution = "ol"}
["perl-FindBin"] {os-family = "fedora"}
["build-base"] {os-distribution = "alpine"}
]
available: arch = "x86_64" | arch = "arm64"
x-ci-accept-failures: [
"freebsd-14.2" # installed cilly binary is not found for some reason (https://github.com/ocaml/opam-repository/pull/24812#issuecomment-1819231335)
]
url {
src:
"https://github.com/goblint/cil/releases/download/2.0.8/goblint-cil-2.0.8.tbz"
checksum: [
"sha256=b09009442e27c51e61653ca0104069097bfcb7943457478fd5a153cdda9cbc09"
"sha512=0f89d8920a35daa9213d7c407d1e1d89d820df9d6da1878335209e166aad68b2a377134ab08bb74499b40d13a7b758959b225b01e067d6e609da5295913e2af7"
]
}
x-commit-hash: "d1da1ba071b7060b7b9c533853a3c56e82e762ba"
Loading