msvc: remove workaround for arm64 sha1 compiler bug
This commit is contained in:
parent
270d74a324
commit
9dcae0b1c3
|
@ -138,14 +138,6 @@ add_library(common
|
||||||
WorkQueueThread.h
|
WorkQueueThread.h
|
||||||
)
|
)
|
||||||
|
|
||||||
if(MSVC AND _M_ARM_64)
|
|
||||||
# Workaround msvc arm64 optimizer bug
|
|
||||||
# TODO remove after updating to VS 17.4
|
|
||||||
set_source_files_properties(
|
|
||||||
Crypto/SHA1.cpp
|
|
||||||
PROPERTIES COMPILE_FLAGS "/d2ssa-peeps-post-color-")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(NOT MSVC AND _M_ARM_64)
|
if(NOT MSVC AND _M_ARM_64)
|
||||||
set_source_files_properties(
|
set_source_files_properties(
|
||||||
Crypto/AES.cpp
|
Crypto/AES.cpp
|
||||||
|
|
|
@ -733,12 +733,7 @@
|
||||||
<ClCompile Include="Common\Crypto\AES.cpp" />
|
<ClCompile Include="Common\Crypto\AES.cpp" />
|
||||||
<ClCompile Include="Common\Crypto\bn.cpp" />
|
<ClCompile Include="Common\Crypto\bn.cpp" />
|
||||||
<ClCompile Include="Common\Crypto\ec.cpp" />
|
<ClCompile Include="Common\Crypto\ec.cpp" />
|
||||||
<ClCompile Include="Common\Crypto\SHA1.cpp">
|
<ClCompile Include="Common\Crypto\SHA1.cpp" />
|
||||||
<!--Workaround msvc arm64 optimizer bug
|
|
||||||
TODO remove after updating to VS 17.4
|
|
||||||
-->
|
|
||||||
<AdditionalOptions Condition="'$(Platform)'=='ARM64'">/d2ssa-peeps-post-color- %(AdditionalOptions)</AdditionalOptions>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="Common\Debug\CodeTrace.cpp" />
|
<ClCompile Include="Common\Debug\CodeTrace.cpp" />
|
||||||
<ClCompile Include="Common\Debug\MemoryPatches.cpp" />
|
<ClCompile Include="Common\Debug\MemoryPatches.cpp" />
|
||||||
<ClCompile Include="Common\Debug\Watches.cpp" />
|
<ClCompile Include="Common\Debug\Watches.cpp" />
|
||||||
|
|
Loading…
Reference in New Issue