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

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

Issue 16638009: Use gnueabihf for ARM + enabled corelib/isolate/lib/standalone tests on ARM again (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 6 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
« tests/standalone/standalone.status ('K') | « tools/build.py ('k') | 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) 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 'arm_cross_libc%': '/opt/codesourcery/arm-2009q1/arm-none-linux-gnueabi/libc ', 7 'arm_cross_libc%': '/opt/codesourcery/arm-2009q1/arm-none-linux-gnueabi/libc ',
8 'dart_debug_optimization_level%': '2', 8 'dart_debug_optimization_level%': '2',
9 }, 9 },
10 'target_defaults': { 10 'target_defaults': {
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 'ldflags': [ '-m32', ], 44 'ldflags': [ '-m32', ],
45 }, 45 },
46 46
47 'Dart_arm_Base': { 47 'Dart_arm_Base': {
48 'target_conditions': [ 48 'target_conditions': [
49 ['_toolset=="target"', { 49 ['_toolset=="target"', {
50 'cflags': [ 50 'cflags': [
51 '-marm', 51 '-marm',
52 '-march=armv7-a', 52 '-march=armv7-a',
53 '-mfpu=vfp', 53 '-mfpu=vfp',
54 '-mfloat-abi=softfp',
55 '-Wno-psabi', # suppresses va_list warning 54 '-Wno-psabi', # suppresses va_list warning
56 '-fno-strict-overflow', 55 '-fno-strict-overflow',
57 ], 56 ],
58 'ldflags': ['-static'], 57 'ldflags': ['-static'],
59 }], 58 }],
60 ['_toolset=="host"', { 59 ['_toolset=="host"', {
61 'cflags': ['-m32', '-msse2'], 60 'cflags': ['-m32', '-msse2'],
62 'ldflags': ['-m32'], 61 'ldflags': ['-m32'],
63 }]] 62 }]]
64 }, 63 },
(...skipping 24 matching lines...) Expand all
89 '-fno-omit-frame-pointer', 88 '-fno-omit-frame-pointer',
90 ], 89 ],
91 }, 90 },
92 91
93 'Dart_Release': { 92 'Dart_Release': {
94 'cflags': [ '-O3', ], 93 'cflags': [ '-O3', ],
95 }, 94 },
96 }, 95 },
97 }, 96 },
98 } 97 }
OLDNEW
« tests/standalone/standalone.status ('K') | « tools/build.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698