Disable the compile option 'mlong-calls' for Android for IA

This is because this option is a ARM-only option. See the documentation here: 
http://gcc.gnu.org/onlinedocs/gcc/ARM-Options.html 

BUG=127379
TEST=

Review URL: https://chromiumcodereview.appspot.com/10382082

git-svn-id: http://src.chromium.org/svn/trunk/src/build@136247 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
This commit is contained in:
yongsheng.zhu@intel.com 2012-05-10 05:40:50 +00:00
Родитель de59645342
Коммит 6b5c7c47ce
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1888,7 +1888,7 @@
'target_conditions' : [
['_toolset=="target"', {
'conditions': [
['OS=="android" and debug_optimize==0', {
['OS=="android" and debug_optimize==0 and target_arch=="arm"', {
'cflags': [
'-mlong-calls', # Needed when compiling with -O0
],