From af939434ffb8fda11c9ef5eb02915c2515637dc4 Mon Sep 17 00:00:00 2001 From: Jason Gross Date: Mon, 25 Jul 2016 09:37:07 -0700 Subject: In >= 8.6, disable some very noisy warnings Since we're building for both 8.4 and 8.5, we don't want to see warnings about appcontext being deprecated. Many of the notation-overridden warnings come from standard library imports (see [bug #4962](https://coq.inria.fr/bugs/show_bug.cgi?id=4962)) so it's not clear that there's anything we can do about them. --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index b518c702d..3be8c6754 100644 --- a/Makefile +++ b/Makefile @@ -57,6 +57,10 @@ ifneq ($(filter 8.4%,$(COQ_VERSION)),) # 8.4 COQPRIME_FOLDER := coqprime-8.4 else COQPRIME_FOLDER := coqprime +ifneq ($(filter 8.5%,$(COQ_VERSION)),) # 8.5 +else +OTHERFLAGS ?= -w "-deprecated-appcontext -notation-overridden" +endif endif coqprime: -- cgit v1.2.3