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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 'ARM_FLOAT_ABI_HARD', | 48 'ARM_FLOAT_ABI_HARD', |
49 ], | 49 ], |
50 }, | 50 }, |
51 | 51 |
52 'Dart_Linux_arm_Base': { | 52 'Dart_Linux_arm_Base': { |
53 'abstract': 1, | 53 'abstract': 1, |
54 'target_conditions': [ | 54 'target_conditions': [ |
55 ['_toolset=="target"', { | 55 ['_toolset=="target"', { |
56 'cflags': [ | 56 'cflags': [ |
57 '-marm', | 57 '-marm', |
58 '-march=armv7-a', | |
59 '-mfpu=vfp', | 58 '-mfpu=vfp', |
60 '-Wno-psabi', # suppresses va_list warning | 59 '-Wno-psabi', # suppresses va_list warning |
61 '-fno-strict-overflow', | 60 '-fno-strict-overflow', |
62 ], | 61 ], |
63 'defines': [ | 62 'defines': [ |
64 # In build.py, we specify the hf compiler. | 63 # In build.py, we specify the hf compiler. |
65 'ARM_FLOAT_ABI_HARD', | 64 'ARM_FLOAT_ABI_HARD', |
66 ], | 65 ], |
67 }], | 66 }], |
68 ['_toolset=="host"', { | 67 ['_toolset=="host"', { |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 # The sampling profiler uses the frame pointer to walk the stack. | 111 # The sampling profiler uses the frame pointer to walk the stack. |
113 '-fno-omit-frame-pointer', | 112 '-fno-omit-frame-pointer', |
114 # Clang on Linux will still omit frame pointers from leaf functions | 113 # Clang on Linux will still omit frame pointers from leaf functions |
115 # unless told otherwise: | 114 # unless told otherwise: |
116 # '-mno-omit-leaf-frame-pointer', | 115 # '-mno-omit-leaf-frame-pointer', |
117 ], | 116 ], |
118 }, | 117 }, |
119 }, | 118 }, |
120 }, | 119 }, |
121 } | 120 } |
OLD | NEW |