aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@college-de-france.fr>2021-03-09 10:39:33 +0100
committerXavier Leroy <xavier.leroy@college-de-france.fr>2021-03-09 10:39:33 +0100
commit6bf310dd678285dc193798e89fc2c441d8430892 (patch)
tree10a9f4b2874c679bf33ef6bf6b839ec783f9e729 /configure
parent014883f2f4cfc4fd64fe9aa5f561a971e2ed1345 (diff)
downloadcompcert-kvx-6bf310dd678285dc193798e89fc2c441d8430892.tar.gz
compcert-kvx-6bf310dd678285dc193798e89fc2c441d8430892.zip
Coq 8.13.1 is supported
Closes: #389
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 4b75509e..a3444de8 100755
--- a/configure
+++ b/configure
@@ -503,14 +503,14 @@ missingtools=false
echo "Testing Coq... " | tr -d '\n'
coq_ver=$(${COQBIN}coqc -v 2>/dev/null | sed -n -e 's/The Coq Proof Assistant, version \([^ ]*\).*$/\1/p')
case "$coq_ver" in
- 8.8.0|8.8.1|8.8.2|8.9.0|8.9.1|8.10.0|8.10.1|8.10.2|8.11.0|8.11.1|8.11.2|8.12.0|8.12.1|8.12.2|8.13.0)
+ 8.8.0|8.8.1|8.8.2|8.9.0|8.9.1|8.10.0|8.10.1|8.10.2|8.11.0|8.11.1|8.11.2|8.12.0|8.12.1|8.12.2|8.13.0|8.13.1)
echo "version $coq_ver -- good!";;
?*)
echo "version $coq_ver -- UNSUPPORTED"
if $ignore_coq_version; then
echo "Warning: this version of Coq is unsupported, proceed at your own risks."
else
- echo "Error: CompCert requires a version of Coq between 8.8.0 and 8.13.0"
+ echo "Error: CompCert requires a version of Coq between 8.8.0 and 8.13.1"
missingtools=true
fi;;
"")