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 "Nicolas Bellec"
25 "Thibaut Benjamin"
26 "Allan Blanchard"
27 "Lionel Blatter"
28 "François Bobot"
29 "Richard Bonichon"
30 "Vincent Botbol"
31 "Quentin Bouillaguet"
32 "David Bühler"
33 "Zakaria Chihani"
34 "Loïc Correnson"
35 "Julien Crétin"
36 "Pascal Cuoq"
37 "Zaynah Dargaye"
38 "Basile Desloges"
39 "Jean-Christophe Filliâtre"
40 "Philippe Herrmann"
41 "Maxime Jacquemin"
42 "Florent Kirchner"
43 "Alexander Kogtenkov"
44 "Remi Lazarini"
45 "Tristan Le Gall"
46 "Jean-Christophe Léchenet"
47 "Matthieu Lemerre"
48 "Dara Ly"
49 "David Maison"
50 "Claude Marché"
51 "André Maroneze"
52 "Thibault Martin"
53 "Fonenantsoa Maurica"
54 "Melody Méaulle"
55 "Benjamin Monate"
56 "Yannick Moy"
57 "Pierre Nigron"
58 "Anne Pacalet"
59 "Valentin Perrelle"
60 "Guillaume Petiot"
61 "Dario Pinto"
62 "Virgile Prevosto"
63 "Armand Puccetti"
64 "Félix Ridoux"
65 "Virgile Robles"
66 "Jan Rochel"
67 "Muriel Roger"
68 "Julien Signoles"
69 "Nicolas Stouls"
70 "Kostyantyn Vorobyov"
71 "Boris Yakobowski"
72]
73homepage: "https://frama-c.com/"
74license: "LGPL-2.1-only"
75dev-repo: "git+https://git.frama-c.com/pub/frama-c.git"
76doc: "http://frama-c.com/download/user-manual-29.0-Copper.pdf"
77bug-reports: "https://git.frama-c.com/pub/frama-c/issues"
78tags: [
79 "deductive"
80 "program verification"
81 "formal specification"
82 "automated theorem prover"
83 "interactive theorem prover"
84 "C"
85 "plugins"
86 "abstract interpretation"
87 "slicing"
88 "weakest precondition"
89 "ACSL"
90 "dataflow analysis"
91 "runtime verification"
92]
93
94build: [
95 ["bash" "dev/disable-plugins.sh" "e-acsl"] { os-family = "windows" }
96 ["bash" "dev/disable-plugins.sh" "gui"] { os = "macos" }
97 ["dune" "build" "-j%{jobs}%" "-p" name "--promote-install-files=false"
98 "@install"
99 "@doc" { with-doc }
100 ]
101]
102
103install: [
104 [make
105 "RELEASE=yes" "PREFIX=%{prefix}%" "MANDIR=%{man}%"
106 "DOCDIR=%{doc}%" { with-doc }
107 "install"
108 ]
109]
110
111remove: [
112 [make "PREFIX=%{prefix}%" "-f" "ivette/Makefile.installation" "uninstall"]
113]
114
115run-test: [
116 ["dune" "exec" "--" "frama-c-ptests" "tests" "src/plugins/*/tests"
117 ] { arch != "ppc64" & arch != "x86_32" & arch != "arm32" & os != "macos" & os-distribution != "freebsd" }
118 ["dune" "build" "-j%{jobs}%" "@ptests_config"
119 ] { arch != "ppc64" & arch != "x86_32" & arch != "arm32" & os != "macos" & os-distribution != "freebsd" }
120]
121
122depends: [
123 "dune" { >= "3.7.0"
124 & != "3.13.0" # performance problem
125 }
126 "dune-configurator"
127 "dune-site" { >= "3.7.0"
128 & != "3.13.0" # performance problem
129 }
130
131 ( "alt-ergo-free" | "alt-ergo" )
132 "conf-graphviz" { post }
133 "conf-time" { with-test }
134 "menhir" { >= "20181006" & build }
135 "ocaml" { >= "4.13.1" & < "5.3" }
136 "ocamlgraph" { >= "2.0.0" }
137 "ocamlgraph" { with-test & >= "2.1.0" }
138 "odoc" { with-doc }
139 "unionFind" { >= "20220107" }
140 "why3" { >= "1.7.1" & < "1.8" }
141 "yaml" { >= "3.0.0" }
142 "yojson" {>= "1.6.0" & (>= "2.0.1" | !with-test)}
143 "zarith" { >= "1.9" }
144
145 # PPXs
146 "ppx_deriving"
147 "ppx_deriving_yojson"
148 "ppx_deriving_yaml" { >= "0.2.0" }
149
150 # GTK3 disabled on macOS (segfaults), and made optional on Windows
151 # (due to complex situation with Cygwin + MinGW).
152 "lablgtk3" { >= "3.1.0" & os!="macos" & os-family!="windows" }
153 "lablgtk3-sourceview3" { os!="macos" & os-family!="windows" }
154 "conf-gtksourceview3" { os!="macos" & os-family!="windows" }
155]
156
157# Note: do not put particular versions here, if some version is *incompatible*,
158# use the field 'conflicts'.
159depopts: [
160 "apron"
161 "mlmpfr"
162 "zmq"
163 "lablgtk3" { os-family="windows" }
164 "lablgtk3-sourceview3" { os-family="windows" }
165 "conf-gtksourceview3" { os-family="windows" }
166]
167
168conflicts: [
169 "cairo2" { < "0.6.2" }
170 "mlmpfr" { < "4.1.0-bugfix2" }
171 "pilat" { <= "1.6" }
172 "result" { < "1.5" }
173]
174
175post-messages: [
176"The Frama-C/WP plug-in requires one or more external prover(s).
177Recommended provers are:
178- Alt-Ergo (https://alt-ergo.ocamlpro.com)
179- CVC4 (https://cvc4.github.io)
180- Z3 (https://github.com/Z3Prover/z3)
181Use 'why3 config detect' to configure new provers.
182 " { success }
183"Ivette is a new GUI for Frama-C, currently in development.
184Run 'ivette' once to finalize installation (requires an internet connection).
185Once finalized, 'ivette' will work offline.
186Finalization also requires Node v20 and Yarn:
187- install NVM (https://github.com/nvm-sh/nvm)
188- run 'nvm use 20'
189- run 'npm install --global yarn'" { success }
190]
191
192url {
193 src: "https://www.frama-c.com/download/frama-c-29.0-Copper.tar.gz"
194 checksum: "sha256=d2fbb3b8d0ff83945872e9e6fa258e934a706360e698dae3b4d5f971addf7493"
195}