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

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

Issue 10800037: New linear scan allocator. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: refactored liveness computation Created 8 years, 5 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
« runtime/vm/locations.cc ('K') | « runtime/vm/locations.cc ('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
srdjan 2012/07/22 15:09:24 Remove this file from the CL.
Vyacheslav Egorov (Google) 2012/07/24 12:26:42 Will be done at the last stage. Unfortunately I co
srdjan 2012/07/24 15:11:19 I have the same issue. Two solutions: a) Create CL
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 }, 8 },
9 'target_defaults': { 9 'target_defaults': {
10 'configurations': { 10 'configurations': {
11 'Dart_Base': { 11 'Dart_Base': {
12 'cflags': [ 12 'cflags': [
13 '-Werror', 13 '-Werror',
14 '<@(common_gcc_warning_flags)', 14 '<@(common_gcc_warning_flags)',
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 '-mfpu=vfp', 53 '-mfpu=vfp',
54 '-mfloat-abi=softfp', 54 '-mfloat-abi=softfp',
55 '-fno-strict-overflow', 55 '-fno-strict-overflow',
56 ], 56 ],
57 'ldflags': [ 57 'ldflags': [
58 '-Wl,-rpath=<(arm_cross_libc)/usr/lib', 58 '-Wl,-rpath=<(arm_cross_libc)/usr/lib',
59 ], 59 ],
60 }, 60 },
61 61
62 'Dart_Debug': { 62 'Dart_Debug': {
63 'cflags': [ '-O2' ], 63 'cflags': [ '-O0' ],
64 }, 64 },
65 65
66 'Dart_Release': { 66 'Dart_Release': {
67 'cflags': [ '-O3', ], 67 'cflags': [ '-O3', ],
68 }, 68 },
69 }, 69 },
70 }, 70 },
71 } 71 }
OLDNEW
« runtime/vm/locations.cc ('K') | « runtime/vm/locations.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698