Commit 3188a0d9 authored by Jocelyn Turcotte's avatar Jocelyn Turcotte
Browse files

QtWebEngine should join the Beautiful Stack Trace Club


Configuring Qt with -force-debug-info -no-strip should carry the
needed cflags to ninja through gyp.

Also prevent stripping the library in release with force_debug_info.
qmake will already call strip --strip-unneeded by default when
running make install for release builds so remove that condition
completely from core_module.pro.

Change-Id: Ic31fca5b4365d61161f2500c2de011faa3e19c14
Reviewed-by: default avatarAndras Becsi <andras.becsi@digia.com>
Showing with 6 additions and 3 deletions
......@@ -21,6 +21,4 @@ CONFIG -= bsymbolic_functions
contains(QT_CONFIG, egl): CONFIG += egl
linux {
CONFIG(release, debug|release) | contains(QT_CONFIG, separate_debug_info): QMAKE_POST_LINK="cd $(DESTDIR) && $(STRIP) --strip-unneeded $(TARGET)"
}
linux: contains(QT_CONFIG, separate_debug_info): QMAKE_POST_LINK="cd $(DESTDIR) && $(STRIP) --strip-unneeded $(TARGET)"
......@@ -23,6 +23,11 @@ GYP_CONFIG += disable_glibcxx_debug=1
linux:contains(QT_CONFIG, separate_debug_info): GYP_CONFIG += linux_dump_symbols=1
force_debug_info {
win32: GYP_CONFIG += win_release_extra_cflags=-Zi
else: GYP_CONFIG += release_extra_cflags=-g
}
# Append additional platform options defined in GYP_CONFIG
for (config, GYP_CONFIG): GYP_ARGS += "-D $$config"
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment