From 64fd90fbe99dde18de3fc7c3a6b06793d87a4aad Mon Sep 17 00:00:00 2001 From: Shane Lontis Date: Tue, 15 Oct 2019 12:35:41 +1000 Subject: Fix missing Assembler defines Implementations are now spread across several libraries, so the assembler related defines need to be applied to all affected libraries and modules. AES_ASM define was missing from libimplementations.a which disabled AESNI aarch64 changes were made by xkqian. Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/10180) --- crypto/aes/build.info | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'crypto/aes') diff --git a/crypto/aes/build.info b/crypto/aes/build.info index 59c009761e..291bf2af9b 100644 --- a/crypto/aes/build.info +++ b/crypto/aes/build.info @@ -61,9 +61,15 @@ ENDIF $COMMON=aes_misc.c aes_ecb.c $AESASM SOURCE[../../libcrypto]=$COMMON aes_cfb.c aes_ofb.c aes_ige.c aes_wrap.c -DEFINE[../../libcrypto]=$AESDEF SOURCE[../../providers/libfips.a]=$COMMON + +# Implementations are now spread across several libraries, so the defines +# need to be applied to all affected libraries and modules. +DEFINE[../../libcrypto]=$AESDEF DEFINE[../../providers/libfips.a]=$AESDEF +DEFINE[../../providers/libimplementations.a]=$AESDEF +# fipsprov.c needs access to AESNI. +DEFINE[../../providers/fips]=$AESDEF GENERATE[aes-ia64.s]=asm/aes-ia64.S -- cgit v1.2.3