[Python-checkins] cpython: Assume nasm.

martin.v.loewis python-checkins at python.org
Fri May 18 16:26:01 CEST 2012


http://hg.python.org/cpython/rev/224ca86e3919
changeset:   77032:224ca86e3919
user:        Martin v. Löwis <martin at v.loewis.de>
date:        Fri May 18 16:25:04 2012 +0200
summary:
  Assume nasm.

files:
  PCbuild/build_ssl.py |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/PCbuild/build_ssl.py b/PCbuild/build_ssl.py
--- a/PCbuild/build_ssl.py
+++ b/PCbuild/build_ssl.py
@@ -228,9 +228,9 @@
 
         # Now run make.
         if arch == "amd64":
-            rc = os.system("ml64 -c -Foms\\uptable.obj ms\\uptable.asm")
+            rc = os.system("nasm -f win64 -DNEAR -Ox -g ms\\uptable.asm")
             if rc:
-                print("ml64 assembler has failed.")
+                print("nasm assembler has failed.")
                 sys.exit(rc)
 
         copy(r"crypto\buildinf_%s.h" % arch, r"crypto\buildinf.h")

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list