-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdune-project
60 lines (52 loc) · 1.3 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
(lang dune 3.8)
(name coq-archsem)
(using coq 0.8)
(source (github rems-project/archsem))
(license "BSD-2-Clause")
(authors
"Thibaut Pérami"
"Zonguyan Liu"
"Nils Lauermann"
"Jean Pichon-Pharabod"
"Brian Campbell"
"Alasdair Armstrong"
"Ben Simner"
"Peter Sewell"
)
(maintainers "Thibaut Pérami <[email protected]>")
(package
(name coq-archsem-common)
(synopsis "Common infrastructure and definition for the ArchSem project, includes CDestruct and a free monad library")
(depends
(coq (>= 8.19.2))
coq-stdlib
(coq-equations (>= 1.3))
(coq-record-update (>= 0.3.4))
(coq-hammer-tactics (>= 1.3.2))
(coq-stdpp (= 1.10.0))
(coq-stdpp-bitvector (= 1.10.0))
)
)
(package
(name coq-archsem)
(synopsis "Coq infrastructure to reason about hardware CPU architecture semantics, architecture generic part")
(depends
coq-archsem-common ; need same commit
(coq-sail-stdpp :dev) ; See INSTALL.md for the commit number
)
)
(package
(name coq-archsem-arm)
(synopsis "Coq infrastructure to reason about hardware CPU architecture semantics, Arm instantiation")
(depends
coq-archsem
)
)
(package
(name coq-archsem-riscv)
(synopsis "Coq infrastructure to reason about hardware CPU architecture semantics, RISC-V instantiation")
(depends
coq-archsem
)
)
(generate_opam_files)