| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 221 ], | 225 ], |
| 222 }], | 226 }], |
| 223 ], | 227 ], |
| 224 'cflags': [ | 228 'cflags': [ |
| 225 '-O3', | 229 '-O3', |
| 226 ], | 230 ], |
| 227 }, | 231 }, |
| 228 }, | 232 }, |
| 229 }, | 233 }, |
| 230 } | 234 } |
| OLD | NEW |