Skip to content

Commit

Permalink
openssl: fix perlasm issue
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
piscisaureus authored and isaacs committed Sep 25, 2012
1 parent 3568edf commit 09ac9d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/openssl/openssl/crypto/perlasm/x86masm.pl
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ sub ::file
IF \@Version LT 800
ECHO MASM version 8.00 or later is strongly recommended.
ENDIF
.486
.586
.MODEL FLAT
OPTION DOTNAME
IF \@Version LT 800
Expand Down

0 comments on commit 09ac9d0

Please sign in to comment.