[Python-checkins] cpython (3.3): Issue 15792 Correct build options on Win64. Patch by Jeremy Kloth.

tim.golden python-checkins at python.org
Tue Oct 29 22:10:12 CET 2013


http://hg.python.org/cpython/rev/c49b8bdcb5cb
changeset:   86759:c49b8bdcb5cb
branch:      3.3
parent:      86751:cd4007fb9c7e
user:        Tim Golden <mail at timgolden.me.uk>
date:        Tue Oct 29 21:02:25 2013 +0000
summary:
  Issue 15792 Correct build options on Win64. Patch by Jeremy Kloth.

files:
  PC/VS9.0/x64.vsprops |  2 +-
  PCbuild/x64.props    |  2 +-
  2 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/PC/VS9.0/x64.vsprops b/PC/VS9.0/x64.vsprops
--- a/PC/VS9.0/x64.vsprops
+++ b/PC/VS9.0/x64.vsprops
@@ -8,7 +8,7 @@
 	>
 	<Tool
 		Name="VCCLCompilerTool"
-		AdditionalOptions="/USECL:MS_OPTERON /GS-"
+		AdditionalOptions="/GS-"
 		PreprocessorDefinitions="_WIN64;_M_X64"
 	/>
 	<Tool
diff --git a/PCbuild/x64.props b/PCbuild/x64.props
--- a/PCbuild/x64.props
+++ b/PCbuild/x64.props
@@ -5,7 +5,7 @@
   </PropertyGroup>
   <ItemDefinitionGroup>
     <ClCompile>
-      <AdditionalOptions>/USECL:MS_OPTERON /GS- %(AdditionalOptions)</AdditionalOptions>
+      <BufferSecurityCheck>false</BufferSecurityCheck>
       <PreprocessorDefinitions>_WIN64;_M_X64;%(PreprocessorDefinitions)</PreprocessorDefinitions>
     </ClCompile>
     <Link>

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list