mirror of https://github.com/google/oss-fuzz.git
Improve ujson build.sh to build fuzzers. (#4662)
Still ASAN lib preload is missing.
This commit is contained in:
parent
38b7c5e162
commit
98fa319760
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue