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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 '-O3', | 106 '-O3', |
107 '-m64', | 107 '-m64', |
108 '-msse2', | 108 '-msse2', |
109 '-mfpmath=sse', | 109 '-mfpmath=sse', |
110 ], | 110 ], |
111 'ldflags': [ | 111 'ldflags': [ |
112 '-m64', | 112 '-m64', |
113 ], | 113 ], |
114 }, | 114 }, |
115 | 115 |
| 116 'Dart_Linux_simdbc_Base': { |
| 117 'abstract': 1, |
| 118 'cflags': [ '-O3', '-m32', '-msse2', '-mfpmath=sse' ], |
| 119 'ldflags': [ '-m32', ], |
| 120 }, |
| 121 |
116 # ARM cross-build | 122 # ARM cross-build |
117 'Dart_Linux_xarm_Base': { | 123 'Dart_Linux_xarm_Base': { |
118 'abstract': 1, | 124 'abstract': 1, |
119 'target_conditions': [ | 125 'target_conditions': [ |
120 ['_toolset=="target"', { | 126 ['_toolset=="target"', { |
121 'cflags': [ | 127 'cflags': [ |
122 '-marm', | 128 '-marm', |
123 '-mfpu=vfp', | 129 '-mfpu=vfp', |
124 '-Wno-psabi', # suppresses va_list warning | 130 '-Wno-psabi', # suppresses va_list warning |
125 '-fno-strict-overflow', | 131 '-fno-strict-overflow', |
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
337 '-ffunction-sections', | 343 '-ffunction-sections', |
338 '-fomit-frame-pointer', | 344 '-fomit-frame-pointer', |
339 ], | 345 ], |
340 'ldflags': [ | 346 'ldflags': [ |
341 '-Wl,--gc-sections', | 347 '-Wl,--gc-sections', |
342 ], | 348 ], |
343 }, | 349 }, |
344 }, | 350 }, |
345 }, | 351 }, |
346 } | 352 } |
OLD | NEW |