diff options
author | Shane Lontis <shane.lontis@oracle.com> | 2019-10-15 04:35:41 +0200 |
---|---|---|
committer | Shane Lontis <shane.lontis@oracle.com> | 2019-10-16 08:10:39 +0200 |
commit | 64fd90fbe99dde18de3fc7c3a6b06793d87a4aad (patch) | |
tree | 8c1870ea8b90719689752e9fccd2f919bf67dc84 /crypto/ec/build.info | |
parent | [ec_asn1.c] Avoid injecting seed when built-in matches (diff) | |
download | openssl-64fd90fbe99dde18de3fc7c3a6b06793d87a4aad.tar.xz openssl-64fd90fbe99dde18de3fc7c3a6b06793d87a4aad.zip |
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 <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/10180)
Diffstat (limited to 'crypto/ec/build.info')
-rw-r--r-- | crypto/ec/build.info | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/crypto/ec/build.info b/crypto/ec/build.info index 40aef36798..90aea66a14 100644 --- a/crypto/ec/build.info +++ b/crypto/ec/build.info @@ -56,9 +56,13 @@ $COMMON=ec_lib.c ecp_smpl.c ecp_mont.c ecp_nist.c ec_cvt.c ec_mult.c \ $ECASM SOURCE[../../libcrypto]=$COMMON ec_ameth.c ec_pmeth.c ecx_meth.c ec_err.c \ ecdh_kdf.c eck_prn.c -DEFINE[../../libcrypto]=$ECDEF 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]=$ECDEF DEFINE[../../providers/libfips.a]=$ECDEF +DEFINE[../../providers/libimplementations.a]=$ECDEF GENERATE[ecp_nistz256-x86.s]=asm/ecp_nistz256-x86.pl |