aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>2018-02-19 17:59:38 +0100
committerXavier Leroy <xavier.leroy@inria.fr>2018-02-19 17:59:38 +0100
commit3593971f9d5ec8fa95344e6d0cd25ec55642b365 (patch)
tree6bca634af545ca036ec0d9a90ed90555e13be9b3 /configure
parent44942a6a6889e79e749e83b6efe9ba7464dde1e7 (diff)
downloadcompcert-3593971f9d5ec8fa95344e6d0cd25ec55642b365.tar.gz
compcert-3593971f9d5ec8fa95344e6d0cd25ec55642b365.zip
Support Coq 8.7.2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index bf3484b4..7142fa6f 100755
--- a/configure
+++ b/configure
@@ -480,19 +480,19 @@ 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.6.1|8.7.0|8.7.1)
+ 8.6.1|8.7.0|8.7.1|8.7.2)
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 Coq version 8.6.1 or 8.7.0 or 8.7.1."
+ echo "Error: CompCert requires Coq version 8.6.1 or 8.7.0 or 8.7.1 or 8.7.2."
missingtools=true
fi;;
"")
echo "NOT FOUND"
- echo "Error: make sure Coq version 8.7.1 is installed."
+ echo "Error: make sure Coq version 8.7.2 is installed."
missingtools=true;;
esac