mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Disable thin archives with cef_sandbox builds (fixes #3674)
This commit is contained in:
@ -517,6 +517,12 @@ def GetConfigArgsSandbox(platform, args, is_debug, cpu):
|
||||
# Avoid /LTCG linker warnings and generate smaller lib files.
|
||||
'is_official_build': False,
|
||||
|
||||
# Disable use of thin archives with lld. Thin archives contain just the
|
||||
# symbol table and the path to find the original .o files. They are
|
||||
# generally incompatible with default platform ld/link versions and
|
||||
# shouldn't be distributed due to the external .o file dependencies.
|
||||
'use_thin_archives': False,
|
||||
|
||||
# Enable base target customizations necessary for distribution of the
|
||||
# cef_sandbox static library.
|
||||
'is_cef_sandbox_build': True,
|
||||
|
Reference in New Issue
Block a user