Improve ujson build.sh to build fuzzers. (#4662)

Still ASAN lib preload is missing.
This commit is contained in:
Abhishek Arya 2020-11-19 10:35:53 -08:00 committed by GitHub
parent 38b7c5e162
commit 98fa319760
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 2 deletions

View File

@ -15,5 +15,10 @@
#
################################################################################
# build and install fuzzers
pip3 install . -t $OUT
# Build and install the project package.
pip3 install .
# Build fuzzers in $OUT.
for fuzzer in $(find $SRC -name '*_fuzzer.py'); do
pyinstaller --distpath $OUT --onefile $fuzzer
done