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: "francois.bobot@cea.fr"
19authors: [
20 "Michele Alberti"
21 "Thibaud Antignac"
22 "Gergö Barany"
23 "Patrick Baudin"
24 "Allan Blanchard"
25 "Lionel Blatter"
26 "François Bobot"
27 "Richard Bonichon"
28 "Quentin Bouillaguet"
29 "David Bühler"
30 "Zakaria Chihani"
31 "Loïc Correnson"
32 "Julien Crétin"
33 "Pascal Cuoq"
34 "Zaynah Dargaye"
35 "Basile Desloges"
36 "Jean-Christophe Filliâtre"
37 "Philippe Herrmann"
38 "Maxime Jacquemin"
39 "Florent Kirchner"
40 "Tristan Le Gall"
41 "Jean-Christophe Léchenet"
42 "Matthieu Lemerre"
43 "Dara Ly"
44 "David Maison"
45 "Claude Marché"
46 "André Maroneze"
47 "Thibault Martin"
48 "Fonenantsoa Maurica"
49 "Melody Méaulle"
50 "Benjamin Monate"
51 "Yannick Moy"
52 "Anne Pacalet"
53 "Valentin Perrelle"
54 "Guillaume Petiot"
55 "Virgile Prevosto"
56 "Armand Puccetti"
57 "Virgile Robles"
58 "Muriel Roger"
59 "Julien Signoles"
60 "Kostyantyn Vorobyov"
61 "Boris Yakobowski"
62]
63homepage: "http://frama-c.com/"
64license: "GNU Lesser General Public License version 2.1"
65dev-repo: "git+https://git.frama-c.com/pub/frama-c.git"
66doc: "http://frama-c.com/download/user-manual-21.1-Scandium.pdf"
67bug-reports: "https://bts.frama-c.com/"
68tags: [
69 "deductive"
70 "program verification"
71 "formal specification"
72 "automated theorem prover"
73 "interactive theorem prover"
74 "C"
75 "plugins"
76 "abstract interpretation"
77 "slicing"
78 "weakest precondition"
79 "ACSL"
80 "dataflow analysis"
81 "runtime verification"
82]
83
84build: [
85 ["autoconf"] {pinned}
86 ["./configure" "--prefix" prefix
87 "--disable-gui" { !conf-gtksourceview:installed |
88 ( !conf-gnomecanvas:installed &
89 !lablgtk3:installed) }
90 "--mandir=%{man}%"
91 ]
92 [make "-j%{jobs}%"]
93 [make "-C" "doc" "download"] {with-doc}
94]
95
96install: [
97 [make "install"]
98 [make "-C" "doc" "install"] {with-doc}
99]
100
101#run-test: [
102# [make "-j%{jobs}%" "PTESTS_OPTS=-error-code" "tests"]
103#]
104# Logs diffs against /tmp not /opam-tmp (imcompatible with opam sandbox)
105
106depends: [
107 "ocaml" {>= "4.05.0" & < "4.08.0~" | >= "4.08.1" & < "5.3"}
108 "ocamlgraph" { >= "1.8.8" & < "1.9~" }
109 "ocamlfind" # needed beyond build stage, used by -load-module
110 "zarith"
111 "conf-autoconf" { build }
112 ( ( "lablgtk" { >= "2.18.2" } & "conf-gnomecanvas" & "conf-gtksourceview" )
113 | ( "lablgtk3" { >= "3.0.beta4" & os!="macos" }
114 & "lablgtk3-sourceview3" & "conf-gtksourceview3" ) )
115 ( "alt-ergo-free" | "alt-ergo" )
116 "conf-graphviz" { post }
117 "yojson"
118 "why3" { >= "1.3.1" & < "1.4~" }
119# "conf-time" {with-test}
120]
121
122depopts: [
123 # cannot use {build}: Frama-C must be recompiled when Coq and libraries changes.
124 # Coq: because .vo would would not be loadable by another version of Coq
125 # libraries: because we use dynamic linking
126 "coq"
127 "mlgmpidl"
128 "apron"
129 "zmq"
130 "ppx_deriving"
131 "ppx_deriving_yojson"
132]
133
134conflicts: [
135 "lablgtk" { < "2.18.2" } #for ocaml >= 4.02.1
136 "frama-c-e-acsl" #avoid mixing old releases of E-ACSL, it is already
137 #distributed with this version of Frama-C
138 "frama-c-base" #avoid mixing old releases of Frama-C, now that only the
139 #'frama-c' package exists
140]
141
142messages: [
143 "The Frama-C/Wp now uses Why-3 for all provers (Cf. deprecated -wp-prover native:alt-ergo)"
144 {alt-ergo:installed}
145 "The Frama-C/Wp native support for Coq is now deprecated (use TIP or Why-3 instead)."
146 {coq:installed}
147 "WARNING: There is a known issue with OCaml 4.05.0 and ocamlfind 1.8.1 (https://github.com/ocaml/opam-repository/issues/10925) when upgrading from a previous ocamlfind. If the compilation of Frama-C fails, try downgrading ocamlfind to 1.8.0 or upgrading OCaml to > 4.05.0." { ocaml:version = "4.05.0" & ocamlfind:version = "1.8.1" }
148]
149
150url {
151 src:
152 "https://git.frama-c.com/pub/frama-c/-/wikis/downloads/frama-c-21.1-Scandium.tar.gz"
153 checksum: [
154 "sha256=be25105521d40eeb2872b3dc2d46b2f67dca2b6e3546ed65ab0de4df10680063"
155 "md5=44ae60236da19b3ed7d28d476575643d"
156 ]
157}