1c5f01b2fSopenharmony_ci#!/bin/bash 2c5f01b2fSopenharmony_ciLIBFUZZER_SRC_DIR=$(dirname $0) 3c5f01b2fSopenharmony_cifor f in $LIBFUZZER_SRC_DIR/*.cpp; do 4c5f01b2fSopenharmony_ci clang -g -O2 -fno-omit-frame-pointer -std=c++11 $f -c & 5c5f01b2fSopenharmony_cidone 6c5f01b2fSopenharmony_ciwait 7c5f01b2fSopenharmony_cirm -f libFuzzer.a 8c5f01b2fSopenharmony_ciar ru libFuzzer.a Fuzzer*.o 9c5f01b2fSopenharmony_cirm -f Fuzzer*.o 10c5f01b2fSopenharmony_ci 11