-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
70 changed files
with
5,503 additions
and
3,979 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,13 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
maintainer: ["Zongyuan Liu <[email protected]>"] | ||
authors: [ | ||
"Zongyuan Liu <[email protected]>" | ||
"Angus Hammond <[email protected]>" | ||
"Jean Pichon-Pharabod <[email protected]>" | ||
"Thibaut Pérami <[email protected]>" | ||
] | ||
homepage: "https://github.com/logsem/AxSL" | ||
bug-reports: "https://github.com/logsem/AxSL/issues" | ||
depends: [ | ||
"dune" {>= "3.9"} | ||
"coq" {= "8.16.1"} | ||
"coq-record-update" {= "0.3.2"} | ||
"coq-hammer-tactics" {= "1.3.2+8.16"} | ||
"coq-stdpp" {= "dev.2023-08-03.3.4be5fd62"} | ||
"coq-stdpp-unstable" {= "dev.2023-08-03.3.4be5fd62"} | ||
"coq-iris" {= "dev.2023-08-11.1.81f394da"} | ||
"coq" {= "8.18.0"} | ||
"coq-record-update" {= "0.3.3"} | ||
"coq-hammer-tactics" {= "1.3.2+8.18"} | ||
"coq-stdpp" {= "1.10.0"} | ||
"coq-stdpp-bitvector" {= "1.10.0"} | ||
"coq-iris" {= "4.2.0"} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
|
@@ -33,4 +24,3 @@ build: [ | |
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/logsem/AxSL.git" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#!/bin/bash | ||
# based on a script from the RefinedC project: | ||
# https://gitlab.mpi-sws.org/iris/refinedc/-/blob/master/tools/coqc_timing.sh?ref_type=heads | ||
|
||
set -e | ||
|
||
# Wrapper for coqc that is used when running the perf script in the CI. | ||
# Variable TIMECMD is expected to contain an absolute path to the perf script. | ||
# If TIMECMD is not set (or empty), fallback to just calling coqc. | ||
# we need to use opam exec -- coqc to get the coqc installed by opam, not this script | ||
# If PROFILE is set, generate a profile in the $PROFILE file (relative to the root of the repo). | ||
|
||
## use time if available | ||
if env time echo >/dev/null 2>/dev/null; then | ||
export TIMECMD="time" | ||
fi | ||
|
||
# This file is in "_build/default/tools" | ||
REPO_DIR="$(dirname $(readlink -f $0))/../../" | ||
|
||
opam exec -- ${TIMECMD} coqc "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
; Add project-wide flags here. | ||
(env | ||
(dev | ||
(binaries (coqc-timing.sh as coqc)) | ||
(flags :standard))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,27 +4,15 @@ | |
|
||
(generate_opam_files true) | ||
|
||
(authors | ||
"Zongyuan Liu <[email protected]>" | ||
"Angus Hammond <[email protected]>" | ||
"Jean Pichon-Pharabod <[email protected]>" | ||
"Thibaut Pérami <[email protected]>") | ||
|
||
(maintainers | ||
"Zongyuan Liu <[email protected]>") | ||
|
||
(source | ||
(github logsem/AxSL)) | ||
|
||
(package | ||
(name coq-iris-axiomatic-arm) | ||
(allow_empty) | ||
(depends | ||
(coq (= 8.16.1)) | ||
(coq-record-update (= 0.3.2)) | ||
(coq-hammer-tactics (= "1.3.2+8.16")) | ||
(coq-stdpp (= "dev.2023-08-03.3.4be5fd62")) | ||
(coq-stdpp-unstable (= "dev.2023-08-03.3.4be5fd62")) | ||
(coq-iris (= "dev.2023-08-11.1.81f394da")) | ||
(coq (= 8.18.0)) | ||
(coq-record-update (= 0.3.3)) | ||
(coq-hammer-tactics (= "1.3.2+8.18")) | ||
(coq-stdpp (= "1.10.0")) | ||
(coq-stdpp-bitvector (= "1.10.0")) | ||
(coq-iris (= "4.2.0")) | ||
) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.