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.1-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 & != "3.13.0" # performance problem
122 }
123 "dune-configurator"
124 "dune-site" { >= "3.7.0" }
125
126 ( "alt-ergo-free" | "alt-ergo" )
127 "conf-graphviz" { post }
128 "conf-time" { with-test }
129 "menhir" { >= "20181006" & build }
130 "ocaml" { >= "4.13.1" & < "5.3" }
131 "ocamlgraph" { >= "1.8.8" }
132 "ocamlgraph" { with-test & >= "2.1.0" }
133 "odoc" { with-doc }
134 "unionFind" { >= "20220107" }
135 "why3" { >= "1.6" & < "1.8" & ( < "1.7" | !with-test ) }
136 "yaml" { >= "3.0.0" }
137 "yojson" {>= "1.6.0" & (>= "2.0.1" | !with-test)}
138 "zarith" { >= "1.5" }
139
140 # PPXs
141 "ppx_deriving"
142 "ppx_deriving_yojson"
143 "ppx_deriving_yaml" { >= "0.2.0" }
144 "ppx_import"
145
146 # GTK3 disabled on macOS (segfaults), and made optional on Windows
147 # (due to complex situation with Cygwin + MinGW).
148 "lablgtk3" { >= "3.1.0" & os!="macos" & os-family!="windows" }
149 "lablgtk3-sourceview3" { os!="macos" & os-family!="windows" }
150 "conf-gtksourceview3" { os!="macos" & os-family!="windows" }
151]
152
153# Note: do not put particular versions here, if some version is *incompatible*,
154# use the field 'conflicts'.
155depopts: [
156 "apron"
157 "mlmpfr"
158 "zmq"
159 "lablgtk3" { os-family="windows" }
160 "lablgtk3-sourceview3" { os-family="windows" }
161 "conf-gtksourceview3" { os-family="windows" }
162]
163
164conflicts: [
165 "cairo2" { < "0.6.2" }
166 "mlmpfr" { < "4.1.0-bugfix2" }
167 "pilat" { <= "1.6" }
168 "result" { < "1.5" }
169]
170
171post-messages: [
172"The Frama-C/WP plug-in requires one or more external prover(s).
173Recommended provers are:
174- Alt-Ergo (https://alt-ergo.ocamlpro.com)
175- CVC4 (https://cvc4.github.io)
176- Z3 (https://github.com/Z3Prover/z3)
177Use 'why3 config detect' to configure new provers.
178 " { success }
179"Ivette is a new GUI for Frama-C, currently in development.
180Run 'ivette' once to finalize installation (requires an internet connection).
181Once finalized, 'ivette' will work offline.
182Finalization also requires Node v16 and Yarn:
183- install NVM (https://github.com/nvm-sh/nvm)
184- run 'nvm use 16'
185- run 'npm install --global yarn'" { success }
186]
187
188url {
189 src: "https://www.frama-c.com/download/frama-c-28.1-Nickel.tar.gz"
190 checksum: "sha256=0220bc743b7da2468ceb926f331edc7ddfaa7c603ba47962de3e33c8e1e3f593"
191}