| Index: pylib/gyp/msvs_emulation.py
|
| diff --git a/pylib/gyp/msvs_emulation.py b/pylib/gyp/msvs_emulation.py
|
| index 709ba305d2828e5546007c10c0dc1bc441b98662..6de77d7d7bd8bb7fe2fd9de6677917cf4e5a6812 100644
|
| --- a/pylib/gyp/msvs_emulation.py
|
| +++ b/pylib/gyp/msvs_emulation.py
|
| @@ -379,6 +379,8 @@ class MsvsSettings(object):
|
| map={'false': '-', 'true': ''}, prefix='/Zc:wchar_t')
|
| cl('EnablePREfast', map={'true': '/analyze'})
|
| cl('AdditionalOptions', prefix='')
|
| + cl('EnableEnhancedInstructionSet',
|
| + map={'1': 'SSE', '2': 'SSE2', '3': 'AVX', '4': 'IA32'}, prefix='/arch:')
|
| cflags.extend(['/FI' + f for f in self._Setting(
|
| ('VCCLCompilerTool', 'ForcedIncludeFiles'), config, default=[])])
|
| if self.vs_version.short_name in ('2013', '2013e'):
|
|
|