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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'dart_debug_optimization_level%': '2', 7 'dart_debug_optimization_level%': '2',
8 }, 8 },
9 'target_defaults': { 9 'target_defaults': {
10 'configurations': { 10 'configurations': {
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 'cflags': [ '-O3', '-m32', '-msse2' ], 164 'cflags': [ '-O3', '-m32', '-msse2' ],
165 'ldflags': [ '-m32', ], 165 'ldflags': [ '-m32', ],
166 }, 166 },
167 167
168 # MIPS cross-build 168 # MIPS cross-build
169 'Dart_Linux_xmips_Base': { 169 'Dart_Linux_xmips_Base': {
170 'abstract': 1, 170 'abstract': 1,
171 'target_conditions': [ 171 'target_conditions': [
172 ['_toolset=="target"', { 172 ['_toolset=="target"', {
173 'cflags': [ 173 'cflags': [
174 '-EL',
174 '-march=mips32', 175 '-march=mips32',
175 '-mhard-float', 176 '-mhard-float',
176 '-fno-strict-overflow', 177 '-fno-strict-overflow',
177 ], 178 ],
179 'ldflags': [
180 '-EL',
181 ],
178 }], 182 }],
179 ['_toolset=="host"',{ 183 ['_toolset=="host"',{
180 'cflags': [ '-O3', '-m32', '-msse2' ], 184 'cflags': [ '-O3', '-m32', '-msse2' ],
181 'ldflags': [ '-m32' ], 185 'ldflags': [ '-m32' ],
182 }]] 186 }]]
183 }, 187 },
184 188
185 # MIPS native build 189 # MIPS native build
186 'Dart_Linux_mips_Base': { 190 'Dart_Linux_mips_Base': {
187 'abstract': 1, 191 'abstract': 1,
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 ], 225 ],
222 }], 226 }],
223 ], 227 ],
224 'cflags': [ 228 'cflags': [
225 '-O3', 229 '-O3',
226 ], 230 ],
227 }, 231 },
228 }, 232 },
229 }, 233 },
230 } 234 }
OLDNEW
« 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