summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2014-02-18 17:33:18 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2014-02-18 17:33:18 (GMT)
commit9e5a9876ad3b666390f77aadfb02b303ff2748bd (patch)
treed4915d363c587c8a63bd1c027e6e424560f812ac
parentcefe6b34dee64de176e7c871df6576634ecdc0a9 (diff)
downloadcpython-9e5a9876ad3b666390f77aadfb02b303ff2748bd.zip
cpython-9e5a9876ad3b666390f77aadfb02b303ff2748bd.tar.gz
cpython-9e5a9876ad3b666390f77aadfb02b303ff2748bd.tar.bz2
Issue #20609: Fix building 64-bit binaries on 32-bit Windows.
-rw-r--r--Misc/NEWS6
-rw-r--r--PCbuild/pythoncore.vcxproj48
2 files changed, 46 insertions, 8 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4759018..2111147 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -131,6 +131,12 @@ Documentation
- Issue #20488: Importlib is no longer *an* implementation of import, it's *the*
implementation.
+Build
+-----
+
+- Issue #20609: Restored the ability to build 64-bit Windows binaries on
+ 32-bit Windows, which was broken by the change in issue #19788.
+
What's New in Python 3.3.4?
===========================
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj
index 89a63d1..8b5c42f 100644
--- a/PCbuild/pythoncore.vcxproj
+++ b/PCbuild/pythoncore.vcxproj
@@ -182,7 +182,11 @@
<BaseAddress>0x1e000000</BaseAddress>
</Link>
<PreBuildEvent>
- <Command>$(KillPythonExe)</Command>
+ <Command>$(KillPythonExe)
+IF %ERRORLEVEL% NEQ 0 (
+ echo kill_python: warning: could not kill running Pythons, exit code %ERRORLEVEL%
+ exit /b 0
+)</Command>
</PreBuildEvent>
<PreBuildEvent>
<Message>Killing any running $(PythonExe) instances...</Message>
@@ -213,7 +217,11 @@
<BaseAddress>0x1e000000</BaseAddress>
</Link>
<PreBuildEvent>
- <Command>$(KillPythonExe)</Command>
+ <Command>$(KillPythonExe)
+IF %ERRORLEVEL% NEQ 0 (
+ echo kill_python: warning: could not kill running Pythons, exit code %ERRORLEVEL%
+ exit /b 0
+)</Command>
</PreBuildEvent>
<PreBuildEvent>
<Message>Killing any running $(PythonExe) instances...</Message>
@@ -244,7 +252,11 @@
<BaseAddress>0x1e000000</BaseAddress>
</Link>
<PreBuildEvent>
- <Command>$(KillPythonExe)</Command>
+ <Command>$(KillPythonExe)
+IF %ERRORLEVEL% NEQ 0 (
+ echo kill_python: warning: could not kill running Pythons, exit code %ERRORLEVEL%
+ exit /b 0
+)</Command>
</PreBuildEvent>
<PreBuildEvent>
<Message>Killing any running $(PythonExe) instances...</Message>
@@ -278,7 +290,11 @@
<BaseAddress>0x1e000000</BaseAddress>
</Link>
<PreBuildEvent>
- <Command>$(KillPythonExe)</Command>
+ <Command>$(KillPythonExe)
+IF %ERRORLEVEL% NEQ 0 (
+ echo kill_python: warning: could not kill running Pythons, exit code %ERRORLEVEL%
+ exit /b 0
+)</Command>
</PreBuildEvent>
<PreBuildEvent>
<Message>Killing any running $(PythonExe) instances...</Message>
@@ -307,7 +323,11 @@
<BaseAddress>0x1e000000</BaseAddress>
</Link>
<PreBuildEvent>
- <Command>$(KillPythonExe)</Command>
+ <Command>$(KillPythonExe)
+IF %ERRORLEVEL% NEQ 0 (
+ echo kill_python: warning: could not kill running Pythons, exit code %ERRORLEVEL%
+ exit /b 0
+)</Command>
</PreBuildEvent>
<PreBuildEvent>
<Message>Killing any running $(PythonExe) instances...</Message>
@@ -339,7 +359,11 @@
<TargetMachine>MachineX64</TargetMachine>
</Link>
<PreBuildEvent>
- <Command>$(KillPythonExe)</Command>
+ <Command>$(KillPythonExe)
+IF %ERRORLEVEL% NEQ 0 (
+ echo kill_python: warning: could not kill running Pythons, exit code %ERRORLEVEL%
+ exit /b 0
+)</Command>
</PreBuildEvent>
<PreBuildEvent>
<Message>Killing any running $(PythonExe) instances...</Message>
@@ -368,7 +392,11 @@
<BaseAddress>0x1e000000</BaseAddress>
</Link>
<PreBuildEvent>
- <Command>$(KillPythonExe)</Command>
+ <Command>$(KillPythonExe)
+IF %ERRORLEVEL% NEQ 0 (
+ echo kill_python: warning: could not kill running Pythons, exit code %ERRORLEVEL%
+ exit /b 0
+)</Command>
</PreBuildEvent>
<PreBuildEvent>
<Message>Killing any running $(PythonExe) instances...</Message>
@@ -400,7 +428,11 @@
<TargetMachine>MachineX64</TargetMachine>
</Link>
<PreBuildEvent>
- <Command>$(KillPythonExe)</Command>
+ <Command>$(KillPythonExe)
+IF %ERRORLEVEL% NEQ 0 (
+ echo kill_python: warning: could not kill running Pythons, exit code %ERRORLEVEL%
+ exit /b 0
+)</Command>
</PreBuildEvent>
<PreBuildEvent>
<Message>Killing any running $(PythonExe) instances...</Message>