Skip to content

Commit b0fdbb0

Browse files
authored
Support Coq 8.11.0 (#212)
Update configure. Ignore and clean up .vok and .vos files, which Coq 8.11.0 generates.
1 parent 3e5fba8 commit b0fdbb0

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Object files, in general
22
*.vo
3+
*.vok
4+
*.vos
35
*.glob
46
*.o
57
*.a

Changelog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Coq development:
2+
- Compatibility with Coq version 8.11.0 (#316)
3+
4+
15
Release 3.6, 2019-09-17
26
=======================
37

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ endif
258258

259259

260260
clean:
261-
rm -f $(patsubst %, %/*.vo, $(DIRS))
261+
rm -f $(patsubst %, %/*.vo*, $(DIRS))
262262
rm -f $(patsubst %, %/.*.aux, $(DIRS))
263263
rm -rf doc/html doc/*.glob
264264
rm -f driver/Version.ml

configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ missingtools=false
530530
echo "Testing Coq... " | tr -d '\n'
531531
coq_ver=$(${COQBIN}coqc -v 2>/dev/null | sed -n -e 's/The Coq Proof Assistant, version \([^ ]*\).*$/\1/p')
532532
case "$coq_ver" in
533-
8.8.0|8.8.1|8.8.2|8.9.0|8.9.1|8.10.0|8.10.1|8.10.2)
533+
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)
534534
echo "version $coq_ver -- good!";;
535535
?*)
536536
echo "version $coq_ver -- UNSUPPORTED"

0 commit comments

Comments
 (0)