Commit 5458ce07 authored by Benjamin Peterson's avatar Benjamin Peterson

openssl requires nasm (#21462)

parent 577f8cb8
......@@ -207,9 +207,9 @@ def main():
# Now run make.
if arch == "amd64":
rc = os.system(r"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)
shutil.copy(r"crypto\buildinf_%s.h" % arch, r"crypto\buildinf.h")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment