aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@college-de-france.fr>2020-11-14 09:49:28 +0100
committerXavier Leroy <xavier.leroy@college-de-france.fr>2020-11-14 09:49:28 +0100
commite87f24575e79e7866b132f0a970cf6f82d115b88 (patch)
tree5a6ca331c26d1d7535740a6d92ee411d77f12ee5
parentdc27018744ce01be26a76414fc51f8c4ff44f12b (diff)
downloadcompcert-kvx-e87f24575e79e7866b132f0a970cf6f82d115b88.tar.gz
compcert-kvx-e87f24575e79e7866b132f0a970cf6f82d115b88.zip
Support Coq 8.12.1
-rw-r--r--Changelog2
-rwxr-xr-xconfigure4
2 files changed, 3 insertions, 3 deletions
diff --git a/Changelog b/Changelog
index 8151362c..ce40e13b 100644
--- a/Changelog
+++ b/Changelog
@@ -35,7 +35,7 @@ The clightgen tool:
logical assertions, which was never used and possibly confusing.
Coq and OCaml development:
-- Compatibility with Coq 8.12.0, 8.11.2, 8.11.1.
+- Compatibility with Coq 8.12.1, 8.12.0, 8.11.2, 8.11.1.
- Can use already-installed Flocq and MenhirLib libraries instead of their
local copies (options `-use-external-Flocq` and `-use-external-MenhirLib`
to the `configure` script).
diff --git a/configure b/configure
index fcdbe803..1620ad4b 100755
--- a/configure
+++ b/configure
@@ -527,14 +527,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.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)
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.12.0"
+ echo "Error: CompCert requires a version of Coq between 8.8.0 and 8.12.1"
missingtools=true
fi;;
"")