modes/asm/ghash-x86_64.pl: refine GNU assembler version detection.
authorAndy Polyakov <appro@openssl.org>
Wed, 24 Feb 2016 19:07:06 +0000 (20:07 +0100)
committerAndy Polyakov <appro@openssl.org>
Sat, 27 Feb 2016 20:35:34 +0000 (21:35 +0100)
Even though AVX support was added in GAS 2.19 vpclmulqdq was apparently
added in 2.20.

Reviewed-by: Rich Salz <rsalz@openssl.org>
(cherry picked from commit d3cdab17362b9ab0f1a0525b736c862937a9cd2f)

crypto/modes/asm/aesni-gcm-x86_64.pl
crypto/modes/asm/ghash-x86_64.pl

index fc7710fd47cd7c70c6f927477d891be3899fd709..980cfd23efe34e988d573816978822307b6ad87d 100644 (file)
@@ -43,7 +43,7 @@ die "can't locate x86_64-xlate.pl";
 
 if (`$ENV{CC} -Wa,-v -c -o /dev/null -x assembler /dev/null 2>&1`
                =~ /GNU assembler version ([2-9]\.[0-9]+)/) {
-       $avx = ($1>=2.19) + ($1>=2.22);
+       $avx = ($1>=2.20) + ($1>=2.22);
 }
 
 if (!$avx && $win64 && ($flavour =~ /nasm/ || $ENV{ASM} =~ /nasm/) &&
index 4ff2d39aa7b281701eeb440fadc63c7990c9e2ca..f889f2018789fb6e233dd1d07ef0c78cfa8649f4 100644 (file)
@@ -92,7 +92,7 @@ die "can't locate x86_64-xlate.pl";
 
 if (`$ENV{CC} -Wa,-v -c -o /dev/null -x assembler /dev/null 2>&1`
                =~ /GNU assembler version ([2-9]\.[0-9]+)/) {
-       $avx = ($1>=2.19) + ($1>=2.22);
+       $avx = ($1>=2.20) + ($1>=2.22);
 }
 
 if (!$avx && $win64 && ($flavour =~ /nasm/ || $ENV{ASM} =~ /nasm/) &&