From 5547231519be37243ad0cb5f1a320547052c5775 Mon Sep 17 00:00:00 2001 From: Xavier Leroy Date: Mon, 31 Jul 2017 14:53:38 +0200 Subject: Accept Coq version 8.6.1 as supported 8.6.1 works just fine with the current CompCert. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index f54829f4..a068977b 100755 --- a/configure +++ b/configure @@ -470,7 +470,7 @@ 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) + 8.6|8.6.1) echo "version $coq_ver -- good!";; ?*) echo "version $coq_ver -- UNSUPPORTED" -- cgit From b38c296c99e8a482190eb37e37fc723ac5f75a7c Mon Sep 17 00:00:00 2001 From: Xavier Leroy Date: Mon, 31 Jul 2017 14:59:21 +0200 Subject: Mention rv32- and rv64- configurations in the help message These are the configurations for the new RISC-V port. --- configure | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure b/configure index a068977b..e5ed112c 100755 --- a/configure +++ b/configure @@ -43,6 +43,8 @@ Supported targets: x86_32-cygwin (x86 32 bits, Cygwin environment under Windows) x86_64-linux (x86 64 bits, Linux) x86_64-macosx (x86 64 bits, MacOS X) + rv32-linux (RISC-V 32 bits, Linux) + rv64-linux (RISC-V 64 bits, Linux) manual (edit configuration file by hand) For x86 targets, the "x86_32-" prefix can also be written "ia32-". -- cgit