-
Notifications
You must be signed in to change notification settings - Fork 14
/
dune-project
40 lines (34 loc) · 1.33 KB
/
dune-project
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
(lang dune 2.7)
(using menhir 2.0)
(cram enable)
(version 4.1.0)
(name FrontC)
(license LGPL-2.0-only)
(authors "Hugues Cassé <[email protected]> et al")
(maintainers "Ivan Gotovchits <[email protected]>")
(source (github BinaryAnalysisPlatform/FrontC))
(homepage "https://github.com/BinaryAnalysisPlatform/FrontC")
(bug_reports "https://github.com/BinaryAnalysisPlatform/FrontC/issues")
(package
(name FrontC)
(synopsis "Parses C programs to an abstract syntax tree")
(description "FrontC provides a C parser and an OCaml definition \
of an abstract syntax treee for the C language. It also \
includes AST pretty-printers in plain and XML formats.")
(depends menhir)
(tags (FrontC C parser XML)))
(package
(name calipso)
(synopsis "Rewrites C programs to remove non-structured control-flow")
(description "Calipso analyzes programs in order to replace all \
nonstructured instructions (i.e., break, return, switch...) \
by branches and, then, remove all branches. \
See https://dblp.org/rec/journals/tsi/CasseFRS02 for more details" )
(depends (FrontC (>= 4.1.0)))
(tags (FrontC C analysis)))
(package
(name ctoxml)
(synopsis "Parses a C program into Cabs AST and dumps as an XML document")
(depends (FrontC (>= 4.1.0)))
(tags (FrontC C parser XML)))
(generate_opam_files true)