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

Unified Diff: tools/gyp/configurations_make.gypi

Issue 1184873002: Pass -EL for MIPS cross builds to allow for using a bi-endian toolchain... (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 6 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: tools/gyp/configurations_make.gypi
diff --git a/tools/gyp/configurations_make.gypi b/tools/gyp/configurations_make.gypi
index 15eee37a9a4a1d087f529725287d091a8c21ec85..d8f796519b3e7509e06026cf43e18182bf50418e 100644
--- a/tools/gyp/configurations_make.gypi
+++ b/tools/gyp/configurations_make.gypi
@@ -171,10 +171,14 @@
'target_conditions': [
['_toolset=="target"', {
'cflags': [
+ '-EL',
'-march=mips32',
'-mhard-float',
'-fno-strict-overflow',
],
+ 'ldflags': [
+ '-EL',
+ ],
}],
['_toolset=="host"',{
'cflags': [ '-O3', '-m32', '-msse2' ],
« 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