Update build.sh

This commit is contained in:
Kostya Serebryany 2017-05-15 17:53:08 -07:00 committed by GitHub
parent aae5b00982
commit 9b6ba4dc14
1 changed files with 3 additions and 1 deletions

View File

@ -20,6 +20,8 @@ make clean # Not strictly necessary, since we are building in a fresh dir.
make -j$(nproc) all # Build the fuzz targets. make -j$(nproc) all # Build the fuzz targets.
make -j$(nproc) check # Sanity check, not strictly required, but nice to have. make -j$(nproc) check # Sanity check, not strictly required, but nice to have.
# Copy the fuzzer executables and zip-ed corpora to $OUT # Copy the fuzzer executables, zip-ed corpora, option and dictionary files to $OUT
find . -name '*_fuzzer' -exec cp -v '{}' $OUT ';' find . -name '*_fuzzer' -exec cp -v '{}' $OUT ';'
find . -name '*_fuzzer.dict' -exec cp -v '{}' $OUT ';'
find . -name '*_fuzzer.options' -exec cp -v '{}' $OUT ';'
find . -name '*_fuzzer_seed_corpus.zip' -exec cp -v '{}' $OUT ';' find . -name '*_fuzzer_seed_corpus.zip' -exec cp -v '{}' $OUT ';'