Change \u which is causing a syntax error. I'm not sure if that should be, but
at least this should let the build get farther on amd64 machines.
diff --git a/PC/VS8.0/build_ssl.py b/PC/VS8.0/build_ssl.py
index ab5fcea..867fd4c 100644
--- a/PC/VS8.0/build_ssl.py
+++ b/PC/VS8.0/build_ssl.py
@@ -225,7 +225,7 @@
# Now run make.
if arch == "amd64":
- rc = os.system(r"ml64 -c -Foms\uptable.obj ms\uptable.asm")
+ rc = os.system("ml64 -c -Foms\\uptable.obj ms\\uptable.asm")
if rc:
print("ml64 assembler has failed.")
sys.exit(rc)