[openssl] master update

Richard Levitte levitte at openssl.org
Tue Mar 3 09:54:04 UTC 2020


The branch master has been updated
       via  a24e62f54b48d01832fd0b80f97115927a777a0f (commit)
      from  47c239c6b8d6e5d66a6ceef3a2c543b6ea338759 (commit)


- Log -----------------------------------------------------------------
commit a24e62f54b48d01832fd0b80f97115927a777a0f
Author: Philippe Antoine <p.antoine at catenacyber.fr>
Date:   Mon Mar 2 13:46:37 2020 +0100

    Fix build with clang assembler
    
    Reviewed-by: Matt Caswell <matt at openssl.org>
    Reviewed-by: Richard Levitte <levitte at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/11219)

-----------------------------------------------------------------------

Summary of changes:
 crypto/perlasm/x86_64-xlate.pl | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/crypto/perlasm/x86_64-xlate.pl b/crypto/perlasm/x86_64-xlate.pl
index 197bc48873..ff2df7902b 100755
--- a/crypto/perlasm/x86_64-xlate.pl
+++ b/crypto/perlasm/x86_64-xlate.pl
@@ -110,6 +110,11 @@ elsif (`$ENV{CC} -Wa,-v -c -o /dev/null -x assembler /dev/null 2>&1`
 {
     $gnuas=1;
 }
+elsif (`$ENV{CC} --version 2>/dev/null`
+		=~ /clang .*/)
+{
+    $gnuas=1;
+}
 
 my $cet_property;
 if ($flavour =~ /elf/) {


More information about the openssl-commits mailing list