aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Schmidt <github@mschmidt.me>2019-10-13 21:05:56 +0200
committerGitHub <noreply@github.com>2019-10-13 21:05:56 +0200
commite3f2f81e6ad70c082dbf3dc5f938e8474c46657d (patch)
tree78b31072f6d0c13603efe41e5a6089cb5ed155b5
parentb7374d225af55ecc6f5d6aa8f3684bfae99ff465 (diff)
downloadcompcert-kvx-e3f2f81e6ad70c082dbf3dc5f938e8474c46657d.tar.gz
compcert-kvx-e3f2f81e6ad70c082dbf3dc5f938e8474c46657d.zip
Fix configure for coq 8.10.0
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index dccf6d14..bf4172f9 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)
+ 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)
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, 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.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;;
"")