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