| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 'Dart_Linux_arm_Base': { | 74 'Dart_Linux_arm_Base': { |
| 75 'abstract': 1, | 75 'abstract': 1, |
| 76 'cflags': [ | 76 'cflags': [ |
| 77 '-marm', | 77 '-marm', |
| 78 '-mfpu=vfp', | 78 '-mfpu=vfp', |
| 79 '-Wno-psabi', # suppresses va_list warning | 79 '-Wno-psabi', # suppresses va_list warning |
| 80 '-fno-strict-overflow', | 80 '-fno-strict-overflow', |
| 81 ], | 81 ], |
| 82 }, | 82 }, |
| 83 | 83 |
| 84 # ARM64 cross-build |
| 85 'Dart_Linux_xarm64_Base': { |
| 86 'abstract': 1, |
| 87 'target_conditions': [ |
| 88 ['_toolset=="target"', { |
| 89 'cflags': [ '-O3', ], |
| 90 }], |
| 91 ['_toolset=="host"', { |
| 92 'cflags': ['-O3', '-m64', '-msse2'], |
| 93 'ldflags': ['-m64'], |
| 94 }]] |
| 95 }, |
| 96 |
| 97 # ARM64 native build |
| 98 'Dart_Linux_arm64_Base': { |
| 99 'abstract': 1, |
| 100 'cflags': [ '-O3', ], |
| 101 }, |
| 102 |
| 84 'Dart_Linux_simmips_Base': { | 103 'Dart_Linux_simmips_Base': { |
| 85 'abstract': 1, | 104 'abstract': 1, |
| 86 'cflags': [ '-O3', '-m32', '-msse2' ], | 105 'cflags': [ '-O3', '-m32', '-msse2' ], |
| 87 'ldflags': [ '-m32', ], | 106 'ldflags': [ '-m32', ], |
| 88 }, | 107 }, |
| 89 | 108 |
| 90 # MIPS cross-build | 109 # MIPS cross-build |
| 91 'Dart_Linux_xmips_Base': { | 110 'Dart_Linux_xmips_Base': { |
| 92 'abstract': 1, | 111 'abstract': 1, |
| 93 'target_conditions': [ | 112 'target_conditions': [ |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 # The sampling profiler uses the frame pointer to walk the stack. | 152 # The sampling profiler uses the frame pointer to walk the stack. |
| 134 '-fno-omit-frame-pointer', | 153 '-fno-omit-frame-pointer', |
| 135 # Clang on Linux will still omit frame pointers from leaf functions | 154 # Clang on Linux will still omit frame pointers from leaf functions |
| 136 # unless told otherwise: | 155 # unless told otherwise: |
| 137 # '-mno-omit-leaf-frame-pointer', | 156 # '-mno-omit-leaf-frame-pointer', |
| 138 ], | 157 ], |
| 139 }, | 158 }, |
| 140 }, | 159 }, |
| 141 }, | 160 }, |
| 142 } | 161 } |
| OLD | NEW |