[openssl-commits] [openssl] master update

Andy Polyakov appro at openssl.org
Tue May 26 08:19:51 UTC 2015


The branch master has been updated
       via  f8a35ccc576b026e9ca0ccaedba3740627d67a04 (commit)
      from  71f6130b7a96bacbffae4611796ed98c2f724d96 (commit)


- Log -----------------------------------------------------------------
commit f8a35ccc576b026e9ca0ccaedba3740627d67a04
Author: Andy Polyakov <appro at openssl.org>
Date:   Mon May 25 10:30:33 2015 +0200

    Configure: replace -mv8 with -mcpu=v8 in SPARC config lines.
    
    RT#3860
    
    Reviewed-by: Tim Hudson <tjh at openssl.org>

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

Summary of changes:
 Configurations/10-main.conf | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Configurations/10-main.conf b/Configurations/10-main.conf
index 1d1a212..b5d32b6 100644
--- a/Configurations/10-main.conf
+++ b/Configurations/10-main.conf
@@ -131,7 +131,7 @@
     },
     "solaris-sparcv8-gcc" => {
         inherit_from     => [ "solaris-sparcv7-gcc", asm("sparcv8_asm") ],
-        cflags           => sub { join(" ","-mv8", at _); },
+        cflags           => sub { join(" ","-mcpu=v8", at _); },
     },
     "solaris-sparcv9-gcc" => {
         # -m32 should be safe to add as long as driver recognizes
@@ -695,7 +695,7 @@
     # patiently assisted with debugging of following two configs.
     "linux-sparcv8" => {
         inherit_from     => [ "linux-generic32", asm("sparcv8_asm") ],
-        cflags           => "-mv8 -Wall -DB_ENDIAN -DBN_DIV2W",
+        cflags           => "-mcpu=v8 -Wall -DB_ENDIAN -DBN_DIV2W",
     },
     "linux-sparcv9" => {
         # it's a real mess with -mcpu=ultrasparc option under Linux,
@@ -861,7 +861,7 @@
 
     "BSD-sparcv8" => {
         inherit_from     => [ "BSD-generic32", asm("sparcv8_asm") ],
-        cflags           => "-mv8 -Wall -DB_ENDIAN",
+        cflags           => "-mcpu=v8 -Wall -DB_ENDIAN",
     },
     "BSD-sparc64" => {
         # -DMD32_REG_T=int doesn't actually belong in sparc64 target, it


More information about the openssl-commits mailing list