From: Damien Miller Date: Fri, 4 Dec 2020 02:57:43 +0000 (+1100) Subject: use options that work with recent clang X-Git-Tag: V_8_5_P1~171 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=021ff33e383c77b11badd60cec5b141a3e3fa532;p=thirdparty%2Fopenssh-portable.git use options that work with recent clang --- diff --git a/regress/misc/fuzz-harness/Makefile b/regress/misc/fuzz-harness/Makefile index 64fbdbab1..521a1054c 100644 --- a/regress/misc/fuzz-harness/Makefile +++ b/regress/misc/fuzz-harness/Makefile @@ -1,6 +1,6 @@ # NB. libssh and libopenbsd-compat should be built with the same sanitizer opts. -CXX=clang++-6.0 -FUZZ_FLAGS=-fsanitize=address,undefined -fsanitize-coverage=edge,trace-pc +CXX=clang++-9 +FUZZ_FLAGS=-fsanitize=address,fuzzer FUZZ_LIBS=-lFuzzer CXXFLAGS=-O2 -g -Wall -Wextra -Wno-unused-parameter -I ../../.. $(FUZZ_FLAGS)