this repo has no description
1opam-version: "2.0"
2synopsis: "Static analysis framework for C"
3description: """
4Goblint is a sound static analysis framework for C programs using abstract interpretation.
5It specializes in thread-modular verification of multi-threaded programs, especially regarding data races.
6Goblint includes analyses for assertions, overflows, deadlocks, etc and can be extended with new analyses.
7"""
8maintainer: [
9 "Simmo Saan <simmo.saan@gmail.com>"
10 "Michael Schwarz <michael.schwarz93@gmail.com>"
11 "Karoliine Holter <karoliine.holter@ut.ee>"
12]
13authors: [
14 "Simmo Saan"
15 "Michael Schwarz"
16 "Julian Erhard"
17 "Sarah Tilscher"
18 "Karoliine Holter"
19 "Ralf Vogler"
20 "Kalmer Apinis"
21 "Vesal Vojdani"
22]
23license: "MIT"
24tags: [
25 "program analysis"
26 "program verification"
27 "static analysis"
28 "abstract interpretation"
29 "C"
30 "data race analysis"
31 "concurrency"
32]
33homepage: "https://goblint.in.tum.de"
34doc: "https://goblint.readthedocs.io/en/latest/"
35bug-reports: "https://github.com/goblint/analyzer/issues"
36depends: [
37 "dune" {>= "3.7"}
38 "ocaml" {>= "4.14"}
39 "goblint-cil" {>= "2.0.4" & < "2.0.5"}
40 "batteries" {>= "3.5.1"}
41 "zarith" {>= "1.10"}
42 "yojson" {>= "2.0.0"}
43 "qcheck-core" {>= "0.19"}
44 "ppx_deriving" {>= "6.0.2"}
45 "ppx_deriving_hash" {>= "0.1.2"}
46 "ppx_deriving_yojson" {>= "3.7.0"}
47 "ounit2" {with-test}
48 "qcheck-ounit" {with-test}
49 "odoc" {with-doc}
50 "fpath"
51 "dune-site"
52 "dune-build-info"
53 "json-data-encoding"
54 "jsonrpc" {>= "1.12"}
55 "sha" {>= "1.12"}
56 "fileutils" {>= "0.6.4"}
57 "cpu"
58 "arg-complete"
59 "yaml" {>= "3.0.0"}
60 "uuidm"
61 "catapult"
62 "catapult-file"
63 "conf-gmp" {>= "3"}
64 "conf-ruby" {with-test}
65 "benchmark" {with-test}
66 "conf-gcc"
67]
68depopts: [
69 "apron" {>= "v0.9.15"}
70 "z3"
71]
72conflicts: [
73 "result" {< "1.5"}
74 "ez-conf-lib" {= "1"}
75]
76build: [
77 ["dune" "subst"] {dev}
78 [
79 "dune"
80 "build"
81 "-p"
82 name
83 "-j"
84 jobs
85 "--promote-install-files=false"
86 "@install"
87 "@runtest" {with-test}
88 "@doc" {with-doc}
89 ]
90 ["dune" "install" "-p" name "--create-install-files" name]
91]
92dev-repo: "git+https://github.com/goblint/analyzer.git"
93# on `dune build` goblint.opam will be generated from goblint.opam.template and dune-project
94# also remember to generate/adjust goblint.opam.locked!
95available: os-family != "bsd" & os-distribution != "alpine" & (arch != "arm64" | os = "macos")
96# pin-depends: [
97 # published goblint-cil 2.0.4 is currently up-to-date, so no pin needed
98 # [ "goblint-cil.2.0.3" "git+https://github.com/goblint/cil.git#ae3a4949d478fad77e004c6fe15a7c83427df59f" ]
99# ]
100depexts: [
101 ["libgraph-easy-perl"] {os-distribution = "ubuntu" & with-test}
102]
103post-messages: [
104 "Do not benchmark Goblint on OCaml 5 (https://goblint.readthedocs.io/en/latest/user-guide/benchmarking/)." {ocaml:version >= "5.0.0"}
105]
106url {
107 src:
108 "https://github.com/goblint/analyzer/releases/download/v2.4.0/goblint-2.4.0.tbz"
109 checksum: [
110 "sha256=99b78e6def71534d195eef9084baa26d8334b36084e120aa6afb300c9bf8afa6"
111 "sha512=f3162bd95a03c00358a2991f6152fc6169205bfb4c55e2c483e98cc3935673df9656d025b6f1ea0fa5f1bd0aee037d4f483966b0d2907e3fa9bf11a93a3392af"
112 ]
113}
114x-commit-hash: "b129fab7de3ab5fd85d2f1340b2d9c5a4e4e2653"
115x-ci-accept-failures: [
116 "macos-homebrew" # newer MacOS headers cannot be parsed (https://github.com/ocaml/opam-repository/pull/26307#issuecomment-2258080206)
117 "opensuse-tumbleweed" # not GNU diff, so some cram tests fail (https://discuss.ocaml.org/t/opensuse-and-opam-tests/14641/2)
118]