summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2009-04-26 18:05:19 +0000
committerAndy Polyakov <appro@openssl.org>2009-04-26 18:05:19 +0000
commit2ff2710ccfa3fdb430ec827fbe13a45162520c19 (patch)
tree6c6908641ef22e2dd4cb694c8f70d965aae40079 /util
parentff65e94e04e71e43a8f958185d6fdf2671e90dac (diff)
Engage nasm optimizations in Win64 build.
Diffstat (limited to 'util')
-rw-r--r--util/pl/VC-32.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/pl/VC-32.pl b/util/pl/VC-32.pl
index d16ec7877a..676275df67 100644
--- a/util/pl/VC-32.pl
+++ b/util/pl/VC-32.pl
@@ -173,7 +173,7 @@ $shlib_ex_obj="";
$app_ex_obj="setargv.obj" if ($FLAVOR !~ /CE/);
if ($FLAVOR =~ /WIN64A/) {
if (`nasm -v` =~ /NASM version ([0-9]+\.[0-9]+)/ && $1 >= 2.0) {
- $asm='nasm -f win64';
+ $asm='nasm -f win64 -DNEAR -Ox';
$asm.=' -g' if $debug;
$afile='-o ';
} else {