summaryrefslogtreecommitdiff
path: root/deps/openssl/openssl
diff options
context:
space:
mode:
authorFedor Indutny <fedor.indutny@gmail.com>2014-01-08 23:05:01 +0400
committerMyles Borins <mylesborins@google.com>2018-03-27 20:17:19 -0400
commit9bf13579933d2a54a2cd8794000ebb582bf3f8b9 (patch)
treeb72dfea360c0519353284e529e9fe47eacb628b1 /deps/openssl/openssl
parenta5bd474573d411eb5346eabdeba40c729dc21279 (diff)
downloadandroid-node-v8-9bf13579933d2a54a2cd8794000ebb582bf3f8b9.tar.gz
android-node-v8-9bf13579933d2a54a2cd8794000ebb582bf3f8b9.tar.bz2
android-node-v8-9bf13579933d2a54a2cd8794000ebb582bf3f8b9.zip
deps: fix openssl assembly error on ia32 win32
`x86masm.pl` was mistakenly using .486 instruction set, why `cpuid` (and perhaps others) are requiring .686 . Backport-PR-URL: https://github.com/nodejs/node/pull/19638 Fixes: https://github.com/iojs/io.js/issues/589 PR-URL: https://github.com/iojs/io.js/pull/1389 Reviewed-By: Fedor Indutny <fedor@indutny.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Shigeki Ohtsu <ohtsu@iij.ad.jp>
Diffstat (limited to 'deps/openssl/openssl')
-rw-r--r--deps/openssl/openssl/crypto/perlasm/x86masm.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/openssl/openssl/crypto/perlasm/x86masm.pl b/deps/openssl/openssl/crypto/perlasm/x86masm.pl
index 1741342c3a..786b3c483b 100644
--- a/deps/openssl/openssl/crypto/perlasm/x86masm.pl
+++ b/deps/openssl/openssl/crypto/perlasm/x86masm.pl
@@ -82,7 +82,7 @@ TITLE $_[0].asm
IF \@Version LT 800
ECHO MASM version 8.00 or later is strongly recommended.
ENDIF
-.486
+.686
.MODEL FLAT
OPTION DOTNAME
IF \@Version LT 800