openssl: fix perlasm issue
authorBert Belder <bertbelder@gmail.com>
Wed, 12 Sep 2012 23:03:50 +0000 (01:03 +0200)
committerisaacs <i@izs.me>
Tue, 25 Sep 2012 15:51:03 +0000 (08:51 -0700)
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.

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

index 3d50e4a786564c3eed9e318558ef8e656a61edc0..7815b17c43ef100ad49fad4f919cd6f1616a58ba 100644 (file)
@@ -76,7 +76,7 @@ TITLE $_[0].asm
 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