forked from PrincetonUniversity/VST
-
Notifications
You must be signed in to change notification settings - Fork 0
/
coq-vst.opam
36 lines (36 loc) · 1.33 KB
/
coq-vst.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
opam-version: "2.0"
authors: ["Andrew W. Appel"
"Lennart Beringer"
"Sandrine Blazy"
"Qinxiang Cao"
"Santiago Cuellar"
"Robert Dockins"
"Josiah Dodds"
"Nick Giannarakis"
"Samuel Gruetter"
"Aquinas Hobor"
"Jean-Marie Madiot"
]
maintainer: "VST team"
homepage: "http://vst.cs.princeton.edu/"
dev-repo: "git+https://github.com/PrincetonUniversity/VST.git"
bug-reports: "https://github.com/PrincetonUniversity/VST/issues"
license: "https://raw.githubusercontent.com/PrincetonUniversity/VST/master/LICENSE"
build: [
[make "BITSIZE=64" "depend"]
[make "BITSIZE=64" "-j%{jobs}%" "msl" "sepcomp" "veric" "floyd"]
]
run-test: [make "BITSIZE=64" "-j%{jobs}%" "progs"]
install: [
make "BITSIZE=64" "install"
]
depends: [
"coq" {>= "8.11.0"}
"coq-compcert" {= "3.9"}
]
synopsis: "Verified Software Toolchain"
description:
"The software toolchain includes static analyzers to check assertions about your program; optimizing compilers to translate your program to machine language; operating systems and libraries to supply context for your program. The Verified Software Toolchain project assures with machine-checked proofs that the assertions claimed at the top of the toolchain really hold in the machine-language program, running in the operating-system context."
url {
src: "git+https://github.com/PrincetonUniversity/VST.git#master"
}