Windows: Allow non-component Debug official sandbox builds (see issue #2679)

This commit is contained in:
Marshall Greenblatt 2021-06-11 20:54:30 -04:00
parent 571911730a
commit 2432333f98
1 changed files with 3 additions and 0 deletions

View File

@ -489,6 +489,9 @@ def GetConfigArgsSandbox(platform, args, is_debug, cpu):
# Don't enable -Wmax-tokens in combination with MSVC libc++.
add_args['enable_wmax_tokens'] = False
# Allow non-component Debug builds for the sandbox.
add_args['forbid_non_component_debug_builds'] = False
result = MergeDicts(args, add_args, {
'is_debug': is_debug,
'target_cpu': cpu,