From 0cf5966d395f8d0a58dafd5153e5fb8047e4bce0 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Tue, 25 Sep 2018 23:31:07 +0000 Subject: qt5-creator: upgrade to 4.7.1+ botan was replaced with botan2 in: http://code.qt.io/cgit/qt-creator/qt-creator.git/commit/?h=4.7&id=a44fe2e4f03fc18ce9c3d050f71fe369916259b8 lets see if we still need those fixes for botan Signed-off-by: Martin Jansa --- ...t-creator-to-build-on-arm-aarch32-and-aar.patch | 91 ---------------------- .../qt5-creator/0001-Use-correct-path-prefix.patch | 32 ++++++++ .../0002-Link-with-libexecinfo-on-musl.patch | 20 +++++ .../qt5-creator/0002-Use-correct-path-prefix.patch | 32 -------- .../0003-botan-check-for-i386-x86_64.patch | 28 ------- .../0004-Link-with-libexecinfo-on-musl.patch | 20 ----- recipes-qt/qt5/qt5-creator_4.5.1.bb | 84 -------------------- recipes-qt/qt5/qt5-creator_git.bb | 82 +++++++++++++++++++ 8 files changed, 134 insertions(+), 255 deletions(-) delete mode 100644 recipes-qt/qt5/qt5-creator/0001-Fix-Allow-qt-creator-to-build-on-arm-aarch32-and-aar.patch create mode 100644 recipes-qt/qt5/qt5-creator/0001-Use-correct-path-prefix.patch create mode 100644 recipes-qt/qt5/qt5-creator/0002-Link-with-libexecinfo-on-musl.patch delete mode 100644 recipes-qt/qt5/qt5-creator/0002-Use-correct-path-prefix.patch delete mode 100644 recipes-qt/qt5/qt5-creator/0003-botan-check-for-i386-x86_64.patch delete mode 100644 recipes-qt/qt5/qt5-creator/0004-Link-with-libexecinfo-on-musl.patch delete mode 100644 recipes-qt/qt5/qt5-creator_4.5.1.bb create mode 100644 recipes-qt/qt5/qt5-creator_git.bb (limited to 'recipes-qt/qt5') diff --git a/recipes-qt/qt5/qt5-creator/0001-Fix-Allow-qt-creator-to-build-on-arm-aarch32-and-aar.patch b/recipes-qt/qt5/qt5-creator/0001-Fix-Allow-qt-creator-to-build-on-arm-aarch32-and-aar.patch deleted file mode 100644 index ea336360..00000000 --- a/recipes-qt/qt5/qt5-creator/0001-Fix-Allow-qt-creator-to-build-on-arm-aarch32-and-aar.patch +++ /dev/null @@ -1,91 +0,0 @@ -From 231e0cf0c764d3b63cd5ec788ac0ee901b47fc8e Mon Sep 17 00:00:00 2001 -From: Greg Nietsky -Date: Tue, 4 Mar 2014 11:33:40 +0200 -Subject: [PATCH] Fix: Allow qt-creator to build on arm aarch32 and aarch64 - -Botan is imported hardwired for x86 this small patch allows it -too operate on arm other platforms could be added. - -Task-number: QTCREATORBUG-8107 -Change-Id: Iddea28f21c9fa1afd2fdd5d16a44e6c96a516a7a ---- - src/libs/3rdparty/botan/botan.cpp | 16 +++++++++++++++- - src/libs/3rdparty/botan/botan.h | 2 ++ - 2 files changed, 17 insertions(+), 1 deletion(-) - -diff --git a/src/libs/3rdparty/botan/botan.cpp b/src/libs/3rdparty/botan/botan.cpp -index 87736d5fe3..2e950d88bf 100644 ---- a/src/libs/3rdparty/botan/botan.cpp -+++ b/src/libs/3rdparty/botan/botan.cpp -@@ -1101,6 +1101,8 @@ class Montgomery_Exponentiator : public Modular_Exponentiator - - #if (BOTAN_MP_WORD_BITS != 32) - #error The mp_x86_32 module requires that BOTAN_MP_WORD_BITS == 32 -+#elif !defined(BOTAN_TARGET_CPU_IS_X86_FAMILY) -+typedef Botan::u64bit dword; - #endif - - #ifdef Q_OS_UNIX -@@ -1118,6 +1120,7 @@ extern "C" { - */ - inline word word_madd2(word a, word b, word* c) - { -+#if defined(BOTAN_TARGET_CPU_IS_X86_FAMILY) - asm( - ASM("mull %[b]") - ASM("addl %[c],%[a]") -@@ -1127,6 +1130,11 @@ inline word word_madd2(word a, word b, word* c) - : "0"(a), "1"(b), [c]"g"(*c) : "cc"); - - return a; -+#else -+ dword z = (dword)a * b + *c; -+ *c = (word)(z >> BOTAN_MP_WORD_BITS); -+ return (word)z; -+#endif - } - - /* -@@ -1134,6 +1142,7 @@ inline word word_madd2(word a, word b, word* c) - */ - inline word word_madd3(word a, word b, word c, word* d) - { -+#if defined(BOTAN_TARGET_CPU_IS_X86_FAMILY) - asm( - ASM("mull %[b]") - -@@ -1147,6 +1156,11 @@ inline word word_madd3(word a, word b, word c, word* d) - : "0"(a), "1"(b), [c]"g"(c), [d]"g"(*d) : "cc"); - - return a; -+#else -+ dword z = (dword)a * b + c + *d; -+ *d = (word)(z >> BOTAN_MP_WORD_BITS); -+ return (word)z; -+#endif - } - - } -@@ -2315,7 +2329,7 @@ namespace Botan { - - extern "C" { - --#ifdef Q_OS_UNIX -+#if defined(Q_OS_UNIX) && defined(BOTAN_TARGET_CPU_IS_X86_FAMILY) - /* - * Helper Macros for x86 Assembly - */ -diff --git a/src/libs/3rdparty/botan/botan.h b/src/libs/3rdparty/botan/botan.h -index d7b90cc92f..26ca8aca37 100644 ---- a/src/libs/3rdparty/botan/botan.h -+++ b/src/libs/3rdparty/botan/botan.h -@@ -85,7 +85,9 @@ - #endif - - #define BOTAN_TARGET_CPU_IS_LITTLE_ENDIAN -+#if !defined(__arm__) && !defined(__aarch64__) - #define BOTAN_TARGET_CPU_IS_X86_FAMILY -+#endif - #define BOTAN_TARGET_UNALIGNED_MEMORY_ACCESS_OK 1 - - #if defined(BOTAN_TARGET_CPU_IS_LITTLE_ENDIAN) || \ diff --git a/recipes-qt/qt5/qt5-creator/0001-Use-correct-path-prefix.patch b/recipes-qt/qt5/qt5-creator/0001-Use-correct-path-prefix.patch new file mode 100644 index 00000000..c064a9a9 --- /dev/null +++ b/recipes-qt/qt5/qt5-creator/0001-Use-correct-path-prefix.patch @@ -0,0 +1,32 @@ +From 50443809cc261a3f466cdebd3fa2dd4dda6e6a28 Mon Sep 17 00:00:00 2001 +From: Khem Raj +Date: Tue, 25 Sep 2018 23:15:08 +0000 +Subject: [PATCH] Use correct path prefix + +Upstream-Status: Pending + +Signed-off-by: Khem Raj +Signed-off-by: Martin Jansa +--- + share/qtcreator/translations/translations.pro | 8 ++++---- + 1 file changed, 4 insertions(+), 4 deletions(-) + +diff --git a/share/qtcreator/translations/translations.pro b/share/qtcreator/translations/translations.pro +index 0df9762fcc..de09bc47ed 100644 +--- a/share/qtcreator/translations/translations.pro ++++ b/share/qtcreator/translations/translations.pro +@@ -12,10 +12,10 @@ defineReplace(prependAll) { + return($$result) + } + +-XMLPATTERNS = $$shell_path($$[QT_INSTALL_BINS]/xmlpatterns) +-LUPDATE = $$shell_path($$[QT_INSTALL_BINS]/lupdate) -locations relative -no-ui-lines -no-sort +-LRELEASE = $$shell_path($$[QT_INSTALL_BINS]/lrelease) +-LCONVERT = $$shell_path($$[QT_INSTALL_BINS]/lconvert) ++XMLPATTERNS = $$OE_QMAKE_PATH_EXTERNAL_HOST_BINS/xmlpatterns ++LUPDATE = $$OE_QMAKE_PATH_EXTERNAL_HOST_BINS/lupdate -locations relative -no-ui-lines -no-sort ++LRELEASE = $$OE_QMAKE_PATH_EXTERNAL_HOST_BINS/lrelease ++LCONVERT = $$OE_QMAKE_PATH_EXTERNAL_HOST_BINS/lconvert + + wd = $$replace(IDE_SOURCE_TREE, /, $$QMAKE_DIR_SEP) + diff --git a/recipes-qt/qt5/qt5-creator/0002-Link-with-libexecinfo-on-musl.patch b/recipes-qt/qt5/qt5-creator/0002-Link-with-libexecinfo-on-musl.patch new file mode 100644 index 00000000..9b225a57 --- /dev/null +++ b/recipes-qt/qt5/qt5-creator/0002-Link-with-libexecinfo-on-musl.patch @@ -0,0 +1,20 @@ +From 88afa7173c7d0c97e15d9ee9c58e8c0364799bb7 Mon Sep 17 00:00:00 2001 +From: Khem Raj +Date: Tue, 16 Jan 2018 13:26:57 +0000 +Subject: [PATCH] Link with libexecinfo on musl + +Signed-off-by: Khem Raj +Signed-off-by: Martin Jansa +--- + 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 f5a34aa0d5..4a1359dd5c 100644 +--- a/src/plugins/debugger/debugger.pro ++++ b/src/plugins/debugger/debugger.pro +@@ -141,3 +141,4 @@ include(console/console.pri) + include(analyzer/analyzer.pri) + + include(shared/shared.pri) ++LIBS *= -lexecinfo diff --git a/recipes-qt/qt5/qt5-creator/0002-Use-correct-path-prefix.patch b/recipes-qt/qt5/qt5-creator/0002-Use-correct-path-prefix.patch deleted file mode 100644 index 1c589cad..00000000 --- a/recipes-qt/qt5/qt5-creator/0002-Use-correct-path-prefix.patch +++ /dev/null @@ -1,32 +0,0 @@ -From 22ff2f705ee47d41c41a0a39bbda454ce54f9819 Mon Sep 17 00:00:00 2001 -From: Khem Raj -Date: Tue, 25 Sep 2018 23:15:08 +0000 -Subject: [PATCH] Use correct path prefix - -Upstream-Status: Pending - -Signed-off-by: Khem Raj -Signed-off-by: Martin Jansa ---- - share/qtcreator/translations/translations.pro | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -diff --git a/share/qtcreator/translations/translations.pro b/share/qtcreator/translations/translations.pro -index 5f752f2855..87bc3d9cab 100644 ---- a/share/qtcreator/translations/translations.pro -+++ b/share/qtcreator/translations/translations.pro -@@ -12,10 +12,10 @@ defineReplace(prependAll) { - return($$result) - } - --XMLPATTERNS = $$shell_path($$[QT_INSTALL_BINS]/xmlpatterns) --LUPDATE = $$shell_path($$[QT_INSTALL_BINS]/lupdate) -locations relative -no-ui-lines -no-sort --LRELEASE = $$shell_path($$[QT_INSTALL_BINS]/lrelease) --LCONVERT = $$shell_path($$[QT_INSTALL_BINS]/lconvert) -+XMLPATTERNS = $$OE_QMAKE_PATH_EXTERNAL_HOST_BINS/xmlpatterns -+LUPDATE = $$OE_QMAKE_PATH_EXTERNAL_HOST_BINS/lupdate -locations relative -no-ui-lines -no-sort -+LRELEASE = $$OE_QMAKE_PATH_EXTERNAL_HOST_BINS/lrelease -+LCONVERT = $$OE_QMAKE_PATH_EXTERNAL_HOST_BINS/lconvert - - wd = $$replace(IDE_SOURCE_TREE, /, $$QMAKE_DIR_SEP) - diff --git a/recipes-qt/qt5/qt5-creator/0003-botan-check-for-i386-x86_64.patch b/recipes-qt/qt5/qt5-creator/0003-botan-check-for-i386-x86_64.patch deleted file mode 100644 index 32671815..00000000 --- a/recipes-qt/qt5/qt5-creator/0003-botan-check-for-i386-x86_64.patch +++ /dev/null @@ -1,28 +0,0 @@ -From 925868614c475d9e90bff8d9a33525f5d65d907c Mon Sep 17 00:00:00 2001 -From: Khem Raj -Date: Tue, 25 Sep 2018 23:17:42 +0000 -Subject: [PATCH] botan: check for i386 || x86_64 - -Just check for x86 or x86_64 to define X86 based support -This makes sure it compiles for non-x86 platforms - -Upstream-Status: Pending -Signed-off-by: Khem Raj -Signed-off-by: Martin Jansa ---- - src/libs/3rdparty/botan/botan.h | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/libs/3rdparty/botan/botan.h b/src/libs/3rdparty/botan/botan.h -index 26ca8aca37..969405c56e 100644 ---- a/src/libs/3rdparty/botan/botan.h -+++ b/src/libs/3rdparty/botan/botan.h -@@ -85,7 +85,7 @@ - #endif - - #define BOTAN_TARGET_CPU_IS_LITTLE_ENDIAN --#if !defined(__arm__) && !defined(__aarch64__) -+#if defined(__i386__) || defined(__x86_64__) - #define BOTAN_TARGET_CPU_IS_X86_FAMILY - #endif - #define BOTAN_TARGET_UNALIGNED_MEMORY_ACCESS_OK 1 diff --git a/recipes-qt/qt5/qt5-creator/0004-Link-with-libexecinfo-on-musl.patch b/recipes-qt/qt5/qt5-creator/0004-Link-with-libexecinfo-on-musl.patch deleted file mode 100644 index 93938428..00000000 --- a/recipes-qt/qt5/qt5-creator/0004-Link-with-libexecinfo-on-musl.patch +++ /dev/null @@ -1,20 +0,0 @@ -From 9841dfba76dba7812405418049f259802cd06163 Mon Sep 17 00:00:00 2001 -From: Khem Raj -Date: Tue, 16 Jan 2018 13:26:57 +0000 -Subject: [PATCH] Link with libexecinfo on musl - -Signed-off-by: Khem Raj -Signed-off-by: Martin Jansa ---- - 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 f5a34aa0d5..4a1359dd5c 100644 ---- a/src/plugins/debugger/debugger.pro -+++ b/src/plugins/debugger/debugger.pro -@@ -141,3 +141,4 @@ include(console/console.pri) - include(analyzer/analyzer.pri) - - include(shared/shared.pri) -+LIBS *= -lexecinfo diff --git a/recipes-qt/qt5/qt5-creator_4.5.1.bb b/recipes-qt/qt5/qt5-creator_4.5.1.bb deleted file mode 100644 index 6451b334..00000000 --- a/recipes-qt/qt5/qt5-creator_4.5.1.bb +++ /dev/null @@ -1,84 +0,0 @@ -SUMMARY = "Qt Creator is a new cross-platform Qt IDE" - -# Note: -# The toolchain auto detection does not work completely yet. To compile/debug -# open menu 'Tools/Options and select 'Build & Run'. In tab 'Kits' select 'Desktop' -# 'Compiler/Manage...' and add local gcc'. At 'Debugger' select -# 'System GDB at /usr/bin/gdb. - -HOMEPAGE = "https://qt-project.org/" -LICENSE = "GPLv3" -LIC_FILES_CHKSUM = " \ - file://LICENSE.GPL3-EXCEPT;md5=763d8c535a234d9a3fb682c7ecb6c073 \ -" - -inherit qmake5 - -DEPENDS = "qtbase qtscript qtwebkit qtxmlpatterns qtx11extras qtdeclarative qttools qttools-native qtsvg chrpath-replacement-native" -DEPENDS_append_libc-musl = " libexecinfo" - -# Patches from https://github.com/meta-qt5/qtcreator/commits/b4.5.1 -# 4.5.1.meta-qt5.2 -SRC_URI = " \ - http://download.qt.io/official_releases/qtcreator/4.5/${PV}/qt-creator-opensource-src-${PV}.tar.gz \ - file://0001-Fix-Allow-qt-creator-to-build-on-arm-aarch32-and-aar.patch \ - file://0002-Use-correct-path-prefix.patch \ - file://0003-botan-check-for-i386-x86_64.patch \ - file://qtcreator.desktop.in \ -" -SRC_URI_append_libc-musl = " file://0004-Link-with-libexecinfo-on-musl.patch" - -SRC_URI[md5sum] = "bd7fdbcdfa84df1171fb28174353e57f" -SRC_URI[sha256sum] = "5fdfc8f05694e37162f208616627262c9971749d6958d8881d62933b3b53e909" - -S = "${WORKDIR}/qt-creator-opensource-src-${PV}" - -EXTRA_QMAKEVARS_PRE += "IDE_LIBRARY_BASENAME=${baselib}${QT_DIR_NAME}" - -EXTRANATIVEPATH += "chrpath-native" - -do_configure_append() { - # Find native tools - sed -i 's:${STAGING_BINDIR}.*/qdoc:${OE_QMAKE_PATH_EXTERNAL_HOST_BINS}/qdoc:g' ${B}/Makefile -} - -do_install() { - oe_runmake install INSTALL_ROOT=${D}${prefix} - oe_runmake install_inst_qch_docs INSTALL_ROOT=${D}${prefix} - # install desktop and ensure that qt-creator finds qmake - install -d ${D}${datadir}/applications - install -m 0644 ${WORKDIR}/qtcreator.desktop.in ${D}${datadir}/applications/qtcreator.desktop - sed -i 's:@QT5_QMAKE@:${OE_QMAKE_PATH_QT_BINS}:g' ${D}${datadir}/applications/qtcreator.desktop - chrpath --delete ${D}${libexecdir}/qtcreator/qtcreator_process_stub - chrpath --delete ${D}${libexecdir}/qtcreator/qbs_processlauncher - chrpath --delete ${D}${libdir}/${QT_DIR_NAME}/qtcreator/libqbscore.so.* - test -e ${D}${libdir}/${QT_DIR_NAME}/qtcreator/plugins/qmldesigner/libcomponentsplugin.so && chrpath --delete ${D}${libdir}/${QT_DIR_NAME}/qtcreator/plugins/qmldesigner/libcomponentsplugin.so - test -e ${D}${libdir}/${QT_DIR_NAME}/qtcreator/plugins/qmldesigner/libqtquickplugin.so && chrpath --delete ${D}${libdir}/${QT_DIR_NAME}/qtcreator/plugins/qmldesigner/libqtquickplugin.so -} - -FILES_${PN} += " \ - ${datadir}/qtcreator \ - ${datadir}/metainfo \ - ${datadir}/icons \ - ${libdir}${QT_DIR_NAME}/qtcreator \ -" - -FILES_${PN}-dev += " \ - ${libdir}${QT_DIR_NAME}/qtcreator/*${SOLIBSDEV} \ -" - -RDEPENDS_${PN} += "perl python" -RCONFLICTS_${PN} = "qt-creator" - -# To give best user experience out of the box.. -RRECOMMENDS_${PN} += " \ - packagegroup-qt5-toolchain-target \ - binutils \ - ccache \ - make \ - gcc-symlinks g++-symlinks cpp-symlinks \ - gdb \ -" - -# ERROR: qt5-creator-4.5.1-r0 do_package_qa: QA Issue: No GNU_HASH in the elf binary: '/OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/qt5-creator/4.5.1-r0/packages-split/qt5-creator/usr/lib/qt5/qtcreator/libqbscore.so.1.10.1' -INSANE_SKIP_${PN} += "ldflags" diff --git a/recipes-qt/qt5/qt5-creator_git.bb b/recipes-qt/qt5/qt5-creator_git.bb new file mode 100644 index 00000000..482b10d0 --- /dev/null +++ b/recipes-qt/qt5/qt5-creator_git.bb @@ -0,0 +1,82 @@ +SUMMARY = "Qt Creator is a new cross-platform Qt IDE" + +# Note: +# The toolchain auto detection does not work completely yet. To compile/debug +# open menu 'Tools/Options and select 'Build & Run'. In tab 'Kits' select 'Desktop' +# 'Compiler/Manage...' and add local gcc'. At 'Debugger' select +# 'System GDB at /usr/bin/gdb. + +HOMEPAGE = "https://qt-project.org/" +LICENSE = "GPLv3" +LIC_FILES_CHKSUM = " \ + file://LICENSE.GPL3-EXCEPT;md5=763d8c535a234d9a3fb682c7ecb6c073 \ +" + +inherit qmake5 + +DEPENDS = "qtbase qtscript qtwebkit qtxmlpatterns qtx11extras qtdeclarative qttools qttools-native qtsvg chrpath-replacement-native" +DEPENDS_append_libc-musl = " libexecinfo" + +SRCREV = "8768e39d3c8e74e583eca3897cc6de53a99c3dde" +PV = "4.7.1+git${SRCPV}" + +# Patches from https://github.com/meta-qt5/qtcreator/commits/b4.7.1 +# 4.7.1.meta-qt5.1 +SRC_URI = " \ + git://code.qt.io/qt-creator/qt-creator.git;branch=4.7 \ + file://0001-Use-correct-path-prefix.patch \ + file://qtcreator.desktop.in \ +" +SRC_URI_append_libc-musl = " file://0002-Link-with-libexecinfo-on-musl.patch" + +S = "${WORKDIR}/git" + +EXTRA_QMAKEVARS_PRE += "IDE_LIBRARY_BASENAME=${baselib}${QT_DIR_NAME}" + +EXTRANATIVEPATH += "chrpath-native" + +do_configure_append() { + # Find native tools + sed -i 's:${STAGING_BINDIR}.*/qdoc:${OE_QMAKE_PATH_EXTERNAL_HOST_BINS}/qdoc:g' ${B}/Makefile +} + +do_install() { + oe_runmake install INSTALL_ROOT=${D}${prefix} + oe_runmake install_inst_qch_docs INSTALL_ROOT=${D}${prefix} + # install desktop and ensure that qt-creator finds qmake + install -d ${D}${datadir}/applications + install -m 0644 ${WORKDIR}/qtcreator.desktop.in ${D}${datadir}/applications/qtcreator.desktop + sed -i 's:@QT5_QMAKE@:${OE_QMAKE_PATH_QT_BINS}:g' ${D}${datadir}/applications/qtcreator.desktop + chrpath --delete ${D}${libexecdir}/qtcreator/qtcreator_process_stub + chrpath --delete ${D}${libexecdir}/qtcreator/qbs_processlauncher + chrpath --delete ${D}${libdir}/${QT_DIR_NAME}/qtcreator/libqbscore.so.* + test -e ${D}${libdir}/${QT_DIR_NAME}/qtcreator/plugins/qmldesigner/libcomponentsplugin.so && chrpath --delete ${D}${libdir}/${QT_DIR_NAME}/qtcreator/plugins/qmldesigner/libcomponentsplugin.so + test -e ${D}${libdir}/${QT_DIR_NAME}/qtcreator/plugins/qmldesigner/libqtquickplugin.so && chrpath --delete ${D}${libdir}/${QT_DIR_NAME}/qtcreator/plugins/qmldesigner/libqtquickplugin.so +} + +FILES_${PN} += " \ + ${datadir}/qtcreator \ + ${datadir}/metainfo \ + ${datadir}/icons \ + ${libdir}${QT_DIR_NAME}/qtcreator \ +" + +FILES_${PN}-dev += " \ + ${libdir}${QT_DIR_NAME}/qtcreator/*${SOLIBSDEV} \ +" + +RDEPENDS_${PN} += "perl python" +RCONFLICTS_${PN} = "qt-creator" + +# To give best user experience out of the box.. +RRECOMMENDS_${PN} += " \ + packagegroup-qt5-toolchain-target \ + binutils \ + ccache \ + make \ + gcc-symlinks g++-symlinks cpp-symlinks \ + gdb \ +" + +# ERROR: qt5-creator-4.5.1-r0 do_package_qa: QA Issue: No GNU_HASH in the elf binary: '/OE/build/oe-core/tmp-glibc/work/core2-64-oe-linux/qt5-creator/4.5.1-r0/packages-split/qt5-creator/usr/lib/qt5/qtcreator/libqbscore.so.1.10.1' +INSANE_SKIP_${PN} += "ldflags" -- cgit v1.2.3-54-g00ecf