diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2017-11-02 18:16:01 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2017-11-02 18:16:01 +0000 |
commit | e48ce1a8bd23086a12c40d2e079682f6c9cb3945 (patch) | |
tree | 6eb5156cb49208a512697539d19cf513a70de863 /crypto | |
parent | dc3f01956c9ab232870e5b6656a0b2169d037c99 (diff) | |
download | src-e48ce1a8bd23086a12c40d2e079682f6c9cb3945.tar.gz src-e48ce1a8bd23086a12c40d2e079682f6c9cb3945.zip |
MFC: r307976
Build OpenSSL assembly sources for aarch64.
Notes
Notes:
svn path=/stable/11/; revision=325333
Diffstat (limited to 'crypto')
-rwxr-xr-x | crypto/openssl/crypto/aes/asm/aesv8-armx.pl | 2 | ||||
-rw-r--r-- | crypto/openssl/crypto/arm64cpuid.S | 1 | ||||
-rwxr-xr-x | crypto/openssl/crypto/modes/asm/ghashv8-armx.pl | 2 |
3 files changed, 2 insertions, 3 deletions
diff --git a/crypto/openssl/crypto/aes/asm/aesv8-armx.pl b/crypto/openssl/crypto/aes/asm/aesv8-armx.pl index 95ebae3beb9b..0ed263fbe2f9 100755 --- a/crypto/openssl/crypto/aes/asm/aesv8-armx.pl +++ b/crypto/openssl/crypto/aes/asm/aesv8-armx.pl @@ -42,7 +42,7 @@ $code=<<___; #if __ARM_MAX_ARCH__>=7 .text ___ -$code.=".arch armv8-a+crypto\n" if ($flavour =~ /64/); +# $code.=".arch armv8-a+crypto\n" if ($flavour =~ /64/); $code.=".arch armv7-a\n.fpu neon\n.code 32\n" if ($flavour !~ /64/); #^^^^^^ this is done to simplify adoption by not depending # on latest binutils. diff --git a/crypto/openssl/crypto/arm64cpuid.S b/crypto/openssl/crypto/arm64cpuid.S index 4778ac1deacc..d16a7b53488e 100644 --- a/crypto/openssl/crypto/arm64cpuid.S +++ b/crypto/openssl/crypto/arm64cpuid.S @@ -1,7 +1,6 @@ #include "arm_arch.h" .text -.arch armv8-a+crypto .align 5 .global _armv7_neon_probe diff --git a/crypto/openssl/crypto/modes/asm/ghashv8-armx.pl b/crypto/openssl/crypto/modes/asm/ghashv8-armx.pl index 0886d2180702..3026b44ab579 100755 --- a/crypto/openssl/crypto/modes/asm/ghashv8-armx.pl +++ b/crypto/openssl/crypto/modes/asm/ghashv8-armx.pl @@ -49,7 +49,7 @@ $code=<<___; .text ___ -$code.=".arch armv8-a+crypto\n" if ($flavour =~ /64/); +# $code.=".arch armv8-a+crypto\n" if ($flavour =~ /64/); $code.=".fpu neon\n.code 32\n" if ($flavour !~ /64/); ################################################################################ |