mirror of https://github.com/google/oss-fuzz.git
Update brotli build script (#1528)
Brotli fuzzer is being converted to C99 in google/brotli#686
This commit is contained in:
parent
0c62f16cd5
commit
92b7d40f84
|
@ -4,8 +4,8 @@ cmake . -DBUILD_TESTING=OFF
|
|||
make clean
|
||||
make -j$(nproc) brotlidec-static
|
||||
|
||||
$CXX $CXXFLAGS -std=c++11 -I. \
|
||||
c/fuzz/decode_fuzzer.cc -I./c/include -o $OUT/decode_fuzzer \
|
||||
$CXX $CXXFLAGS -std=c99 -I. \
|
||||
c/fuzz/decode_fuzzer.c -I./c/include -o $OUT/decode_fuzzer \
|
||||
-lFuzzingEngine ./libbrotlidec-static.a ./libbrotlicommon-static.a
|
||||
|
||||
cp java/org/brotli/integration/fuzz_data.zip $OUT/decode_fuzzer_seed_corpus.zip
|
||||
|
|
Loading…
Reference in New Issue