Index: build/common.gypi |
=================================================================== |
--- build/common.gypi (revision 193923) |
+++ build/common.gypi (working copy) |
@@ -2978,6 +2978,13 @@ |
], |
}], |
], |
+ 'conditions': [ |
+ ['OS=="mac"', { |
+ 'cflags': [ |
+ '-mllvm -asan-globals=0', # http://crbug.com/196561 |
Nico
2013/04/22 22:20:29
Sorry, I missed this: 'cflags' isn't used on mac.
Alexander Potapenko
2013/04/23 10:09:04
See below, I'm also setting -asan-globals=0 in xco
|
+ ], |
+ }], |
+ ], |
}], |
['tsan==1', { |
'target_conditions': [ |
@@ -3599,6 +3606,7 @@ |
'xcode_settings': { |
'OTHER_CFLAGS': [ |
'-fsanitize=address', |
+ '-mllvm -asan-globals=0', # http://crbug.com/196561 |
'-w', # http://crbug.com/162783 |
], |
}, |