Skip to content

Commit 593f21e

Browse files
indutnyevanlucas
authored andcommitted
deps: fix openssl assembly error on ia32 win32
`x86masm.pl` was mistakenly using .486 instruction set, why `cpuid` (and perhaps others) are requiring .686 . Fixes: #589 PR-URL: #1389 Reviewed-By: Fedor Indutny <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Shigeki Ohtsu <[email protected]>
1 parent 235c78f commit 593f21e

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
@@ -82,7 +82,7 @@ sub ::file
8282
IF \@Version LT 800
8383
ECHO MASM version 8.00 or later is strongly recommended.
8484
ENDIF
85-
.486
85+
.686
8686
.MODEL FLAT
8787
OPTION DOTNAME
8888
IF \@Version LT 800

0 commit comments

Comments
 (0)