Browse Source

openssl: fix perlasm issue

When perlasm generates MASM code it sets the assembler target to 468.
In this mode MASM refuses to assemble the CPUID instruction. Bumping
the target to 586 solves this problem.
v0.8.10-release
Bert Belder 12 years ago
committed by isaacs
parent
commit
09ac9d0b2c
  1. 2
      deps/openssl/openssl/crypto/perlasm/x86masm.pl

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

@ -76,7 +76,7 @@ TITLE $_[0].asm
IF \@Version LT 800 IF \@Version LT 800
ECHO MASM version 8.00 or later is strongly recommended. ECHO MASM version 8.00 or later is strongly recommended.
ENDIF ENDIF
.486 .586
.MODEL FLAT .MODEL FLAT
OPTION DOTNAME OPTION DOTNAME
IF \@Version LT 800 IF \@Version LT 800

Loading…
Cancel
Save