Skip to content

Commit 2bc2427

Browse files
indutnyShigeki Ohtsu
authored and
Shigeki Ohtsu
committed
deps: fix openssl assembly error on ia32 win32
`x86masm.pl` was mistakenly using .486 instruction set, why `cpuid` (and perhaps others) are requiring .686 . PR: #9451 PR-URL: nodejs/node-v0.x-archive#9451 Reviewed-By: Julien Gilli <julien.gilli@joyent.com> PR: #25523 PR-URL: nodejs/node-v0.x-archive#25523 Reviewed-By: Julien Gilli <jgilli@fastmail.fm> PR: #25654 PR-URL: nodejs/node-v0.x-archive#25654 Reviewed-By: Julien Gilli <jgilli@fastmail.fm>
1 parent 8df4b09 commit 2bc2427

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deps/openssl/openssl/crypto/perlasm/x86masm.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ sub ::file
8080
IF \@Version LT 800
8181
ECHO MASM version 8.00 or later is strongly recommended.
8282
ENDIF
83-
.486
83+
.686
8484
.MODEL FLAT
8585
OPTION DOTNAME
8686
IF \@Version LT 800

0 commit comments

Comments
 (0)