diff options
author | Adam Ierymenko <adam.ierymenko@zerotier.com> | 2014-03-04 11:18:34 -0800 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@zerotier.com> | 2014-03-04 11:18:34 -0800 |
commit | b72c2c63587cf387771e04288ddde37403e69e4c (patch) | |
tree | e086fc7a6509bfca0882b55fde3864f9fb709d81 /windows/ZeroTierOne | |
parent | 5581339d5b111ad67b3f094c994e6de03ff51fd7 (diff) | |
download | infinitytier-b72c2c63587cf387771e04288ddde37403e69e4c.tar.gz infinitytier-b72c2c63587cf387771e04288ddde37403e69e4c.zip |
Disable SSE on 32-bit Windows builds since people might still be using old school chips... x64 builds with SSE since pretty much all AMD64/x86_64 chips have it.
Diffstat (limited to 'windows/ZeroTierOne')
-rw-r--r-- | windows/ZeroTierOne/ZeroTierOne.vcxproj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/windows/ZeroTierOne/ZeroTierOne.vcxproj b/windows/ZeroTierOne/ZeroTierOne.vcxproj index be2121aa..43f00bff 100644 --- a/windows/ZeroTierOne/ZeroTierOne.vcxproj +++ b/windows/ZeroTierOne/ZeroTierOne.vcxproj @@ -212,7 +212,7 @@ <AdditionalIncludeDirectories>$(SolutionDir)\ext\bin\libcrypto\include</AdditionalIncludeDirectories> <PreprocessorDefinitions>ZT_OFFICIAL_RELEASE;ZT_AUTO_UPDATE;%(PreprocessorDefinitions)</PreprocessorDefinitions> <RuntimeLibrary>MultiThreaded</RuntimeLibrary> - <EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet> + <EnableEnhancedInstructionSet>NoExtensions</EnableEnhancedInstructionSet> <StringPooling>true</StringPooling> </ClCompile> <Link> |