From 4130c886199878cf3632166ee9a60e332f4c33a2 Mon Sep 17 00:00:00 2001 From: Ryan Prichard Date: Wed, 1 Jun 2016 20:42:49 -0500 Subject: [PATCH] Also build for 64-bit XP. I verified that the normal binaries did not work on a Windows Server 2003 R2 64-bit VM from AWS EC2. --- ship/make_msvc_package.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ship/make_msvc_package.py b/ship/make_msvc_package.py index 8982336..9451e57 100755 --- a/ship/make_msvc_package.py +++ b/ship/make_msvc_package.py @@ -147,6 +147,7 @@ def buildPackage(): checkoutGyp() cleanMsvc() build("ia32", packageDir, True) + build("x64", packageDir, True) cleanMsvc() build("ia32", packageDir) build("x64", packageDir)