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 "Anne Pacalet" 55 "Valentin Perrelle" 56 "Guillaume Petiot" 57 "Dario Pinto" 58 "Virgile Prevosto" 59 "Armand Puccetti" 60 "Félix Ridoux" 61 "Virgile Robles" 62 "Muriel Roger" 63 "Julien Signoles" 64 "Nicolas Stouls" 65 "Kostyantyn Vorobyov" 66 "Boris Yakobowski" 67] 68homepage: "https://frama-c.com/" 69license: "LGPL-2.1-only" 70dev-repo: "git+https://git.frama-c.com/pub/frama-c.git" 71doc: "http://frama-c.com/download/user-manual-27.1-Cobalt.pdf" 72bug-reports: "https://git.frama-c.com/pub/frama-c/issues" 73tags: [ 74 "deductive" 75 "program verification" 76 "formal specification" 77 "automated theorem prover" 78 "interactive theorem prover" 79 "C" 80 "plugins" 81 "abstract interpretation" 82 "slicing" 83 "weakest precondition" 84 "ACSL" 85 "dataflow analysis" 86 "runtime verification" 87] 88 89build: [ 90 ["bash" "dev/disable-plugins.sh" "e-acsl"] { os-family = "windows" } 91 ["dune" "build" "-j%{jobs}%" "-p" name "--promote-install-files=false" 92 "@install" 93 "@doc" { with-doc } 94 ] 95] 96 97install: [ 98 [make 99 "RELEASE=yes" "PREFIX=%{prefix}%" "MANDIR=%{man}%" 100 "DOCDIR=%{doc}%" { with-doc } 101 "install" 102 ] 103] 104 105remove: [ 106 [make "PREFIX=%{prefix}%" "-f" "ivette/Makefile.installation" "uninstall"] 107] 108 109run-test: [ 110 ["dune" "exec" "--" "frama-c-ptests" "tests" "src/plugins/*/tests" 111 ] { arch != "ppc64" & arch != "x86_32" & arch != "arm32" & os != "macos" } 112 ["dune" "build" "-j%{jobs}%" "@ptests_config" 113 ] { arch != "ppc64" & arch != "x86_32" & arch != "arm32" & os != "macos" } 114] 115 116depends: [ 117 "dune" { >= "3.2.0" | (>= "3.5.0" & os="macos") } 118 "dune-configurator" 119 "dune-site" { >= "3.2.0" } 120 121 ( "alt-ergo-free" | "alt-ergo" ) 122 "conf-graphviz" { post } 123 "conf-time" { with-test } 124 "menhir" { >= "20181006" & build } 125 "ocaml" {>= "4.11.1" & < "5.3"} 126 "ocamlfind" # needed beyond build stage, used by -load-module 127 "ocamlgraph" { >= "1.8.8" } 128 "ocamlgraph" { with-test & < "2.1.0" } 129 "odoc" { with-doc } 130 "why3" { >= "1.6.0" & < "1.7~" } 131 "yaml" { >= "3.0.0" } 132 "yojson" {>= "1.6.0" & (>= "2.0.1" | !with-test)} 133 "zarith" { >= "1.5" } 134 135 # PPXs 136 "ppx_deriving" 137 "ppx_deriving_yojson" 138 "ppx_deriving_yaml" { >= "0.2.0" } 139 "ppx_import" 140 141 # GTK3 for non-macos only 142 "lablgtk3" { >= "3.1.0" & os!="macos" } 143 "lablgtk3-sourceview3" { os!="macos" } 144 "conf-gtksourceview3" { os!="macos" } 145] 146 147# Note: do not put particular versions here, if some version is *incompatible*, 148# use the field 'conflicts'. 149depopts: [ 150 "apron" 151 "mlmpfr" 152 "zmq" 153] 154 155conflicts: [ 156 "cairo2" { < "0.6.2" } 157 "mlmpfr" { < "4.1.0-bugfix2" } 158 "pilat" { <= "1.6" } 159 "result" { < "1.5" } 160] 161 162post-messages: [ 163"The Frama-C/WP plug-in requires one or more external prover(s). 164Recommended provers are: 165- Alt-Ergo (https://alt-ergo.ocamlpro.com) 166- CVC4 (https://cvc4.github.io) 167- Z3 (https://github.com/Z3Prover/z3) 168Use 'why3 config detect' to configure new provers. 169 " { success } 170"Ivette is a new GUI for Frama-C, currently in development. 171Run 'ivette' once to finalize installation (requires an internet connection). 172Once finalized, 'ivette' will work offline. 173Finalization also requires Node v16 and Yarn: 174- install NVM (https://github.com/nvm-sh/nvm) 175- run 'nvm use 16' 176- run 'npm install --global yarn'" { success } 177] 178 179url { 180 src: "https://www.frama-c.com/download/frama-c-27.1-Cobalt.tar.gz" 181 checksum: "sha256=5b13574a16a58971c27909bee94ae7f37b17d897852b40c768a3d4e2e09e39d2" 182}