mirror of https://github.com/google/oss-fuzz.git
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:
parent
fcd7da5e7e
commit
b1992b5485
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue