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

Side by Side Diff: build/standalone.gypi

Issue 946283003: [linux] Use _GLIBCXX_DEBUG in Debug builds by default for better checking. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 10 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
« no previous file with comments | « no previous file | build/toolchain.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 }, 170 },
171 'target_defaults': { 171 'target_defaults': {
172 'variables': { 172 'variables': {
173 'v8_code%': '<(v8_code)', 173 'v8_code%': '<(v8_code)',
174 }, 174 },
175 'default_configuration': 'Debug', 175 'default_configuration': 'Debug',
176 'configurations': { 176 'configurations': {
177 'DebugBaseCommon': { 177 'DebugBaseCommon': {
178 'cflags': [ '-g', '-O0' ], 178 'cflags': [ '-g', '-O0' ],
179 'conditions': [ 179 'conditions': [
180 ['(v8_target_arch=="ia32" or v8_target_arch=="x87") and \
181 OS=="linux"', {
182 'defines': [
183 '_GLIBCXX_DEBUG'
184 ],
185 }],
186 [ 'OS=="aix"', { 180 [ 'OS=="aix"', {
187 'cflags': [ '-gxcoff' ], 181 'cflags': [ '-gxcoff' ],
188 }], 182 }],
189 ], 183 ],
190 }, 184 },
191 'Optdebug': { 185 'Optdebug': {
192 'inherit_from': [ 'DebugBaseCommon', 'DebugBase1' ], 186 'inherit_from': [ 'DebugBaseCommon', 'DebugBase1' ],
193 }, 187 },
194 'Debug': { 188 'Debug': {
195 # Xcode insists on this empty entry. 189 # Xcode insists on this empty entry.
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
522 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', { 516 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', {
523 'make_global_settings': [ 517 'make_global_settings': [
524 ['CC_wrapper', '<(gomadir)/gomacc'], 518 ['CC_wrapper', '<(gomadir)/gomacc'],
525 ['CXX_wrapper', '<(gomadir)/gomacc'], 519 ['CXX_wrapper', '<(gomadir)/gomacc'],
526 ['CC.host_wrapper', '<(gomadir)/gomacc'], 520 ['CC.host_wrapper', '<(gomadir)/gomacc'],
527 ['CXX.host_wrapper', '<(gomadir)/gomacc'], 521 ['CXX.host_wrapper', '<(gomadir)/gomacc'],
528 ], 522 ],
529 }], 523 }],
530 ], 524 ],
531 } 525 }
OLDNEW
« no previous file with comments | « no previous file | build/toolchain.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698