Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(538)

Side by Side Diff: tools/gyp/configurations_make.gypi

Issue 183803024: Adds support for ARMv6. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Added tests. Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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 }
OLDNEW
« runtime/vm/instructions_arm_test.cc ('K') | « runtime/vm/stub_code_arm.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698