We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04044d2 commit 54b9799Copy full SHA for 54b9799
binding.gyp
@@ -21,15 +21,24 @@
21
},
22
'cflags!': [ '-fno-exceptions' ],
23
'cflags_cc!': [ '-fno-exceptions' ],
24
+ 'msvs_configuration_attributes': {
25
+ 'SpectreMitigation': 'Spectre'
26
+ },
27
'msvs_settings': {
28
'VCCLCompilerTool': {
29
'ExceptionHandling': 1,
30
'AdditionalOptions': [
31
+ '/guard:cf',
32
'/w34244',
33
'/w34267',
34
'/ZH:SHA_256'
35
]
36
37
+ 'VCLinkerTool': {
38
+ 'AdditionalOptions': [
39
+ '/guard:cf'
40
+ ]
41
+ }
42
43
'conditions': [
44
['OS=="mac"', { 'cflags+': ['-fvisibility=hidden'] }],
0 commit comments