summaryrefslogtreecommitdiffstats
path: root/Configurations
diff options
context:
space:
mode:
authorOrgad Shaneh <orgads@gmail.com>2020-02-24 09:02:31 +0200
committerMatt Caswell <matt@openssl.org>2020-05-15 11:23:58 +0100
commitfa41bbe00ef03cf7f8bb0c6f20fa59d451fc7bca (patch)
treed57779b67c7cb1956694cb965991c666a873fc9f /Configurations
parent024035b6e018405d7c29bce2e10e884066203601 (diff)
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 <levitte@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/11154)
Diffstat (limited to 'Configurations')
-rw-r--r--Configurations/10-main.conf2
1 files changed, 1 insertions, 1 deletions
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",
},