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

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

Issue 15293005: Add '-static' to ldflags when target architecture is ARM. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 | « no previous file | no next file » | 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) 2012, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2012, 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 'common_gcc_warning_flags': [ 7 'common_gcc_warning_flags': [
8 '-Wall', 8 '-Wall',
9 '-Wextra', # Also known as -W. 9 '-Wextra', # Also known as -W.
10 '-Wno-unused-parameter', 10 '-Wno-unused-parameter',
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 'defines': [ 48 'defines': [
49 'TARGET_ARCH_ARM', 49 'TARGET_ARCH_ARM',
50 ] 50 ]
51 }, 51 },
52 52
53 'Dart_arm_Base': { 53 'Dart_arm_Base': {
54 'abstract': 1, 54 'abstract': 1,
55 'defines': [ 55 'defines': [
56 'TARGET_ARCH_ARM', 56 'TARGET_ARCH_ARM',
57 ], 57 ],
58 'target_conditions': [
59 ['_toolset=="target" ', {
60 'ldflags': ['-static'],
zra 2013/05/17 15:56:37 I think we'll only be cross-compiling on Linux for
kustermann 2013/05/17 16:05:33 Good point. I thought people might use ninja on li
61 }]
62 ],
58 }, 63 },
59 64
60 'Dart_simmips_Base': { 65 'Dart_simmips_Base': {
61 'abstract': 1, 66 'abstract': 1,
62 'defines': [ 67 'defines': [
63 'TARGET_ARCH_MIPS', 68 'TARGET_ARCH_MIPS',
64 ] 69 ]
65 }, 70 },
66 71
67 'Dart_mips_Base': { 72 'Dart_mips_Base': {
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 'Debug': { 146 'Debug': {
142 'inherit_from': ['Debug<(dart_target_arch)'] 147 'inherit_from': ['Debug<(dart_target_arch)']
143 }, 148 },
144 149
145 'Release': { 150 'Release': {
146 'inherit_from': ['Release<(dart_target_arch)'] 151 'inherit_from': ['Release<(dart_target_arch)']
147 }, 152 },
148 }, 153 },
149 }, 154 },
150 } 155 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698