Skip to content

Commit ddcb3fc

Browse files
indutnyMylesBorins
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 . Backport-PR-URL: #19638 Fixes: #589 PR-URL: #1389 Reviewed-By: Fedor Indutny <fedor@indutny.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Shigeki Ohtsu <ohtsu@iij.ad.jp>
1 parent d908169 commit ddcb3fc

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)