this repo has no description
1opam-version: "2.0" 2available: opam-version >= "2.1.0" 3flags: avoid-version 4synopsis: "Platform dedicated to the analysis of source code written in C" 5description:""" 6Frama-C gathers several analysis techniques in a single collaborative 7framework, based on analyzers (called "plug-ins") that can build upon the 8results computed by other analyzers in the framework. 9Thanks to this approach, Frama-C provides sophisticated tools, including: 10- an analyzer based on abstract interpretation (Eva plug-in); 11- a program proof framework based on weakest precondition calculus (WP plug-in); 12- a program slicer (Slicing plug-in); 13- a tool for verification of temporal (LTL) properties (Aoraï plug-in); 14- a runtime verification tool (E-ACSL plug-in); 15- several tools for code base exploration and dependency analysis 16 (plug-ins From, Impact, Metrics, Occurrence, Scope, etc.). 17These plug-ins communicate between each other via the Frama-C API 18and via ACSL (ANSI/ISO C Specification Language) properties. 19""" 20maintainer: "frama-ci-bot@frama-c.com" 21authors: [ 22 "Michele Alberti" 23 "Thibaud Antignac" 24 "Gergö Barany" 25 "Patrick Baudin" 26 "Thibaut Benjamin" 27 "Allan Blanchard" 28 "Lionel Blatter" 29 "François Bobot" 30 "Richard Bonichon" 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 "Tristan Le Gall" 45 "Jean-Christophe Léchenet" 46 "Matthieu Lemerre" 47 "Dara Ly" 48 "David Maison" 49 "Claude Marché" 50 "André Maroneze" 51 "Thibault Martin" 52 "Fonenantsoa Maurica" 53 "Melody Méaulle" 54 "Benjamin Monate" 55 "Yannick Moy" 56 "Anne Pacalet" 57 "Valentin Perrelle" 58 "Guillaume Petiot" 59 "Dario Pinto" 60 "Virgile Prevosto" 61 "Armand Puccetti" 62 "Félix Ridoux" 63 "Virgile Robles" 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-27.0-beta-Cobalt.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 ["dune" "build" "-j%{jobs}%" "-p" name "--promote-install-files=false" "@install"] 94 [make "-C" "doc" "download"] {with-doc} 95] 96 97install: [ 98 [make "PREFIX=%{prefix}%" "MANDIR=%{mandir}%" "install"] 99 [make "PREFIX=%{prefix}%" "-C" "doc" "install"] {with-doc} 100] 101 102remove: [ 103 [make "PREFIX=%{prefix}%" "-f" "ivette/Makefile.installation" "uninstall"] 104] 105 106run-test: [ 107 ["dune" "exec" "--" "frama-c-ptests" "tests" "src/plugins/*/tests" 108 ] { arch != "ppc64" & arch != "x86_32" & arch != "arm32" & os != "macos" } 109 ["dune" "build" "-j%{jobs}%" "@ptests_config" 110 ] { arch != "ppc64" & arch != "x86_32" & arch != "arm32" & os != "macos" } 111] 112 113depends: [ 114 "dune" { >= "3.2.0" | (>= "3.5.0" & os="macos") } 115 "dune-configurator" 116 "dune-site" { >= "3.2.0" } 117 118 ( "alt-ergo-free" | "alt-ergo" ) 119 "conf-graphviz" { post } 120 "conf-time" { with-test } 121 "menhir" { >= "20181006" & build } 122 "ocaml" {>= "4.11.1" & < "5.3"} 123 "ocamlfind" # needed beyond build stage, used by -load-module 124 "ocamlgraph" { >= "1.8.8" } 125 "ocamlgraph" { with-test & < "2.1.0" } 126 "why3" { >= "1.6.0" & < "1.7~" } 127 "yaml" { >= "3.0.0" } 128 "yojson" {>= "1.6.0" & (>= "2.0.1" | !with-test)} 129 "zarith" { >= "1.5" } 130 131 # PPXs 132 "ppx_deriving" 133 "ppx_deriving_yojson" 134 "ppx_deriving_yaml" { >= "0.2.0" } 135 "ppx_import" 136 137 # GTK3 for non-macos only 138 "lablgtk3" { >= "3.1.0" & os!="macos" } 139 "lablgtk3-sourceview3" { os!="macos" } 140 "conf-gtksourceview3" { os!="macos" } 141] 142 143# Note: do not put particular versions here, if some version is *incompatible*, 144# use the field 'conflicts'. 145depopts: [ 146 "apron" 147 "mlmpfr" 148 "zmq" 149] 150 151conflicts: [ 152 "cairo2" { < "0.6.2" } 153 "mlmpfr" { < "4.1.0-bugfix2" } 154 "pilat" { <= "1.6" } 155 "result" { < "1.5" } 156] 157 158post-messages: [ 159"The Frama-C/WP plug-in requires one or more external prover(s). 160Recommended provers are: 161- Alt-Ergo (https://alt-ergo.ocamlpro.com) 162- CVC4 (https://cvc4.github.io) 163- Z3 (https://github.com/Z3Prover/z3) 164Use 'why3 config detect' to configure new provers. 165 " { success } 166"Ivette is a new GUI for Frama-C, currently in development. 167Run 'ivette' once to finalize installation (requires an internet connection). 168Once finalized, 'ivette' will work offline. 169Finalization also requires Node v16 and Yarn: 170- install NVM (https://github.com/nvm-sh/nvm) 171- run 'nvm use 16' 172- run 'npm install --global yarn'" { success } 173] 174 175url { 176 src: "https://www.frama-c.com/download/frama-c-27.0-beta-Cobalt.tar.gz" 177 checksum: "sha256=9c1b14a689ac8ccda9e827c2eede13bb8d781fb8e4e33c1b5360408e312127d2" 178}