Skip to content

Commit

Permalink
CryptoPP: Disable optimizations for blake2.cpp
Browse files Browse the repository at this point in the history
Compilation goes forever with optimizations on VS 15.5 Preview 2.0
  • Loading branch information
Xottab-DUTY committed Nov 4, 2017
1 parent 562c93f commit a6bbca9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Externals/cryptlib.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,11 @@
<ClCompile Include="cryptopp\base64.cpp" />
<ClCompile Include="cryptopp\basecode.cpp" />
<ClCompile Include="cryptopp\bfinit.cpp" />
<ClCompile Include="cryptopp\blake2.cpp" />
<ClCompile Include="cryptopp\blake2.cpp">
<Optimization Condition="'$(Configuration)'=='Release'">Disabled</Optimization>
<InlineFunctionExpansion Condition="'$(Configuration)'=='Release'">Default</InlineFunctionExpansion>
<OmitFramePointers Condition="'$(Configuration)'=='Release'">false</OmitFramePointers>
</ClCompile>
<ClCompile Include="cryptopp\blowfish.cpp" />
<ClCompile Include="cryptopp\blumshub.cpp" />
<ClCompile Include="cryptopp\camellia.cpp" />
Expand Down

0 comments on commit a6bbca9

Please sign in to comment.