openssl: make perlasm target pentium or newer for masm outputs
authorBert Belder <bertbelder@gmail.com>
Wed, 12 Sep 2012 23:03:50 +0000 (01:03 +0200)
committerFedor Indutny <fedor.indutny@gmail.com>
Wed, 20 Feb 2013 13:00:29 +0000 (17:00 +0400)
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.

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

index f937d07..6b33b14 100644 (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