aboutsummaryrefslogtreecommitdiff
path: root/crypto/perlasm/x86asm.pl
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2007-12-18 09:32:20 +0000
committerAndy Polyakov <appro@openssl.org>2007-12-18 09:32:20 +0000
commit3e583572b3256d0d38233264a69fc2bf2887f883 (patch)
tree4d85267ea3d17b7f76fdcf181617aa993349b388 /crypto/perlasm/x86asm.pl
parent43d8f27dca609666350512bb17a76d39e0c28e70 (diff)
downloadopenssl-3e583572b3256d0d38233264a69fc2bf2887f883.zip
openssl-3e583572b3256d0d38233264a69fc2bf2887f883.tar.gz
openssl-3e583572b3256d0d38233264a69fc2bf2887f883.tar.bz2
Disable support for Metrowerks assembler. Assembler itself is broken,
specifically it incorrectly encodes EA offsets between 128 and 255.
Diffstat (limited to 'crypto/perlasm/x86asm.pl')
-rw-r--r--crypto/perlasm/x86asm.pl5
1 files changed, 2 insertions, 3 deletions
diff --git a/crypto/perlasm/x86asm.pl b/crypto/perlasm/x86asm.pl
index 66ba308..4f3b506 100644
--- a/crypto/perlasm/x86asm.pl
+++ b/crypto/perlasm/x86asm.pl
@@ -181,8 +181,8 @@ sub ::asm_init
{ $win32=1; require "x86nasm.pl"; }
elsif (($type eq "nw-nasm"))
{ $netware=1; require "x86nasm.pl"; }
- elsif (($type eq "nw-mwasm"))
- { $netware=1; $mwerks=1; require "x86nasm.pl"; }
+ #elsif (($type eq "nw-mwasm"))
+ #{ $netware=1; $mwerks=1; require "x86nasm.pl"; }
elsif (($type eq "win32"))
{ $win32=1; require "x86masm.pl"; }
else
@@ -193,7 +193,6 @@ Pick one target type from
coff - GAS/COFF such as Win32 targets
win32n - Windows 95/Windows NT NASM format
nw-nasm - NetWare NASM format
- nw-mwasm- NetWare Metrowerks Assembler
EOF
exit(1);
}