mirror of https://github.com/nodejs/node.git
openssl: make perlasm target pentium or newer for masm outputs
When perlasm generates MASM code it sets the assembler target to 468. In this mode MASM refuses to assemble a couple of instructions. Bumping the target to 686 solves this problem.pull/24507/merge
parent
eb29c4b2e6
commit
da945a7376
|
@ -80,7 +80,7 @@ TITLE $_[0].asm
|
|||
IF \@Version LT 800
|
||||
ECHO MASM version 8.00 or later is strongly recommended.
|
||||
ENDIF
|
||||
.486
|
||||
.686
|
||||
.MODEL FLAT
|
||||
OPTION DOTNAME
|
||||
IF \@Version LT 800
|
||||
|
|
Loading…
Reference in New Issue