[cryptofuzz] Compile OpenSSL 1.0.2/noasm with -DPURIFY (#2833)

This prevents MSAN false positives in its bignum code.
This commit is contained in:
Guido Vranken 2019-09-16 00:01:43 +02:00 committed by jonathanmetzman
parent 2f79af92cc
commit 67dde67647
1 changed files with 1 additions and 1 deletions

View File

@ -497,7 +497,7 @@ cd $SRC/openssl-OpenSSL_1_0_2-stable/
make clean || true
if [[ $CFLAGS != *-m32* ]]
then
./config --debug no-asm enable-md2 enable-rc5 $CFLAGS
./config --debug no-asm enable-md2 enable-rc5 $CFLAGS -DPURIFY
else
setarch i386 ./config --debug no-asm enable-md2 enable-rc5 $CFLAGS
fi