From 09ac9d0b2c1ee99c9d023ee3aa5a42109aecf09e Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Thu, 13 Sep 2012 01:03:50 +0200 Subject: [PATCH] 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. --- deps/openssl/openssl/crypto/perlasm/x86masm.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/openssl/openssl/crypto/perlasm/x86masm.pl b/deps/openssl/openssl/crypto/perlasm/x86masm.pl index 3d50e4a786..7815b17c43 100644 --- a/deps/openssl/openssl/crypto/perlasm/x86masm.pl +++ b/deps/openssl/openssl/crypto/perlasm/x86masm.pl @@ -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