File tree Expand file tree Collapse file tree 4 files changed +11
-3
lines changed
Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 11-Q proof VSTlib
22-Q test VSTlibtest
3+ proof/version.v
34proof/math_extern.v
45proof/spec_math.v
56proof/verif_math.v
Original file line number Diff line number Diff line change 11opam-version: "2.0"
2- version: "dev "
2+ version: "2.12 "
33synopsis: "VSTlib: VST-verified C library for VST-verified clients"
44description: "These program modules, in the form of Verified Software Units,
55may be linked with client-module code (at the .c/.o level) and proofs (at the .v level)."
66authors: [
77 "Andrew W. Appel"
88]
9- maintainer: "Andrew W. Appel"
9+ maintainer: "Andrew W. Appel <appel@princeton.edu> "
1010homepage: "http://"
1111dev-repo: "git+https://github.com/PrincetonUniversity/VST"
1212bug-reports: "https://github.com/PrincetonUniversity/VST/issues"
Original file line number Diff line number Diff line change 1+ Require Import ZArith Coq.Strings.String. Open Scope string.
2+ Definition release := "2.12".
Original file line number Diff line number Diff line change 22# usage: util/make_version Bitsize Compcert-version
33F=veric/version.v
44set -e
5+ if [ -f ` which gdate` ]; then
6+ DATE=gdate
7+ else
8+ DATE=date
9+ fi
510printf > $F ' Require Import ZArith Coq.Strings.String. Open Scope string.\n'
611printf >> $F ' Definition git_rev := "'
712if [ -e " $( command -v git) " ] && [ " $( git rev-parse --is-inside-work-tree 2> /dev/null) " = " true" ]; then
@@ -12,7 +17,7 @@ printf >>$F 'Definition release := "'
1217tr -d ' [:cntrl:]' < VERSION >> $F
1318printf >> $F ' ".\n'
1419printf >> $F ' Definition date := "'
15- date --rfc-3339=date | tr -d ' [:cntrl:]' >> $F
20+ $DATE --rfc-3339=date | tr -d ' [:cntrl:]' >> $F
1621printf >> $F ' ".\n'
1722printf >> $F ' Definition bitsize : Z := %d.\n' $1
1823printf >> $F ' Definition compcert_version := "%s".' $2
You can’t perform that action at this time.
0 commit comments