Commit 9e5067b8 by Adeel

Disables Thread-Safe for local static variables.

Fixes #1283.
parent cd70fbd0
......@@ -64,6 +64,16 @@
'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"', {
'cflags_cc+': [
'-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