Skip to content

Commit a6bbca9

Browse files
committed
CryptoPP: Disable optimizations for blake2.cpp
Compilation goes forever with optimizations on VS 15.5 Preview 2.0
1 parent 562c93f commit a6bbca9

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Externals/cryptlib.vcxproj

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,11 @@
136136
<ClCompile Include="cryptopp\base64.cpp" />
137137
<ClCompile Include="cryptopp\basecode.cpp" />
138138
<ClCompile Include="cryptopp\bfinit.cpp" />
139-
<ClCompile Include="cryptopp\blake2.cpp" />
139+
<ClCompile Include="cryptopp\blake2.cpp">
140+
<Optimization Condition="'$(Configuration)'=='Release'">Disabled</Optimization>
141+
<InlineFunctionExpansion Condition="'$(Configuration)'=='Release'">Default</InlineFunctionExpansion>
142+
<OmitFramePointers Condition="'$(Configuration)'=='Release'">false</OmitFramePointers>
143+
</ClCompile>
140144
<ClCompile Include="cryptopp\blowfish.cpp" />
141145
<ClCompile Include="cryptopp\blumshub.cpp" />
142146
<ClCompile Include="cryptopp\camellia.cpp" />

0 commit comments

Comments
 (0)