From 54b3c45e2881a2cc71d06d21f0ca39b6e47666db Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Thu, 16 Jul 2020 15:18:20 +0200 Subject: Makefile: test executor build with clang To get more compiler coverage and to not let it rot. clang get detect more bugs statically. --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 87f64e150..6bbeb3cf7 100644 --- a/Makefile +++ b/Makefile @@ -281,6 +281,7 @@ presubmit_arch: descriptions env HOSTOS=openbsd HOSTARCH=amd64 $(MAKE) host env HOSTOS=darwin HOSTARCH=amd64 $(MAKE) host env TARGETOS=linux TARGETARCH=amd64 $(MAKE) target + env TARGETOS=linux TARGETARCH=amd64 SYZ_CLANG=yes $(MAKE) target env TARGETOS=linux TARGETARCH=386 $(MAKE) target env TARGETOS=linux TARGETARCH=arm64 $(MAKE) target env TARGETOS=linux TARGETARCH=arm $(MAKE) target @@ -332,7 +333,7 @@ install_prerequisites: sudo apt-get install -y -q g++-mips64el-linux-gnuabi64 || true sudo apt-get install -y -q g++-s390x-linux-gnu || true sudo apt-get install -y -q g++-riscv64-linux-gnu || true - sudo apt-get install -y -q ragel clang-format + sudo apt-get install -y -q clang clang-format ragel go get -u golang.org/x/tools/cmd/goyacc check_copyright: -- cgit mrf-deployment