Chromium Code Reviews| Index: pylib/gyp/xcode_emulation.py |
| =================================================================== |
| --- pylib/gyp/xcode_emulation.py (revision 1196) |
| +++ pylib/gyp/xcode_emulation.py (working copy) |
| @@ -234,6 +234,9 @@ |
| if 'SDKROOT' in self._Settings(): |
| cflags.append('-isysroot %s' % sdk_root) |
| + if self._Test('GCC_CHAR_IS_UNSIGNED_CHAR', 'YES', default='NO'): |
| + cflags.append('-funsigned-char') |
| + |
| if self._Test('GCC_CW_ASM_SYNTAX', 'YES', default='YES'): |
| cflags.append('-fasm-blocks') |