this repo has no description
1opam-version: "2.0"
2synopsis: "Platform dedicated to the analysis of source code written in C"
3description:"""
4Frama-C gathers several analysis techniques in a single collaborative
5framework, based on analyzers (called "plug-ins") that can build upon the
6results computed by other analyzers in the framework.
7Thanks to this approach, Frama-C provides sophisticated tools, including:
8- an analyzer based on abstract interpretation (Eva plug-in);
9- a program proof framework based on weakest precondition calculus (WP plug-in);
10- a program slicer (Slicing plug-in);
11- a tool for verification of temporal (LTL) properties (Aoraï plug-in);
12- a runtime verification tool (E-ACSL plug-in);
13- several tools for code base exploration and dependency analysis
14 (plug-ins From, Impact, Metrics, Occurrence, Scope, etc.).
15These plug-ins communicate between each other via the Frama-C API
16and via ACSL (ANSI/ISO C Specification Language) properties.
17"""
18maintainer: "frama-ci-bot@frama-c.com"
19authors: [
20 "Michele Alberti"
21 "Thibaud Antignac"
22 "Gergö Barany"
23 "Patrick Baudin"
24 "Thibaut Benjamin"
25 "Allan Blanchard"
26 "Lionel Blatter"
27 "François Bobot"
28 "Richard Bonichon"
29 "Quentin Bouillaguet"
30 "David Bühler"
31 "Zakaria Chihani"
32 "Loïc Correnson"
33 "Julien Crétin"
34 "Pascal Cuoq"
35 "Zaynah Dargaye"
36 "Basile Desloges"
37 "Jean-Christophe Filliâtre"
38 "Philippe Herrmann"
39 "Maxime Jacquemin"
40 "Florent Kirchner"
41 "Alexander Kogtenkov"
42 "Tristan Le Gall"
43 "Jean-Christophe Léchenet"
44 "Matthieu Lemerre"
45 "Dara Ly"
46 "David Maison"
47 "Claude Marché"
48 "André Maroneze"
49 "Thibault Martin"
50 "Fonenantsoa Maurica"
51 "Melody Méaulle"
52 "Benjamin Monate"
53 "Yannick Moy"
54 "Pierre Nigron"
55 "Anne Pacalet"
56 "Valentin Perrelle"
57 "Guillaume Petiot"
58 "Dario Pinto"
59 "Virgile Prevosto"
60 "Armand Puccetti"
61 "Félix Ridoux"
62 "Virgile Robles"
63 "Jan Rochel"
64 "Muriel Roger"
65 "Julien Signoles"
66 "Nicolas Stouls"
67 "Kostyantyn Vorobyov"
68 "Boris Yakobowski"
69]
70homepage: "https://frama-c.com/"
71license: "LGPL-2.1-only"
72dev-repo: "git+https://git.frama-c.com/pub/frama-c.git"
73doc: "http://frama-c.com/download/user-manual-28.0-Nickel.pdf"
74bug-reports: "https://git.frama-c.com/pub/frama-c/issues"
75tags: [
76 "deductive"
77 "program verification"
78 "formal specification"
79 "automated theorem prover"
80 "interactive theorem prover"
81 "C"
82 "plugins"
83 "abstract interpretation"
84 "slicing"
85 "weakest precondition"
86 "ACSL"
87 "dataflow analysis"
88 "runtime verification"
89]
90
91build: [
92 ["bash" "dev/disable-plugins.sh" "e-acsl"] { os-family = "windows" }
93 ["bash" "dev/disable-plugins.sh" "gui"] { os = "macos" }
94 ["dune" "build" "-j%{jobs}%" "-p" name "--promote-install-files=false"
95 "@install"
96 "@doc" { with-doc }
97 ]
98]
99
100install: [
101 [make
102 "RELEASE=yes" "PREFIX=%{prefix}%" "MANDIR=%{man}%"
103 "DOCDIR=%{doc}%" { with-doc }
104 "install"
105 ]
106]
107
108remove: [
109 [make "PREFIX=%{prefix}%" "-f" "ivette/Makefile.installation" "uninstall"]
110]
111
112run-test: [
113 ["dune" "exec" "--" "frama-c-ptests" "tests" "src/plugins/*/tests"
114 ] { arch != "ppc64" & arch != "x86_32" & arch != "arm32" & os != "macos" }
115 ["dune" "build" "-j%{jobs}%" "@ptests_config"
116 ] { arch != "ppc64" & arch != "x86_32" & arch != "arm32" & os != "macos" }
117]
118
119depends: [
120 "dune" { >= "3.7.0" }
121 "dune-configurator"
122 "dune-site" { >= "3.7.0" }
123
124 ( "alt-ergo-free" | "alt-ergo" )
125 "conf-graphviz" { post }
126 "conf-time" { with-test }
127 "menhir" { >= "20181006" & build }
128 "ocaml" { >= "4.13.1" & < "5.3" }
129 "ocamlgraph" { >= "1.8.8" }
130 "ocamlgraph" { with-test & >= "2.1.0" }
131 "odoc" { with-doc }
132 "unionFind" { >= "20220107" }
133 "why3" { >= "1.6" & < "1.8" & ( < "1.7" | !with-test ) }
134 "yaml" { >= "3.0.0" }
135 "yojson" {>= "1.6.0" & (>= "2.0.1" | !with-test)}
136 "zarith" { >= "1.5" }
137
138 # PPXs
139 "ppx_deriving"
140 "ppx_deriving_yojson"
141 "ppx_deriving_yaml" { >= "0.2.0" }
142 "ppx_import"
143
144 # GTK3 disabled on macOS (segfaults), and made optional on Windows
145 # (due to complex situation with Cygwin + MinGW).
146 "lablgtk3" { >= "3.1.0" & os!="macos" & os-family!="windows" }
147 "lablgtk3-sourceview3" { os!="macos" & os-family!="windows" }
148 "conf-gtksourceview3" { os!="macos" & os-family!="windows" }
149]
150
151# Note: do not put particular versions here, if some version is *incompatible*,
152# use the field 'conflicts'.
153depopts: [
154 "apron"
155 "mlmpfr"
156 "zmq"
157 "lablgtk3" { os-family="windows" }
158 "lablgtk3-sourceview3" { os-family="windows" }
159 "conf-gtksourceview3" { os-family="windows" }
160]
161
162conflicts: [
163 "cairo2" { < "0.6.2" }
164 "mlmpfr" { < "4.1.0-bugfix2" }
165 "pilat" { <= "1.6" }
166 "result" { < "1.5" }
167]
168
169post-messages: [
170"The Frama-C/WP plug-in requires one or more external prover(s).
171Recommended provers are:
172- Alt-Ergo (https://alt-ergo.ocamlpro.com)
173- CVC4 (https://cvc4.github.io)
174- Z3 (https://github.com/Z3Prover/z3)
175Use 'why3 config detect' to configure new provers.
176 " { success }
177"Ivette is a new GUI for Frama-C, currently in development.
178Run 'ivette' once to finalize installation (requires an internet connection).
179Once finalized, 'ivette' will work offline.
180Finalization also requires Node v16 and Yarn:
181- install NVM (https://github.com/nvm-sh/nvm)
182- run 'nvm use 16'
183- run 'npm install --global yarn'" { success }
184]
185
186url {
187 src: "https://www.frama-c.com/download/frama-c-28.0-Nickel.tar.gz"
188 checksum: "sha256=29612882330ecb6eddd0b4ca3afc0492b70d0feb3379a1b8e893194c6e173983"
189}