| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 | 42 |
| 43 'Dart_Linux_simarm_Base': { | 43 'Dart_Linux_simarm_Base': { |
| 44 'abstract': 1, | 44 'abstract': 1, |
| 45 'cflags': [ '-O3', '-m32', '-msse2' ], | 45 'cflags': [ '-O3', '-m32', '-msse2' ], |
| 46 'ldflags': [ '-m32', ], | 46 'ldflags': [ '-m32', ], |
| 47 'defines': [ | 47 'defines': [ |
| 48 'ARM_FLOAT_ABI_HARD', | 48 'ARM_FLOAT_ABI_HARD', |
| 49 ], | 49 ], |
| 50 }, | 50 }, |
| 51 | 51 |
| 52 'Dart_Linux_simarm64_Base': { |
| 53 'abstract': 1, |
| 54 'cflags': [ '-O3', '-m64', '-msse2' ], |
| 55 'ldflags': [ '-m64', ], |
| 56 'defines': [ |
| 57 'ARM64_FLOAT_ABI_HARD', |
| 58 ], |
| 59 }, |
| 60 |
| 52 # ARM cross-build | 61 # ARM cross-build |
| 53 'Dart_Linux_xarm_Base': { | 62 'Dart_Linux_xarm_Base': { |
| 54 'abstract': 1, | 63 'abstract': 1, |
| 55 'target_conditions': [ | 64 'target_conditions': [ |
| 56 ['_toolset=="target"', { | 65 ['_toolset=="target"', { |
| 57 'cflags': [ | 66 'cflags': [ |
| 58 '-marm', | 67 '-marm', |
| 59 '-mfpu=vfp', | 68 '-mfpu=vfp', |
| 60 '-Wno-psabi', # suppresses va_list warning | 69 '-Wno-psabi', # suppresses va_list warning |
| 61 '-fno-strict-overflow', | 70 '-fno-strict-overflow', |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 # The sampling profiler uses the frame pointer to walk the stack. | 147 # The sampling profiler uses the frame pointer to walk the stack. |
| 139 '-fno-omit-frame-pointer', | 148 '-fno-omit-frame-pointer', |
| 140 # Clang on Linux will still omit frame pointers from leaf functions | 149 # Clang on Linux will still omit frame pointers from leaf functions |
| 141 # unless told otherwise: | 150 # unless told otherwise: |
| 142 # '-mno-omit-leaf-frame-pointer', | 151 # '-mno-omit-leaf-frame-pointer', |
| 143 ], | 152 ], |
| 144 }, | 153 }, |
| 145 }, | 154 }, |
| 146 }, | 155 }, |
| 147 } | 156 } |
| OLD | NEW |