Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit bb4b0aa

Browse files
committed
Issue 15792 Correct build options on Win64. Patch by Jeremy Kloth.
1 parent 6d09f09 commit bb4b0aa

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

Misc/NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,8 @@ Build
129129
- Issue #19356: Avoid using a C variabled named "_self", it's a reserved
130130
word in some C compilers.
131131

132+
- Issue #15792: Correct build options on Win64. Patch by Jeremy Kloth.
133+
132134
Tools/Demos
133135
-----------
134136

PC/VS9.0/x64.vsprops

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
>
99
<Tool
1010
Name="VCCLCompilerTool"
11-
AdditionalOptions="/USECL:MS_OPTERON /GS-"
11+
AdditionalOptions="/GS-"
1212
PreprocessorDefinitions="_WIN64;_M_X64"
1313
/>
1414
<Tool

PCbuild/x64.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66
<ItemDefinitionGroup>
77
<ClCompile>
8-
<AdditionalOptions>/USECL:MS_OPTERON /GS- %(AdditionalOptions)</AdditionalOptions>
8+
<BufferSecurityCheck>false</BufferSecurityCheck>
99
<PreprocessorDefinitions>_WIN64;_M_X64;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1010
</ClCompile>
1111
<Link>

0 commit comments

Comments
 (0)