aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>2016-07-08 14:43:57 +0200
committerXavier Leroy <xavier.leroy@inria.fr>2016-07-08 14:43:57 +0200
commite73d5db97cdb22cce2ee479469f62af3c4b6264a (patch)
tree035d31018c2abec698eb49a205c60bbf5c24ba0d /configure
parentdb2445b3b745abd1a26f5a832a29ca269c725277 (diff)
downloadcompcert-e73d5db97cdb22cce2ee479469f62af3c4b6264a.tar.gz
compcert-e73d5db97cdb22cce2ee479469f62af3c4b6264a.zip
Port to Coq 8.5pl2
Manual merging of branch jhjourdan:coq8.5. No other change un functionality.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index 4c3ba082..28683ade 100755
--- a/configure
+++ b/configure
@@ -271,15 +271,15 @@ 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.4pl*)
+ 8.5pl2)
echo "version $coq_ver -- good!";;
?.*)
echo "version $coq_ver -- UNSUPPORTED"
- echo "Error: CompCert requires Coq version 8.4, pl1 and up."
+ echo "Error: CompCert requires Coq version 8.5pl2."
missingtools=true;;
*)
echo "NOT FOUND"
- echo "Error: make sure Coq version 8.4 pl5 is installed."
+ echo "Error: make sure Coq version 8.5pl2 is installed."
missingtools=true;;
esac