Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/crypto/external/bsd/openssl/lib/libcrypto/arch/mips PR/56318...



details:   https://anonhg.NetBSD.org/src/rev/6ee6462024ac
branches:  trunk
changeset: 985165:6ee6462024ac
user:      christos <christos%NetBSD.org@localhost>
date:      Tue Aug 10 10:43:42 2021 +0000

description:
PR/56318: Izumi Tsutsui: Don't include mips.S for 32 bit mips because it
does not work for mips1

diffstat:

 crypto/external/bsd/openssl/lib/libcrypto/arch/mips/bn.inc |  3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 501cf3cc6c93 -r 6ee6462024ac crypto/external/bsd/openssl/lib/libcrypto/arch/mips/bn.inc
--- a/crypto/external/bsd/openssl/lib/libcrypto/arch/mips/bn.inc        Tue Aug 10 10:38:42 2021 +0000
+++ b/crypto/external/bsd/openssl/lib/libcrypto/arch/mips/bn.inc        Tue Aug 10 10:43:42 2021 +0000
@@ -1,6 +1,7 @@
 .include "mips.inc"
 
-.if ${MIPS_LE}
+# Don't include mips.S for 32 bit mips because it does not work for mips1
+.if ${MIPS_LE} && ${MIPS_64} == "64"
 .PATH.S: ${.PARSEDIR}
 
 BN_SRCS = mips${MIPS_64}.S



Home | Main Index | Thread Index | Old Index