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 "Dario Pinto" 56 "Virgile Prevosto" 57 "Armand Puccetti" 58 "Virgile Robles" 59 "Muriel Roger" 60 "Julien Signoles" 61 "Kostyantyn Vorobyov" 62 "Boris Yakobowski" 63] 64homepage: "http://frama-c.com/" 65license: "LGPL-2.1-only" 66dev-repo: "git+https://git.frama-c.com/pub/frama-c.git" 67doc: "http://frama-c.com/download/user-manual-23.0-Vanadium.pdf" 68bug-reports: "https://git.frama-c.com/pub/frama-c/issues" 69tags: [ 70 "deductive" 71 "program verification" 72 "formal specification" 73 "automated theorem prover" 74 "interactive theorem prover" 75 "C" 76 "plugins" 77 "abstract interpretation" 78 "slicing" 79 "weakest precondition" 80 "ACSL" 81 "dataflow analysis" 82 "runtime verification" 83] 84 85build: [ 86 ["autoconf"] {pinned} 87 ["./configure" "--prefix" prefix 88 "--mandir=%{man}%" 89 ] 90 [make "-j%{jobs}%"] 91 [make "-C" "doc" "download"] {with-doc} 92] 93 94install: [ 95 [make "install"] 96 [make "-C" "doc" "install"] {with-doc} 97] 98 99run-test: [ 100 [make "-j%{jobs}%" "PTESTS_OPTS=-error-code" "tests"] { arch != "ppc64" & arch != "x86_32" & arch != "arm32" } 101 # tests are disabled on PPC64 due to floating-point oracle differences 102 # (some ULPs in libc trigonometric functions) and due to the lack of 103 # available hardware to test them locally 104] 105 106# Please keep depends and depopts sorted by package name 107depends: [ 108 "conf-autoconf" { build } 109 ( ( "lablgtk" { >= "2.18.8" } & "conf-gnomecanvas" & "conf-gtksourceview" 110 & ("ocamlgraph" { < "2.0" } | "ocamlgraph_gtk" )) 111 | ( "lablgtk3" { >= "3.1.0" & os!="macos" } 112 & "lablgtk3-sourceview3" & "conf-gtksourceview3" ) ) 113 ( "alt-ergo-free" | "alt-ergo" ) 114 "conf-graphviz" { post } 115 "conf-time" { with-test } 116 "ocaml" { >= "4.08.1" & < "4.13.0" } 117 "ocamlfind" # needed beyond build stage, used by -load-module 118 "ocamlgraph" { >= "1.8.8" } 119 "why3" { >= "1.4.0" & < "1.5~" } 120 "yojson" {>= "1.6.0" & < "2.1.0" & ( < "2.0.0" | ! with-test)} 121 "zarith" {>= "1.5"} 122] 123 124depopts: [ 125 # cannot use {build}: Frama-C must be recompiled when Coq and libraries changes. 126 # Coq: because .vo would would not be loadable by another version of Coq 127 # libraries: because we use dynamic linking 128 "apron" 129 "coq" 130 "mlgmpidl" 131 "ppx_deriving" 132 "ppx_deriving_yojson" 133 "zmq" 134] 135 136messages: [ 137 "The Frama-C/Wp now uses Why-3 for all provers (Cf. deprecated -wp-prover native:alt-ergo)" 138 {alt-ergo:installed} 139 "The Frama-C/Wp native support for Coq is deprecated and only activated with Coq.8.12.x (use TIP or Why-3 instead)." 140 {coq:installed} 141] 142 143post-messages: [ 144 "Why3 provers setup: rm -f ~/.why3.conf ; why3 config detect" 145] 146 147url { 148 src: 149 "https://git.frama-c.com/pub/frama-c/-/wikis/downloads/frama-c-23.1-Vanadium.tar.gz" 150 checksum: [ 151 "sha256=d25a3448d0e0baec242ff500858295d0e73ebc91e0a90200afda0cf274c2f3e5" 152 "md5=b8899560bdb2469b8d30b78d38621589" 153 ] 154}