projects
/
platform
/
upstream
/
nodejs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3568edf
)
openssl: fix perlasm issue
author
Bert Belder
<bertbelder@gmail.com>
Wed, 12 Sep 2012 23:03:50 +0000
(
01:03
+0200)
committer
isaacs
<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
patch
|
blob
|
history
diff --git
a/deps/openssl/openssl/crypto/perlasm/x86masm.pl
b/deps/openssl/openssl/crypto/perlasm/x86masm.pl
index 3d50e4a786564c3eed9e318558ef8e656a61edc0..7815b17c43ef100ad49fad4f919cd6f1616a58ba 100644
(file)
--- 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
-.
4
86
+.
5
86
.MODEL FLAT
OPTION DOTNAME
IF \@Version LT 800