mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1246550 - Don't run autobinscope.py with clang-cl; r=glandium
Currently it will fail with errors such as: Insufficient debug information (private symbols are needed) or code from unknown language. The following modules didn't have full symbols: nsBrowserApp.obj AppData.obj (xpcomglue_staticruntime.lib) FileUtils.obj (xpcomglue_staticruntime.lib) nsCRTGlue.obj (xpcomglue_staticruntime.lib) nsXPCOMGlue.obj (xpcomglue_staticruntime.lib) We need to turn this back on when clang-cl grows more debug info support.
This commit is contained in:
parent
6282335c3a
commit
f305c88ab0
@ -27,6 +27,9 @@ endif
|
||||
|
||||
# run the binscope tool to make sure the binary and all libraries
|
||||
# are using all available Windows OS-level security mechanisms
|
||||
# Don't do this in clang-cl since it doesn't support debug information yet.
|
||||
ifndef CLANG_CL
|
||||
check::
|
||||
$(PYTHON) $(srcdir)/autobinscope.py $(DIST)/bin/$(MOZ_APP_NAME)$(BIN_SUFFIX) $(DIST)/crashreporter-symbols/
|
||||
$(PYTHON) $(srcdir)/autobinscope.py $(DIST)/bin/plugin-container.exe $(DIST)/crashreporter-symbols/
|
||||
endif
|
||||
|
Loading…
Reference in New Issue
Block a user