[Python-checkins] r43027 - python/trunk/PCbuild/_ctypes.vcproj

thomas.heller python-checkins at python.org
Tue Mar 14 21:22:48 CET 2006


Author: thomas.heller
Date: Tue Mar 14 21:22:47 2006
New Revision: 43027

Modified:
   python/trunk/PCbuild/_ctypes.vcproj
Log:
For x86 Release and Debug builds, remove the /Wp64 compiler flag, it
is responsible for most (all?)  of the warnings we get.


Modified: python/trunk/PCbuild/_ctypes.vcproj
==============================================================================
--- python/trunk/PCbuild/_ctypes.vcproj	(original)
+++ python/trunk/PCbuild/_ctypes.vcproj	Tue Mar 14 21:22:47 2006
@@ -26,7 +26,7 @@
 				RuntimeLibrary="3"
 				UsePrecompiledHeader="0"
 				WarningLevel="3"
-				Detect64BitPortabilityProblems="TRUE"
+				Detect64BitPortabilityProblems="FALSE"
 				DebugInformationFormat="3"
 				CompileAs="0"/>
 			<Tool
@@ -78,7 +78,7 @@
 				EnableFunctionLevelLinking="TRUE"
 				UsePrecompiledHeader="0"
 				WarningLevel="3"
-				Detect64BitPortabilityProblems="TRUE"
+				Detect64BitPortabilityProblems="FALSE"
 				DebugInformationFormat="0"
 				CompileAs="0"/>
 			<Tool


More information about the Python-checkins mailing list