From 8ea15cf656bbb9fe7832b7bebbbf414b1fd209ef Mon Sep 17 00:00:00 2001 From: Steffen Jaeckel Date: Mon, 11 Jul 2022 13:05:57 +0200 Subject: [PATCH] disable ASM in libressl Valgrind spits a false-positive when the AESNI extension is used from ASM. https://github.com/libressl-portable/portable/issues/760#issuecomment-1175461956 Signed-off-by: Steffen Jaeckel --- travis/before_script.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/travis/before_script.sh b/travis/before_script.sh index 4d4c4a3..5f06dec 100755 --- a/travis/before_script.sh +++ b/travis/before_script.sh @@ -7,7 +7,7 @@ set -e if [ "x$LIBRESSL" = "xtrue" ]; then REPO_URL="https://github.com/libressl-portable/portable.git" AUTOGEN_CMD="./autogen.sh" - CONFIG_CMD="./configure --prefix=$HOME/xssl" + CONFIG_CMD="./configure --prefix=$HOME/xssl --disable-asm" MAKE_TARGET="install" else REPO_URL="https://github.com/openssl/openssl.git"