From f83f92fd5e8f53114eb4e4149c19f2c4d7fddc78 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 20 Dec 2019 14:19:12 +0100 Subject: tools/syz-check: inject description compilation warnings Currently we print them as part of `make genereate`, but nobody reads them, too much output each time. Don't print them in `make generate` and instead print in syz-check, the warn files are a good mechanism to handle "known warnings". --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 4d1601208..36e5abcb7 100644 --- a/Makefile +++ b/Makefile @@ -28,7 +28,8 @@ ENV := $(subst \n,$(newline),$(shell \ SOURCEDIR=$(SOURCEDIR) HOSTOS=$(HOSTOS) HOSTARCH=$(HOSTARCH) \ TARGETOS=$(TARGETOS) TARGETARCH=$(TARGETARCH) TARGETVMARCH=$(TARGETVMARCH) \ go run tools/syz-env/env.go)) -$(info $(ENV)) +# Uncomment in case of emergency. +# $(info $(ENV)) $(eval $(ENV)) ifeq ("$(NCORES)", "") $(error syz-env failed) -- cgit mrf-deployment