projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
27635a4
)
ec/asm/ecp_nistz256-avx2.pl: harmonize clang version detection.
author
Andy Polyakov
<appro@openssl.org>
Sat, 16 Jun 2018 14:25:40 +0000
(16:25 +0200)
committer
Andy Polyakov
<appro@openssl.org>
Mon, 18 Jun 2018 17:59:11 +0000
(19:59 +0200)
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/6499)
crypto/ec/asm/ecp_nistz256-avx2.pl
patch
|
blob
|
history
diff --git
a/crypto/ec/asm/ecp_nistz256-avx2.pl
b/crypto/ec/asm/ecp_nistz256-avx2.pl
index 9fbc909ba964379fa22e3e7cbf70973aef7d3e00..c113c13ff7055399b8d4486978907a7ea77be25e 100755
(executable)
--- a/
crypto/ec/asm/ecp_nistz256-avx2.pl
+++ b/
crypto/ec/asm/ecp_nistz256-avx2.pl
@@
-47,7
+47,7
@@
if (!$addx && $win64 && ($flavour =~ /masm/ || $ENV{ASM} =~ /ml64/) &&
$addx = ($1>=12);
}
-if (!$addx && `$ENV{CC} -v 2>&1` =~ /(
^clang
version|based on LLVM) ([3-9])\.([0-9]+)/) {
+if (!$addx && `$ENV{CC} -v 2>&1` =~ /(
(?:^clang|LLVM)
version|based on LLVM) ([3-9])\.([0-9]+)/) {
my $ver = $2 + $3/100.0; # 3.1->3.01, 3.10->3.10
$avx = ($ver>=3.0) + ($ver>=3.01);
$addx = ($ver>=3.03);