[Python-checkins] r86600 - python/branches/pep-0384/PCbuild/python3dll.vcproj

martin.v.loewis python-checkins at python.org
Sat Nov 20 20:11:36 CET 2010


Author: martin.v.loewis
Date: Sat Nov 20 20:11:36 2010
New Revision: 86600

Log:
Stop linking with the CRT.

Modified:
   python/branches/pep-0384/PCbuild/python3dll.vcproj

Modified: python/branches/pep-0384/PCbuild/python3dll.vcproj
==============================================================================
--- python/branches/pep-0384/PCbuild/python3dll.vcproj	(original)
+++ python/branches/pep-0384/PCbuild/python3dll.vcproj	Sat Nov 20 20:11:36 2010
@@ -46,6 +46,7 @@
 				EnableIntrinsicFunctions="true"
 				PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;PYTHON3DLL_EXPORTS"
 				RuntimeLibrary="2"
+				BufferSecurityCheck="false"
 				EnableFunctionLevelLinking="true"
 				UsePrecompiledHeader="0"
 				WarningLevel="3"
@@ -65,11 +66,13 @@
 				AdditionalDependencies="..\PC\python32.lib"
 				OutputFile="$(OutDir)\python3.dll"
 				LinkIncremental="1"
+				IgnoreAllDefaultLibraries="true"
 				ModuleDefinitionFile="..\PC\python3.def"
 				GenerateDebugInformation="true"
 				SubSystem="2"
 				OptimizeReferences="2"
 				EnableCOMDATFolding="2"
+				EntryPointSymbol="DllMain"
 				TargetMachine="1"
 			/>
 			<Tool


More information about the Python-checkins mailing list