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

Unified Diff: icu.gyp

Issue 270058: ARM: Work around ICE with gcc-4.3 when building ICU (Closed) Base URL: http://src.chromium.org/svn/trunk/deps/third_party/icu42/
Patch Set: '' Created 11 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: icu.gyp
===================================================================
--- icu.gyp (revision 28681)
+++ icu.gyp (working copy)
@@ -207,6 +207,15 @@
'public/i18n',
],
},
+ 'conditions': [
+ ['target_arch=="arm"', {
Antoine Labour 2009/11/13 19:20:17 could you add armv7!=1 ? I never had an issue on a
+ # When targetting ARMv5 with gcc-4.3 at -O2 (as well as O3 and O1) an
+ # internal compiler error (ICE) is triggered in
+ # source/i18n/rematch.cpp. The work around is to build this target
+ # without specifying an optimisation level.
+ 'cflags!': [ '-O1', '-O2', '-O3' ],
+ }],
+ ],
},
{
'target_name': 'icuuc',
« 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