Chromium Code Reviews| Index: build/common.gypi |
| diff --git a/build/common.gypi b/build/common.gypi |
| index db723bc02d43e2e2cc9d55a736acc0c362435d72..75e6b0fca019e6954b8ed396b6dddba42112d8cb 100644 |
| --- a/build/common.gypi |
| +++ b/build/common.gypi |
| @@ -3956,11 +3956,16 @@ |
| '-m32', |
| ], |
| 'conditions': [ |
| - # Use gold linker for Android ia32 target. |
| ['OS=="android"', { |
| + # Use gold linker for Android ia32 target. |
| 'ldflags': [ |
| '-fuse-ld=gold', |
| ], |
| + # Use -mstackrealign due to a bug on ia32 Jelly Bean. |
| + # See crbug.com/521527 |
|
Nico
2015/08/18 23:24:52
https://android-review.googlesource.com/#/c/110770
Fabrice (no longer in Chrome)
2015/08/18 23:30:59
My best guess is that there is something wrong in
Nico
2015/08/18 23:35:59
Shouldn't the comment be more along the lines of "
|
| + 'cflags': [ |
| + '-mstackrealign', |
| + ], |
| }], |
| ], |
| }], |