The branch OpenSSL_1_1_1-stable has been updated
via fa41bbe00ef03cf7f8bb0c6f20fa59d451fc7bca (commit)
from 024035b6e018405d7c29bce2e10e884066203601 (commit)
- Log -----------------------------------------------------------------
commit fa41bbe00ef03cf7f8bb0c6f20fa59d451fc7bca
Author: Orgad Shaneh <[email protected]>
Date: Mon Feb 24 09:02:31 2020 +0200
Configure: Avoid SIXTY_FOUR_BIT for linux-mips64
This is a 32-bit ABI build (as opposed to linux64-mips64).
Setting SIXTY_FOUR_BIT breaks hardware optimizations, at least on
octeon processors.
Reviewed-by: Richard Levitte <[email protected]>
Reviewed-by: Matt Caswell <[email protected]>
(Merged from https://github.com/openssl/openssl/pull/11154)
-----------------------------------------------------------------------
Summary of changes:
Configurations/10-main.conf | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Configurations/10-main.conf b/Configurations/10-main.conf
index df1cc00529..d61b9ee108 100644
--- a/Configurations/10-main.conf
+++ b/Configurations/10-main.conf
@@ -741,7 +741,7 @@ my %targets = (
inherit_from => [ "linux-generic32", asm("mips64_asm") ],
cflags => add("-mabi=n32"),
cxxflags => add("-mabi=n32"),
- bn_ops => "SIXTY_FOUR_BIT RC4_CHAR",
+ bn_ops => "RC4_CHAR",
perlasm_scheme => "n32",
multilib => "32",
},