| 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 '-m64', | 112 '-m64', |
| 113 ], | 113 ], |
| 114 }, | 114 }, |
| 115 | 115 |
| 116 'Dart_Linux_simdbc_Base': { | 116 'Dart_Linux_simdbc_Base': { |
| 117 'abstract': 1, | 117 'abstract': 1, |
| 118 'cflags': [ '-O3', '-m32', '-msse2', '-mfpmath=sse' ], | 118 'cflags': [ '-O3', '-m32', '-msse2', '-mfpmath=sse' ], |
| 119 'ldflags': [ '-m32', ], | 119 'ldflags': [ '-m32', ], |
| 120 }, | 120 }, |
| 121 | 121 |
| 122 'Dart_Linux_simdbc64_Base': { |
| 123 'abstract': 1, |
| 124 'cflags': [ '-O3', '-m64', '-msse2', '-mfpmath=sse' ], |
| 125 'ldflags': [ '-m64', ], |
| 126 }, |
| 127 |
| 122 # ARM cross-build | 128 # ARM cross-build |
| 123 'Dart_Linux_xarm_Base': { | 129 'Dart_Linux_xarm_Base': { |
| 124 'abstract': 1, | 130 'abstract': 1, |
| 125 'target_conditions': [ | 131 'target_conditions': [ |
| 126 ['_toolset=="target"', { | 132 ['_toolset=="target"', { |
| 127 'cflags': [ | 133 'cflags': [ |
| 128 '-marm', | 134 '-marm', |
| 129 '-mfpu=vfp', | 135 '-mfpu=vfp', |
| 130 '-Wno-psabi', # suppresses va_list warning | 136 '-Wno-psabi', # suppresses va_list warning |
| 131 '-fno-strict-overflow', | 137 '-fno-strict-overflow', |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 343 '-ffunction-sections', | 349 '-ffunction-sections', |
| 344 '-fomit-frame-pointer', | 350 '-fomit-frame-pointer', |
| 345 ], | 351 ], |
| 346 'ldflags': [ | 352 'ldflags': [ |
| 347 '-Wl,--gc-sections', | 353 '-Wl,--gc-sections', |
| 348 ], | 354 ], |
| 349 }, | 355 }, |
| 350 }, | 356 }, |
| 351 }, | 357 }, |
| 352 } | 358 } |
| OLD | NEW |