aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>2017-03-24 16:10:49 +0100
committerXavier Leroy <xavier.leroy@inria.fr>2017-03-24 16:10:49 +0100
commit0b4bcebe701b9cf8756f583768831ad48a7cc79e (patch)
tree0eb0939cd50ab5a37253b066c1906f3ea285aacc /Makefile
parent1c153479a1fdd95e8df55afa8f337a456ae4b538 (diff)
downloadcompcert-0b4bcebe701b9cf8756f583768831ad48a7cc79e.tar.gz
compcert-0b4bcebe701b9cf8756f583768831ad48a7cc79e.zip
Update the "make check-proof" entry for Coq 8.6
`-admit Floats` is no longer needed, but Integers and SelectDivproof still need admitting.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 7bb2650d..b907d9dd 100644
--- a/Makefile
+++ b/Makefile
@@ -277,13 +277,12 @@ distclean:
check-admitted: $(FILES)
@grep -w 'admit\|Admitted\|ADMITTED' $^ || echo "Nothing admitted."
-# Problems with coqchk (coq 8.5pl1):
+# Problems with coqchk (coq 8.6):
# Integers.Int.Z_mod_modulus_range takes forever to check
-# compcert.lib.Floats.Float.of_longu_from_words takes forever to check
# compcert.backend.SelectDivproof.divs_mul_shift_2 takes forever to check
check-proof: $(FILES)
- $(COQCHK) -admit Integers -admit Floats -admit SelectDivproof Complements
+ $(COQCHK) -admit Integers -admit SelectDivproof Complements
print-includes:
@echo $(COQINCLUDES)