From 7f387ddfd4443b6efe21793834445e2a659e9922 Mon Sep 17 00:00:00 2001 From: Maxime Dénès Date: Wed, 21 Sep 2016 13:47:27 +0200 Subject: Configure now expects to find Coq 8.6.0. --- configure | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'configure') diff --git a/configure b/configure index eacc28d3..630ecfa1 100755 --- a/configure +++ b/configure @@ -407,15 +407,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.5pl2|8.5pl3) + 8.6) echo "version $coq_ver -- good!";; ?.*) echo "version $coq_ver -- UNSUPPORTED" - echo "Error: CompCert requires Coq version 8.5pl2." + echo "Error: CompCert requires Coq version 8.6." missingtools=true;; *) echo "NOT FOUND" - echo "Error: make sure Coq version 8.5pl2 is installed." + echo "Error: make sure Coq version 8.6 is installed." missingtools=true;; esac -- cgit From c514b1e62302bb674075cd32a412ed47a57cbb5b Mon Sep 17 00:00:00 2001 From: Maxime Dénès Date: Mon, 9 Jan 2017 15:18:48 +0100 Subject: Bump required version of Menhir to 20161201. Menhir's Coq backend has been updated to support Coq 8.6. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure') diff --git a/configure b/configure index 630ecfa1..182e086a 100755 --- a/configure +++ b/configure @@ -448,7 +448,7 @@ else ocaml_opt_comp=false fi -MENHIR_REQUIRED=20160303 +MENHIR_REQUIRED=20161201 echo "Testing Menhir... " | tr -d '\n' menhir_ver=`menhir --version 2>/dev/null | sed -n -e 's/^.*version \([0-9]*\).*$/\1/p'` case "$menhir_ver" in -- cgit