qt5-creator: Update musl patch to link qmldesigner with -lexecinfo

Fixes link failures like below

src/plugins/qmldesigner/designercore/exceptions/exception.cpp:116: undefined reference to `backtrace'

Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Khem Raj
2020-01-07 12:45:58 -08:00
committed by Martin Jansa
parent 6e7cc682c2
commit ca2f53f91a

View File

@@ -9,8 +9,6 @@ Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
src/plugins/debugger/debugger.pro | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/plugins/debugger/debugger.pro b/src/plugins/debugger/debugger.pro
index acbf5136b9..159139eb2b 100644
--- a/src/plugins/debugger/debugger.pro
+++ b/src/plugins/debugger/debugger.pro
@@ -139,3 +139,4 @@ include(console/console.pri)
@@ -18,3 +16,14 @@ index acbf5136b9..159139eb2b 100644
include(shared/shared.pri)
+LIBS *= -lexecinfo
--- a/src/plugins/qmldesigner/qmldesignerplugin.pro
+++ b/src/plugins/qmldesigner/qmldesignerplugin.pro
@@ -3,7 +3,7 @@ CONFIG += exceptions
INCLUDEPATH += $$PWD
-unix:!openbsd:!osx: LIBS += -lrt # posix shared memory
+unix:!openbsd:!osx: LIBS += -lexecinfo -lrt # posix shared memory
include(../../qtcreatorplugin.pri)