diff options
author | yongsheng.zhu@intel.com <yongsheng.zhu@intel.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-20 12:16:57 +0000 |
---|---|---|
committer | yongsheng.zhu@intel.com <yongsheng.zhu@intel.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-20 12:16:57 +0000 |
commit | 657c13bd24aed597e5f55f664d23a6df46ec252a (patch) | |
tree | 2e344f29270e210e0cbc632ba40f4dc8e818c0b2 /breakpad | |
parent | 9b6edd72097092c5a90cc64f31a91bc2dcbed8c1 (diff) | |
download | chromium_src-657c13bd24aed597e5f55f664d23a6df46ec252a.zip chromium_src-657c13bd24aed597e5f55f664d23a6df46ec252a.tar.gz chromium_src-657c13bd24aed597e5f55f664d23a6df46ec252a.tar.bz2 |
Disable compiler option 'mimplicit-it' for Android ARM
Android NDK toolchain doesn't support it.
BUG=
TEST=
Review URL: https://chromiumcodereview.appspot.com/10824330
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@152315 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'breakpad')
-rw-r--r-- | breakpad/breakpad.gyp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/breakpad/breakpad.gyp b/breakpad/breakpad.gyp index a7d0767..b3f2935 100644 --- a/breakpad/breakpad.gyp +++ b/breakpad/breakpad.gyp @@ -522,7 +522,8 @@ ], 'conditions': [ - ['target_arch=="arm"', { + # Android NDK toolchain doesn't support -mimplicit-it=always + ['target_arch=="arm" and OS!="android"', { 'cflags': ['-Wa,-mimplicit-it=always'], }], ['OS=="android"', { |