diff options
author | Damien Miller <djm@mindrot.org> | 2019-09-05 15:46:39 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2019-09-05 15:46:39 +1000 |
commit | 8b57337c1c1506df2bb9f039d0628a6de618566b (patch) | |
tree | d5b89671c4c1ca23b5bf526d9030d7bba2ed7449 /regress | |
parent | ae631ad77daf8fd39723d15a687cd4b1482cbae8 (diff) |
update fuzzing makefile to more recent clang
Diffstat (limited to 'regress')
-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 744c1f8b2..85179ac4e 100644 --- a/regress/misc/fuzz-harness/Makefile +++ b/regress/misc/fuzz-harness/Makefile | |||
@@ -1,6 +1,6 @@ | |||
1 | # NB. libssh and libopenbsd-compat should be built with the same sanitizer opts. | 1 | # NB. libssh and libopenbsd-compat should be built with the same sanitizer opts. |
2 | CXX=clang++-3.9 | 2 | CXX=clang++-6.0 |
3 | FUZZ_FLAGS=-fsanitize=address,undefined -fsanitize-coverage=edge | 3 | FUZZ_FLAGS=-fsanitize=address,undefined -fsanitize-coverage=edge,trace-pc |
4 | FUZZ_LIBS=-lFuzzer | 4 | FUZZ_LIBS=-lFuzzer |
5 | 5 | ||
6 | CXXFLAGS=-O2 -g -Wall -Wextra -I ../../.. $(FUZZ_FLAGS) | 6 | CXXFLAGS=-O2 -g -Wall -Wextra -I ../../.. $(FUZZ_FLAGS) |