From 9bb3e5fd87905e3e9f5f7edcc2e22d98360510ab Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Wed, 15 Jan 2020 21:14:05 +0100 Subject: For all assembler scripts where it matters, recognise clang > 9.x Fixes #10853 Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/10855) --- crypto/chacha/asm/chacha-x86_64.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crypto/chacha/asm/chacha-x86_64.pl') diff --git a/crypto/chacha/asm/chacha-x86_64.pl b/crypto/chacha/asm/chacha-x86_64.pl index b854e2e332..fee0a963a9 100755 --- a/crypto/chacha/asm/chacha-x86_64.pl +++ b/crypto/chacha/asm/chacha-x86_64.pl @@ -86,7 +86,7 @@ if (!$avx && $win64 && ($flavour =~ /masm/ || $ENV{ASM} =~ /ml64/) && $avx = ($1>=10) + ($1>=11); } -if (!$avx && `$ENV{CC} -v 2>&1` =~ /((?:^clang|LLVM) version|.*based on LLVM) ([3-9]\.[0-9]+)/) { +if (!$avx && `$ENV{CC} -v 2>&1` =~ /((?:^clang|LLVM) version|.*based on LLVM) ([0-9]+\.[0-9]+)/) { $avx = ($2>=3.0) + ($2>3.0); } -- cgit v1.2.3