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

Unified Diff: tools/gyp/configurations_make.gypi

Issue 189093012: - Start to distinguish between cross-build and native build environments. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 9 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 | « tools/gyp/configurations.gypi ('k') | 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
===================================================================
--- tools/gyp/configurations_make.gypi (revision 33445)
+++ tools/gyp/configurations_make.gypi (working copy)
@@ -76,7 +76,8 @@
'ldflags': [ '-m32', ],
},
- 'Dart_Linux_mips_Base': {
+ # MIPS cross-build
+ 'Dart_Linux_xmips_Base': {
'abstract': 1,
'target_conditions': [
['_toolset=="target"', {
@@ -92,6 +93,16 @@
}]]
},
+ # MIPS native build
+ 'Dart_Linux_mips_Base': {
+ 'abstract': 1,
+ 'cflags': [
+ '-march=mips32',
+ '-mhard-float',
+ '-fno-strict-overflow',
+ ],
+ },
+
'Dart_Linux_Debug': {
'abstract': 1,
'cflags': [
« no previous file with comments | « tools/gyp/configurations.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698