Commit eafd9c97 by Adeel Mujahid

Merge pull request #1350 from am11/master

Disables Thread-Safe for local static variables
parents cd70fbd0 9e5067b8
...@@ -64,6 +64,16 @@ ...@@ -64,6 +64,16 @@
'MACOSX_DEPLOYMENT_TARGET': '10.7' 'MACOSX_DEPLOYMENT_TARGET': '10.7'
} }
}], }],
['OS=="win" and MSVS_VERSION == "2015"', {
'msvs_settings': {
'VCCLCompilerTool': {
'AdditionalOptions': [
# disable Thread-Safe "Magic" for local static variables
'/Zc:threadSafeInit-',
],
},
},
}],
['OS!="win"', { ['OS!="win"', {
'cflags_cc+': [ 'cflags_cc+': [
'-std=c++0x' '-std=c++0x'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment