Fix example project build

LIB_FUZZING_ENGINE is a flag now and this old optimization in f858510cbe (diff-f46017656f0a817860c81ddb2621b7ee) is incorrect now and caused build to break.
This commit is contained in:
Abhishek Arya 2019-08-17 22:19:01 -07:00 committed by GitHub
parent fcd7da5e7e
commit b1992b5485
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ do_stuff_unittest: do_stuff_unittest.cpp my_api.a
# Fuzz target, links against $LIB_FUZZING_ENGINE, so that
# you may choose which fuzzing engine to use.
do_stuff_fuzzer: do_stuff_fuzzer.cpp my_api.a ${LIB_FUZZING_ENGINE}
do_stuff_fuzzer: do_stuff_fuzzer.cpp my_api.a standalone_fuzz_target_runner.o
${CXX} ${CXXFLAGS} $< my_api.a ${LIB_FUZZING_ENGINE} -o $@
zip -q -r do_stuff_fuzzer_seed_corpus.zip do_stuff_test_data