Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(902)

Unified Diff: breakpad/breakpad.gyp

Issue 11198019: Allow building Official Chrome builds in Debug on ARM by avoiding overcommitting registers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Updated comment & chromeos==1'd the hack Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: breakpad/breakpad.gyp
diff --git a/breakpad/breakpad.gyp b/breakpad/breakpad.gyp
index 99ebf6c4590011e6d3ab74b593a75172caea0644..b121ceda1bb21f2edd47c0f3c0cc8f07dacd0e6d 100644
--- a/breakpad/breakpad.gyp
+++ b/breakpad/breakpad.gyp
@@ -532,6 +532,11 @@
['target_arch=="arm" and OS!="android"', {
'cflags': ['-Wa,-mimplicit-it=always'],
}],
+ ['target_arch=="arm" and chromeos==1', {
+ # Avoid running out of registers in
+ # linux_syscall_support.h:sys_clone()'s inline assembly.
+ 'cflags': ['-marm'],
+ }],
['OS=="android"', {
'include_dirs': [
'src/common/android/include',
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698