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

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

Issue 221133002: Begins work on ARM64, first assembler test. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: adds files Created 6 years, 8 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
« no previous file with comments | « tools/gyp/configurations.gypi ('k') | tools/testing/dart/test_options.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW
« no previous file with comments | « tools/gyp/configurations.gypi ('k') | tools/testing/dart/test_options.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698