summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@college-de-france.fr>2019-10-28 15:22:53 (GMT)
committerXavier Leroy <xavier.leroy@college-de-france.fr>2019-10-28 15:22:53 (GMT)
commit1c1a4d86a22dd04fc92e61d4bd5c35e047c8b772 (patch)
tree37279c224a2f5fb91dc06d38f28cea64f6c3610c
parent8fbe9863a920f6351a13c5a7f0028b8640b9319d (diff)
downloadCompCert-1c1a4d86a22dd04fc92e61d4bd5c35e047c8b772.zip
CompCert-1c1a4d86a22dd04fc92e61d4bd5c35e047c8b772.tar.gz
CompCert-1c1a4d86a22dd04fc92e61d4bd5c35e047c8b772.tar.bz2
Add support for Coq 8.10.1
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index bf4172f..cb2747b 100755
--- a/configure
+++ b/configure
@@ -530,14 +530,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.7.0|8.7.1|8.7.2|8.8.0|8.8.1|8.8.2|8.9.0|8.9.1|8.10.0)
+ 8.7.0|8.7.1|8.7.2|8.8.0|8.8.1|8.8.2|8.9.0|8.9.1|8.10.0|8.10.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 one of the following Coq versions: 8.10.0, 8.9.1, 8.9.0, 8.8.2, 8.8.1, 8.8.0, 8.7.2, 8.7.1, 8.7.0"
+ echo "Error: CompCert requires one of the following Coq versions: 8.10.1, 8.10.0, 8.9.1, 8.9.0, 8.8.2, 8.8.1, 8.8.0, 8.7.2, 8.7.1, 8.7.0"
missingtools=true
fi;;
"")