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

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

Issue 303443010: Prepares for arm64 cross-build. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 7 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/utils.py » ('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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW
« no previous file with comments | « tools/gyp/configurations.gypi ('k') | tools/utils.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698