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

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

Issue 9600054: Supress /RTC1 when compiling /O2. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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) 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 'target_defaults': { 6 'target_defaults': {
7 'configurations': { 7 'configurations': {
8 'Dart_Debug': { 8 'Dart_Debug': {
9 'msvs_settings': { 9 'msvs_settings': {
10 'VCCLCompilerTool': { 10 'VCCLCompilerTool': {
11 'Optimization': '2', 11 'Optimization': '2',
12 'BasicRuntimeChecks': '0', # disable /RTC1 when compiling /O2
12 'DebugInformationFormat': '3', 13 'DebugInformationFormat': '3',
13 'ExceptionHandling': '0', 14 'ExceptionHandling': '0',
14 'RuntimeTypeInfo': 'false', 15 'RuntimeTypeInfo': 'false',
15 'OmitFramePointers': 'false', 16 'OmitFramePointers': 'false',
16 }, 17 },
17 'VCLinkerTool': { 18 'VCLinkerTool': {
18 'LinkIncremental': '2', 19 'LinkIncremental': '2',
19 'GenerateDebugInformation': 'true', 20 'GenerateDebugInformation': 'true',
20 'StackReserveSize': '2097152', 21 'StackReserveSize': '2097152',
21 }, 22 },
(...skipping 16 matching lines...) Expand all
38 'LinkIncremental': '1', 39 'LinkIncremental': '1',
39 'OptimizeReferences': '2', 40 'OptimizeReferences': '2',
40 'EnableCOMDATFolding': '2', 41 'EnableCOMDATFolding': '2',
41 'StackReserveSize': '2097152', 42 'StackReserveSize': '2097152',
42 }, 43 },
43 }, 44 },
44 }, 45 },
45 }, 46 },
46 }, 47 },
47 } 48 }
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