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
Bert Belder 2012-09-13 01:03:50 +02:00 committed by Fedor Indutny
parent eb29c4b2e6
commit da945a7376
1 changed files with 1 additions and 1 deletions

View File

@ -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