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

Side by Side Diff: gyp/configurations_make.gypi

Issue 8564035: - Warn about variable length arrays. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/tools/
Patch Set: Created 9 years, 1 month 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) 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 }, 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)',
15 '-Wnon-virtual-dtor', 15 '-Wnon-virtual-dtor',
16 '-Wvla',
16 # TODO(v8-team): Fix V8 build. 17 # TODO(v8-team): Fix V8 build.
17 #'-Woverloaded-virtual', 18 #'-Woverloaded-virtual',
18 '-g', 19 '-g',
19 '-ansi', 20 '-ansi',
20 '-fno-rtti', 21 '-fno-rtti',
21 '-fno-exceptions', 22 '-fno-exceptions',
22 '-fPIC', 23 '-fPIC',
23 '-fvisibility=hidden', 24 '-fvisibility=hidden',
24 '-fvisibility-inlines-hidden', 25 '-fvisibility-inlines-hidden',
25 ], 26 ],
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 'Dart_Debug': { 60 'Dart_Debug': {
60 'cflags': [ '-O0', ], 61 'cflags': [ '-O0', ],
61 }, 62 },
62 63
63 'Dart_Release': { 64 'Dart_Release': {
64 'cflags': [ '-O3', ], 65 'cflags': [ '-O3', ],
65 }, 66 },
66 }, 67 },
67 }, 68 },
68 } 69 }
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