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

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: Use -marm instead of forcing optimization. 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..57804508a6787d4aa4929708949513686cc1f001 100644
--- a/breakpad/breakpad.gyp
+++ b/breakpad/breakpad.gyp
@@ -532,6 +532,10 @@
['target_arch=="arm" and OS!="android"', {
'cflags': ['-Wa,-mimplicit-it=always'],
}],
+ ['target_arch=="arm"', {
+ # Avoid running out of registers.
digit1 2012/10/17 08:23:59 Can you put that in a chromeos-specific condition,
Ami GONE FROM CHROMIUM 2012/10/17 08:48:32 Done.
+ '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