-
Notifications
You must be signed in to change notification settings - Fork 2
/
coq-sail-stdpp.opam
51 lines (51 loc) · 1.67 KB
/
coq-sail-stdpp.opam
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
opam-version: "2.0"
name: "coq-sail-stdpp"
version: "0.18"
maintainer: "Sail Devs <[email protected]>"
authors: [
"Alasdair Armstrong"
"Thomas Bauereiss"
"Brian Campbell"
"Shaked Flur"
"Jonathan French"
"Kathy Gray"
"Robert Norton"
"Christopher Pulte"
"Peter Sewell"
"Mark Wassell"
]
homepage: "http://www.cl.cam.ac.uk/~pes20/sail/"
bug-reports: "https://github.com/rems-project/coq-sail/issues"
doc: "https://github.com/rems-project/sail/blob/sail2/README.md"
license: "BSD-3-clause"
dev-repo: "git+https://github.com/rems-project/coq-sail.git"
build: [
["sh" "-exc" "./prepare-stdpp-src.sh"]
[make "-C" "src-stdpp"]
]
install: [make "-C" "src-stdpp" "install"]
depends: [
"coq" {>= "8.14.0"}
"coq-stdpp-bitvector"
]
# Ensure that if we're building from Sail then the version is compatible
conflicts: [
"sail" { != version }
]
synopsis:
"Support library for Sail, a language for describing the instruction semantics of processors, using stdpp bitvectors"
description:
"""The support library for instruction-set semantics generated from Sail.
Sail is a language for describing the instruction-set
architecture (ISA) semantics of processors. Sail aims to provide a
engineer-friendly, vendor-pseudocode-like language for describing
instruction semantics. It is essentially a first-order imperative
language, but with lightweight dependent typing for numeric types and
bitvector lengths, which are automatically checked using Z3. It has
been used for several papers, available from
http://www.cl.cam.ac.uk/~pes20/sail/.
The Sail tool can be found in main opam repository."""
tags: [
"logpath:Sail"
"category:Computer Science/Semantics and Compilation/Semantics"
]