update fuzzing makefile to more recent clang

This commit is contained in:
Damien Miller 2019-09-05 15:46:39 +10:00
parent ae631ad77d
commit 8b57337c1c
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
# NB. libssh and libopenbsd-compat should be built with the same sanitizer opts.
CXX=clang++-3.9
FUZZ_FLAGS=-fsanitize=address,undefined -fsanitize-coverage=edge
CXX=clang++-6.0
FUZZ_FLAGS=-fsanitize=address,undefined -fsanitize-coverage=edge,trace-pc
FUZZ_LIBS=-lFuzzer
CXXFLAGS=-O2 -g -Wall -Wextra -I ../../.. $(FUZZ_FLAGS)