mirror of https://github.com/google/oss-fuzz.git
[boringssl] fixed build script
This commit is contained in:
parent
af55867da0
commit
ed07504b17
|
@ -34,7 +34,8 @@ find . -name "*.a"
|
|||
for F in $fuzzerFiles; do
|
||||
fuzzerName=$(basename $F .cc)
|
||||
echo "Building fuzzer $fuzzerName"
|
||||
$CXX $CXXFLAGS-std=c++11 -o /out/openssl_${fuzzerName} /work/libfuzzer/*.o $F \
|
||||
-I /src/boringssl/include ./ssl/libssl.a ./crypto/libcrypto.a $LDFLAGS
|
||||
$CXX $CXXFLAGS $LDFLAGS -std=c++11 \
|
||||
-o /out/openssl_${fuzzerName} /work/libfuzzer/*.o $F \
|
||||
-I /src/boringssl/include ./ssl/libssl.a ./crypto/libcrypto.a
|
||||
done
|
||||
|
||||
|
|
Loading…
Reference in New Issue