diff options
author | Damien Miller <djm@mindrot.org> | 2020-12-04 03:57:43 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2020-12-04 03:57:43 +0100 |
commit | 021ff33e383c77b11badd60cec5b141a3e3fa532 (patch) | |
tree | 2c79470befffb6284039b5be24dc330ea75a5957 /regress/misc/fuzz-harness/Makefile | |
parent | upstream: shuffle a few utility functions into sftp-client.c; from (diff) | |
download | openssh-021ff33e383c77b11badd60cec5b141a3e3fa532.tar.xz openssh-021ff33e383c77b11badd60cec5b141a3e3fa532.zip |
use options that work with recent clang
Diffstat (limited to '')
-rw-r--r-- | regress/misc/fuzz-harness/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
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) |