mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Enable iterator debugging (_ITERATOR_DEBUG_LEVEL=2) for official cef_sandbox Debug builds (issue #2592)
This commit is contained in:
@ -443,6 +443,10 @@ def GetConfigArgsSandbox(platform, args, is_debug, cpu):
|
|||||||
'is_official_build': False
|
'is_official_build': False
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if is_debug:
|
||||||
|
# Enable iterator debugging (_ITERATOR_DEBUG_LEVEL=2).
|
||||||
|
add_args['enable_iterator_debugging'] = True
|
||||||
|
|
||||||
result = MergeDicts(args, add_args, {
|
result = MergeDicts(args, add_args, {
|
||||||
'is_debug': is_debug,
|
'is_debug': is_debug,
|
||||||
'target_cpu': cpu,
|
'target_cpu': cpu,
|
||||||
|
Reference in New Issue
Block a user