Browse Source

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.
v0.9.4-release
Bert Belder 12 years ago
parent
commit
2e6180a62a
  1. 2
      deps/openssl/openssl/crypto/perlasm/x86masm.pl

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

@ -79,7 +79,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…
Cancel
Save