aboutsummaryrefslogtreecommitdiffstats
path: root/util/pl
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>1999-07-12 18:12:43 +0000
committerDr. Stephen Henson <steve@openssl.org>1999-07-12 18:12:43 +0000
commitbbdb543844cd4f8f787b678e33466afc12eccd96 (patch)
tree6910cfcd6aa9f6c6fa01acdd31a410900cf9be14 /util/pl
parent5059658219465c2e3e15f45c5ca3a0d251cd5fba (diff)
downloadopenssl-bbdb543844cd4f8f787b678e33466afc12eccd96.tar.gz
More NASM support code it still doesn't work but it doesn't work less than it
didn't work before :-)
Diffstat (limited to 'util/pl')
-rw-r--r--util/pl/VC-32.pl12
1 files changed, 8 insertions, 4 deletions
diff --git a/util/pl/VC-32.pl b/util/pl/VC-32.pl
index 8082d2ef3c..6db1c9fe23 100644
--- a/util/pl/VC-32.pl
+++ b/util/pl/VC-32.pl
@@ -49,10 +49,14 @@ $lfile='/out:';
$shlib_ex_obj="";
$app_ex_obj="setargv.obj";
-
-$asm='ml /Cp /coff /c /Cx';
-$asm.=" /Zi" if $debug;
-$afile='/Fo';
+if ($nasm) {
+ $asm='nasmw -f win32';
+ $afile='-o ';
+} else {
+ $asm='ml /Cp /coff /c /Cx';
+ $asm.=" /Zi" if $debug;
+ $afile='/Fo';
+}
$bn_asm_obj='';
$bn_asm_src='';