From 67dde676472d567da69d31e555854a05bf91bacd Mon Sep 17 00:00:00 2001 From: Guido Vranken Date: Mon, 16 Sep 2019 00:01:43 +0200 Subject: [PATCH] [cryptofuzz] Compile OpenSSL 1.0.2/noasm with -DPURIFY (#2833) This prevents MSAN false positives in its bignum code. --- projects/cryptofuzz/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/cryptofuzz/build.sh b/projects/cryptofuzz/build.sh index 545bbbfce..5fa3ccdab 100755 --- a/projects/cryptofuzz/build.sh +++ b/projects/cryptofuzz/build.sh @@ -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