Commit c34d53e4 by Jamie Madill

Fix standalone OSX build.

We were missing one warning diable flag, for bison compatiblity, and were missing the appropriate flag to enable c++11 support. BUG=angle:773 Change-Id: I717ead6e1726920a6c28559503cb98e94dc29c16 Reviewed-on: https://chromium-review.googlesource.com/238449Tested-by: 's avatarJamie Madill <jmadill@chromium.org> Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org>
parent 5ffa95da
......@@ -31,6 +31,7 @@
'-Wwrite-strings',
'-Wno-reorder',
'-Wno-format-nonliteral',
'-Wno-deprecated-register',
],
},
'target_defaults':
......@@ -129,6 +130,7 @@
},
'xcode_settings':
{
'CLANG_CXX_LANGUAGE_STANDARD': 'c++11',
'COPY_PHASE_STRIP': 'NO',
'GCC_OPTIMIZATION_LEVEL': '0',
},
......
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