fuzzing: Disable assembly in openssl build

Sanitizers can not instrument openssl's assembly and wrongly report
buffers from openssl as uninitialized.
This commit is contained in:
daniel.zatovic
2022-10-06 23:23:06 +02:00
parent 27429daf5d
commit cc276527c7

View File

@@ -52,7 +52,7 @@ in_oss_fuzz && apt-get update && apt-get install -y \
[ ! -d cryptsetup_fuzzing ] && git clone --depth 1 https://gitlab.com/cryptsetup/cryptsetup_fuzzing.git
cd openssl
./Configure -static --prefix="$DEPS_PATH" --libdir=lib
./Configure -static --prefix="$DEPS_PATH" --libdir=lib no-asm
make build_generated
make -j libcrypto.a
make install_dev