mirror of https://github.com/google/oss-fuzz.git
[cryptofuzz] Fix Crypto++ MemorySanitizer issues (#4889)
This commit is contained in:
parent
40d0cc7c18
commit
9b920fdb41
|
@ -256,7 +256,8 @@ if [[ $CFLAGS != *sanitize=memory* ]]
|
|||
then
|
||||
make libcryptopp.a -j$(nproc) >/dev/null 2>&1
|
||||
else
|
||||
CXXFLAGS="$CXXFLAGS -DCRYPTOPP_DISABLE_ASM=1" make libcryptopp.a -j$(nproc) >/dev/null 2>&1
|
||||
export CXXFLAGS="$CXXFLAGS -DCRYPTOPP_DISABLE_ASM=1"
|
||||
make libcryptopp.a -j$(nproc) >/dev/null 2>&1
|
||||
fi
|
||||
|
||||
export CXXFLAGS="$CXXFLAGS -DCRYPTOFUZZ_CRYPTOPP"
|
||||
|
|
Loading…
Reference in New Issue