mirror of
https://github.com/python/cpython.git
synced 2025-12-23 09:19:18 +00:00
Assume nasm.
This commit is contained in:
parent
3f90311bfe
commit
dcd1c0c627
1 changed files with 2 additions and 2 deletions
|
|
@ -228,9 +228,9 @@ def main():
|
|||
|
||||
# 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")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue