Skip to content
This repository was archived by the owner on Apr 22, 2023. It is now read-only.

Commit 7817fbd

Browse files
indutnyjasnell
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 .
1 parent 45d9297 commit 7817fbd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
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)