Skip to content
This repository was archived by the owner on Oct 16, 2021. It is now read-only.

Commit 06e3164

Browse files
indutnyjBarz
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 . PR: nodejs#9451 PR-URL: nodejs#9451 Reviewed-By: Julien Gilli <[email protected]> PR: nodejs#25523 PR-URL: nodejs#25523 Reviewed-By: Julien Gilli <[email protected]> PR: nodejs#25654 PR-URL: nodejs#25654 Reviewed-By: Julien Gilli <[email protected]>
1 parent 95e89e2 commit 06e3164

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)