Windows: Disable custom libc++ for cef_sandbox build (fixes issue #2677)

This commit is contained in:
Marshall Greenblatt 2019-06-11 18:08:26 +02:00
parent 6546556a14
commit 939e9f40b5
1 changed files with 4 additions and 1 deletions

View File

@ -440,7 +440,10 @@ def GetConfigArgsSandbox(platform, args, is_debug, cpu):
'use_allocator_shim': False,
# Avoid /LTCG linker warnings and generate smaller lib files.
'is_official_build': False
'is_official_build': False,
# Avoid Debug build linker errors caused by custom libc++.
'use_custom_libcxx': False,
}
if is_debug: