All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-qt5][PATCH 0/5] qt-creator for target machine
@ 2015-01-27  5:53 Andreas Müller
  2015-01-27  5:53 ` [meta-qt5][PATCH 1/5] qtbase: remove patches required for native(-sdk) only Andreas Müller
                   ` (5 more replies)
  0 siblings, 6 replies; 26+ messages in thread
From: Andreas Müller @ 2015-01-27  5:53 UTC (permalink / raw)
  To: openembedded-devel

These patches were build tested for 5.4.0 with all qt5 recipes I am working on
currently (kf5/hawaii/mauii). Git versions were not yet tested.
On target:

* toolchain was set
* QT5 c++ project was build and debugged

We shall see what Martin's world says - maybe we need a EXCLUDE_FROM_WORLD for
meta-oe's qt-creator (conditional on meta-qt5 included in layer).

Andreas Müller (5):
  qtbase: remove patches required for native(-sdk) only
  qtbase/EXTERNAL_HOST_BINS: split out code only required for
    native-(sdk)
  qtbase: build qmake for target with paths aligned
  qt5-creator: add 3.3.0 of qt-creator
  add gdb append to enable python packageconfig

 recipes-devtools/gdb/gdb_%.bbappend                |   1 +
 recipes-qt/qt5/nativesdk-qtbase.inc                |   1 +
 recipes-qt/qt5/nativesdk-qtbase_git.bb             |   1 +
 ...t-creator-to-build-on-arm-aarch32-and-aar.patch |  94 ++++++++++++++++++
 recipes-qt/qt5/qt5-creator/qtcreator.desktop.in    |  10 ++
 recipes-qt/qt5/qt5-creator_3.3.0.bb                |  87 +++++++++++++++++
 recipes-qt/qt5/qtbase-native.inc                   |   1 +
 recipes-qt/qt5/qtbase.inc                          |  27 +++---
 .../0003-Add-external-hostbindir-option.patch      |  75 ---------------
 ...-build-it-in-configure-but-allow-to-build.patch |  27 ++++--
 ...014-Add-external-hostbindir-option-native.patch | 106 +++++++++++++++++++++
 .../0015-Set-paths-for-target-properly.patch       |  72 ++++++++++++++
 recipes-qt/qt5/qtbase_git.bb                       |   3 +-
 13 files changed, 407 insertions(+), 98 deletions(-)
 create mode 100644 recipes-devtools/gdb/gdb_%.bbappend
 create 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/qtcreator.desktop.in
 create mode 100644 recipes-qt/qt5/qt5-creator_3.3.0.bb
 create mode 100644 recipes-qt/qt5/qtbase/0014-Add-external-hostbindir-option-native.patch
 create mode 100644 recipes-qt/qt5/qtbase/0015-Set-paths-for-target-properly.patch

-- 
1.8.3.1



^ permalink raw reply	[flat|nested] 26+ messages in thread

* [meta-qt5][PATCH 1/5] qtbase: remove patches required for native(-sdk) only
  2015-01-27  5:53 [meta-qt5][PATCH 0/5] qt-creator for target machine Andreas Müller
@ 2015-01-27  5:53 ` Andreas Müller
  2015-02-18 16:09   ` Martin Jansa
  2015-01-27  5:53 ` [meta-qt5][PATCH 2/5] qtbase/EXTERNAL_HOST_BINS: split out code only required for native-(sdk) Andreas Müller
                   ` (4 subsequent siblings)
  5 siblings, 1 reply; 26+ messages in thread
From: Andreas Müller @ 2015-01-27  5:53 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
 recipes-qt/qt5/qtbase.inc    | 2 --
 recipes-qt/qt5/qtbase_git.bb | 2 --
 2 files changed, 4 deletions(-)

diff --git a/recipes-qt/qt5/qtbase.inc b/recipes-qt/qt5/qtbase.inc
index 5b2c08c..a8748ef 100644
--- a/recipes-qt/qt5/qtbase.inc
+++ b/recipes-qt/qt5/qtbase.inc
@@ -5,8 +5,6 @@ SRC_URI += "\
     file://0001-Add-linux-oe-g-platform.patch \
     file://0002-qlibraryinfo-allow-to-set-qt.conf-from-the-outside-u.patch \
     file://0003-Add-external-hostbindir-option.patch \
-    file://0004-configureapp-Prefix-default-LIBDIRS-and-INCDIRS-with.patch \
-    file://0005-qt_module-Fix-pkgconfig-and-libtool-replacements.patch \
     file://0006-Revert-eglfs-Print-the-chosen-config-in-debug-mode.patch \
     file://0007-qeglplatformintegration-Undefine-CursorShape-from-X..patch \
     file://0008-configure-bump-path-length-from-256-to-512-character.patch \
diff --git a/recipes-qt/qt5/qtbase_git.bb b/recipes-qt/qt5/qtbase_git.bb
index f67ea16..611e19a 100644
--- a/recipes-qt/qt5/qtbase_git.bb
+++ b/recipes-qt/qt5/qtbase_git.bb
@@ -10,8 +10,6 @@ SRC_URI += "\
     file://0001-Add-linux-oe-g-platform.patch \
     file://0002-qlibraryinfo-allow-to-set-qt.conf-from-the-outside-u.patch \
     file://0003-Add-external-hostbindir-option.patch \
-    file://0004-configureapp-Prefix-default-LIBDIRS-and-INCDIRS-with.patch \
-    file://0005-qt_module-Fix-pkgconfig-and-libtool-replacements.patch \
     file://0006-Revert-eglfs-Print-the-chosen-config-in-debug-mode.patch \
     file://0007-qeglplatformintegration-Undefine-CursorShape-from-X..patch \
     file://0008-configure-bump-path-length-from-256-to-512-character.patch \
-- 
1.8.3.1



^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [meta-qt5][PATCH 2/5] qtbase/EXTERNAL_HOST_BINS: split out code only required for native-(sdk)
  2015-01-27  5:53 [meta-qt5][PATCH 0/5] qt-creator for target machine Andreas Müller
  2015-01-27  5:53 ` [meta-qt5][PATCH 1/5] qtbase: remove patches required for native(-sdk) only Andreas Müller
@ 2015-01-27  5:53 ` Andreas Müller
  2015-01-27  5:53 ` [meta-qt5][PATCH 3/5] qtbase: build qmake for target with paths aligned Andreas Müller
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 26+ messages in thread
From: Andreas Müller @ 2015-01-27  5:53 UTC (permalink / raw)
  To: openembedded-devel

* code was moved from 0003-Add-external-hostbindir-option.patch to
  0014-Add-external-hostbindir-option-native.patch
* only native(-sdk) versions of qtbase apply
  0014-Add-external-hostbindir-option-native.patch

Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
 recipes-qt/qt5/nativesdk-qtbase.inc                |   1 +
 recipes-qt/qt5/nativesdk-qtbase_git.bb             |   1 +
 recipes-qt/qt5/qtbase-native.inc                   |   1 +
 .../0003-Add-external-hostbindir-option.patch      |  75 ---------------
 ...014-Add-external-hostbindir-option-native.patch | 106 +++++++++++++++++++++
 5 files changed, 109 insertions(+), 75 deletions(-)
 create mode 100644 recipes-qt/qt5/qtbase/0014-Add-external-hostbindir-option-native.patch

diff --git a/recipes-qt/qt5/nativesdk-qtbase.inc b/recipes-qt/qt5/nativesdk-qtbase.inc
index b3eab76..8a0b31a 100644
--- a/recipes-qt/qt5/nativesdk-qtbase.inc
+++ b/recipes-qt/qt5/nativesdk-qtbase.inc
@@ -27,6 +27,7 @@ SRC_URI += "\
 # common for qtbase-native and nativesdk-qtbase
 SRC_URI += " \
     file://0011-Always-build-uic.patch \
+    file://0014-Add-external-hostbindir-option-native.patch \
 "
 
 # specific for nativesdk-qtbase
diff --git a/recipes-qt/qt5/nativesdk-qtbase_git.bb b/recipes-qt/qt5/nativesdk-qtbase_git.bb
index 1e93891..0bfa442 100644
--- a/recipes-qt/qt5/nativesdk-qtbase_git.bb
+++ b/recipes-qt/qt5/nativesdk-qtbase_git.bb
@@ -25,6 +25,7 @@ SRC_URI += "\
 # common for qtbase-native and nativesdk-qtbase
 SRC_URI += " \
     file://0011-Always-build-uic.patch \
+    file://0014-Add-external-hostbindir-option-native.patch \
 "
 
 # specific for nativesdk-qtbase
diff --git a/recipes-qt/qt5/qtbase-native.inc b/recipes-qt/qt5/qtbase-native.inc
index 4023844..6a0191d 100644
--- a/recipes-qt/qt5/qtbase-native.inc
+++ b/recipes-qt/qt5/qtbase-native.inc
@@ -24,6 +24,7 @@ SRC_URI += "\
 # common for qtbase-native and nativesdk-qtbase
 SRC_URI += " \
     file://0011-Always-build-uic.patch \
+    file://0014-Add-external-hostbindir-option-native.patch \
 "
 
 QT_CONF_PATH = "${B}/qt.conf"
diff --git a/recipes-qt/qt5/qtbase/0003-Add-external-hostbindir-option.patch b/recipes-qt/qt5/qtbase/0003-Add-external-hostbindir-option.patch
index c633ea7..87e8f0f 100644
--- a/recipes-qt/qt5/qtbase/0003-Add-external-hostbindir-option.patch
+++ b/recipes-qt/qt5/qtbase/0003-Add-external-hostbindir-option.patch
@@ -27,14 +27,10 @@ Signed-off-by: Jonathan Liu <net147@gmail.com>
  configure                                   | 15 +++++++++++++++
  mkspecs/features/qt_functions.prf           |  6 +++++-
  mkspecs/features/qt_tool.prf                |  4 ++--
- qmake/property.cpp                          |  1 +
  qtbase.pro                                  | 13 ++++++++++---
  src/corelib/Qt5CoreConfigExtras.cmake.in    |  6 +++---
- src/corelib/global/qlibraryinfo.cpp         |  3 ++-
- src/corelib/global/qlibraryinfo.h           |  1 +
  src/dbus/Qt5DBusConfigExtras.cmake.in       |  4 ++--
  src/widgets/Qt5WidgetsConfigExtras.cmake.in |  2 +-
- tools/configure/configureapp.cpp            |  8 ++++++++
  11 files changed, 50 insertions(+), 13 deletions(-)
 
 diff --git a/configure b/configure
@@ -133,18 +129,6 @@ index 1d3e88c..9b26adf 100644
      isEmpty(MODULE):MODULE = $$TARGET
  
      !host_build|!force_bootstrap: MODULE_DEPENDS = $$replace(QT, -private$, _private)
-diff --git a/qmake/property.cpp b/qmake/property.cpp
-index 051e056..50da6ed 100644
---- a/qmake/property.cpp
-+++ b/qmake/property.cpp
-@@ -67,6 +67,7 @@ static const struct {
-     { "QT_HOST_DATA", QLibraryInfo::HostDataPath, true },
-     { "QT_HOST_BINS", QLibraryInfo::HostBinariesPath, true },
-     { "QT_HOST_LIBS", QLibraryInfo::HostLibrariesPath, true },
-+    { "QT_EXTERNAL_HOST_BINS", QLibraryInfo::ExternalHostBinariesPath, true },
-     { "QMAKE_SPEC", QLibraryInfo::HostSpecPath, true },
-     { "QMAKE_XSPEC", QLibraryInfo::TargetSpecPath, true },
- };
 diff --git a/qtbase.pro b/qtbase.pro
 index 6d0de44..ddf7478 100644
 --- a/qtbase.pro
@@ -209,39 +193,6 @@ index 9bda70e..6e3605a 100644
  !!ENDIF
      _qt5_Core_check_file_exists(${imported_location})
  
-diff --git a/src/corelib/global/qlibraryinfo.cpp b/src/corelib/global/qlibraryinfo.cpp
-index d68c51b..7191159 100644
---- a/src/corelib/global/qlibraryinfo.cpp
-+++ b/src/corelib/global/qlibraryinfo.cpp
-@@ -349,7 +349,7 @@ QLibraryInfo::isDebugBuild()
-  */
- 
- static const struct {
--    char key[19], value[13];
-+    char key[21], value[13];
- } qtConfEntries[] = {
-     { "Prefix", "." },
-     { "Documentation", "doc" }, // should be ${Data}/doc
-@@ -375,6 +375,7 @@ static const struct {
-     { "HostBinaries", "bin" },
-     { "HostLibraries", "lib" },
-     { "HostData", "." },
-+    { "ExternalHostBinaries", "" },
-     { "TargetSpec", "" },
-     { "HostSpec", "" },
- #endif
-diff --git a/src/corelib/global/qlibraryinfo.h b/src/corelib/global/qlibraryinfo.h
-index 543c4b3..a02e03a 100644
---- a/src/corelib/global/qlibraryinfo.h
-+++ b/src/corelib/global/qlibraryinfo.h
-@@ -80,6 +80,7 @@ public:
-         HostBinariesPath,
-         HostLibrariesPath,
-         HostDataPath,
-+        ExternalHostBinariesPath,
-         TargetSpecPath,
-         HostSpecPath,
-         LastHostPath = HostSpecPath,
 diff --git a/src/dbus/Qt5DBusConfigExtras.cmake.in b/src/dbus/Qt5DBusConfigExtras.cmake.in
 index 1d94715..301af8f 100644
 --- a/src/dbus/Qt5DBusConfigExtras.cmake.in
@@ -277,32 +228,6 @@ index 99d87e2..5621dc0 100644
  !!ENDIF
      _qt5_Widgets_check_file_exists(${imported_location})
  
-diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp
-index 92422c2..d0a62c8 100644
---- a/tools/configure/configureapp.cpp
-+++ b/tools/configure/configureapp.cpp
-@@ -1191,6 +1191,13 @@ void Configure::parseCmdLine()
-             dictionary[ "QT_EXT_PREFIX" ] = configCmdLine.at(i);
-         }
- 
-+        else if (configCmdLine.at(i) == "-external-hostbindir") {
-+            ++i;
-+            if (i == argCount)
-+                break;
-+            dictionary[ "QT_EXTERNAL_HOST_BINS" ] = configCmdLine.at(i);
-+        }
-+
-         else if (configCmdLine.at(i) == "-make-tool") {
-             ++i;
-             if (i == argCount)
-@@ -3995,6 +4002,7 @@ void Configure::generateQConfigCpp()
-                   << "    \"qt_hbinpath=" << formatPath(dictionary["QT_HOST_BINS"]) << "\"," << endl
-                   << "    \"qt_hlibpath=" << formatPath(dictionary["QT_HOST_LIBS"]) << "\"," << endl
-                   << "    \"qt_hdatpath=" << formatPath(dictionary["QT_HOST_DATA"]) << "\"," << endl
-+                  << "    \"qt_ebinpath=" << formatPath(dictionary["QT_EXTERNAL_HOST_BINS"]) << "\"," << endl
-                   << "    \"qt_targspec=" << targSpec << "\"," << endl
-                   << "    \"qt_hostspec=" << hostSpec << "\"," << endl
-                   << "#endif" << endl
 -- 
 2.1.3
 
diff --git a/recipes-qt/qt5/qtbase/0014-Add-external-hostbindir-option-native.patch b/recipes-qt/qt5/qtbase/0014-Add-external-hostbindir-option-native.patch
new file mode 100644
index 0000000..08a1cbd
--- /dev/null
+++ b/recipes-qt/qt5/qtbase/0014-Add-external-hostbindir-option-native.patch
@@ -0,0 +1,106 @@
+From f2d51e50a7fbdf485696d1b8b2d29e64c729c76b Mon Sep 17 00:00:00 2001
+From: Martin Jansa <Martin.Jansa@gmail.com>
+Date: Sat, 6 Apr 2013 13:15:07 +0200
+Subject: [PATCH 03/11] Add -external-hostbindir option
+
+* when cross-compiling it's sometimes useful to use existing tools from machine
+  (or in OpenEmbedded built with separate native recipe) when building for target
+
+* this way we can skip bootstraping tools we already have
+
+* qt_functions: temporary remove isEmpty check
+* now we assume that every build will provide QT_EXTERNAL_HOST_BINS value
+* isEmpty works correctly only with qmake variables (e.g. $$FOO -
+  isEmpty(FOO)), but doesn't work with system properties like $$[FOO].
+
+* cmake: Use OE_QMAKE_PATH_EXTERNAL_HOST_BINS to determine path to host binaries
+
+Upstream-Status: Pending
+  is a lot better for upstreaming (and it was already sort of approved by
+  Oswald) but in 5.2.0 I've noticed that he added something similar for
+  android builds
+
+Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
+Signed-off-by: Simon Busch <morphis@gravedo.de>
+Signed-off-by: Jonathan Liu <net147@gmail.com>
+---
+ qmake/property.cpp                          |  1 +
+ tools/configure/configureapp.cpp            |  8 ++++++++
+ src/corelib/global/qlibraryinfo.cpp         |  3 ++-
+ src/corelib/global/qlibraryinfo.h           |  1 +
+ 1 files changed, 50 insertions(+), 13 deletions(-)
+
+diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp
+index 92422c2..d0a62c8 100644
+--- a/tools/configure/configureapp.cpp
++++ b/tools/configure/configureapp.cpp
+@@ -1191,6 +1191,13 @@ void Configure::parseCmdLine()
+             dictionary[ "QT_EXT_PREFIX" ] = configCmdLine.at(i);
+         }
+ 
++        else if (configCmdLine.at(i) == "-external-hostbindir") {
++            ++i;
++            if (i == argCount)
++                break;
++            dictionary[ "QT_EXTERNAL_HOST_BINS" ] = configCmdLine.at(i);
++        }
++
+         else if (configCmdLine.at(i) == "-make-tool") {
+             ++i;
+             if (i == argCount)
+@@ -3995,6 +4002,7 @@ void Configure::generateQConfigCpp()
+                   << "    \"qt_hbinpath=" << formatPath(dictionary["QT_HOST_BINS"]) << "\"," << endl
+                   << "    \"qt_hlibpath=" << formatPath(dictionary["QT_HOST_LIBS"]) << "\"," << endl
+                   << "    \"qt_hdatpath=" << formatPath(dictionary["QT_HOST_DATA"]) << "\"," << endl
++                  << "    \"qt_ebinpath=" << formatPath(dictionary["QT_EXTERNAL_HOST_BINS"]) << "\"," << endl
+                   << "    \"qt_targspec=" << targSpec << "\"," << endl
+                   << "    \"qt_hostspec=" << hostSpec << "\"," << endl
+                   << "#endif" << endl
+diff --git a/qmake/property.cpp b/qmake/property.cpp
+index 051e056..50da6ed 100644
+--- a/qmake/property.cpp
++++ b/qmake/property.cpp
+@@ -67,6 +67,7 @@ static const struct {
+     { "QT_HOST_DATA", QLibraryInfo::HostDataPath, true },
+     { "QT_HOST_BINS", QLibraryInfo::HostBinariesPath, true },
+     { "QT_HOST_LIBS", QLibraryInfo::HostLibrariesPath, true },
++    { "QT_EXTERNAL_HOST_BINS", QLibraryInfo::ExternalHostBinariesPath, true },
+     { "QMAKE_SPEC", QLibraryInfo::HostSpecPath, true },
+     { "QMAKE_XSPEC", QLibraryInfo::TargetSpecPath, true },
+ };
+diff --git a/src/corelib/global/qlibraryinfo.cpp b/src/corelib/global/qlibraryinfo.cpp
+index d68c51b..7191159 100644
+--- a/src/corelib/global/qlibraryinfo.cpp
++++ b/src/corelib/global/qlibraryinfo.cpp
+@@ -349,7 +349,7 @@ QLibraryInfo::isDebugBuild()
+  */
+ 
+ static const struct {
+-    char key[19], value[13];
++    char key[21], value[13];
+ } qtConfEntries[] = {
+     { "Prefix", "." },
+     { "Documentation", "doc" }, // should be ${Data}/doc
+@@ -375,6 +375,7 @@ static const struct {
+     { "HostBinaries", "bin" },
+     { "HostLibraries", "lib" },
+     { "HostData", "." },
++    { "ExternalHostBinaries", "" },
+     { "TargetSpec", "" },
+     { "HostSpec", "" },
+ #endif
+diff --git a/src/corelib/global/qlibraryinfo.h b/src/corelib/global/qlibraryinfo.h
+index 543c4b3..a02e03a 100644
+--- a/src/corelib/global/qlibraryinfo.h
++++ b/src/corelib/global/qlibraryinfo.h
+@@ -80,6 +80,7 @@ public:
+         HostBinariesPath,
+         HostLibrariesPath,
+         HostDataPath,
++        ExternalHostBinariesPath,
+         TargetSpecPath,
+         HostSpecPath,
+         LastHostPath = HostSpecPath,
+-- 
+2.1.3
+
-- 
1.8.3.1



^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [meta-qt5][PATCH 3/5] qtbase: build qmake for target with paths aligned
  2015-01-27  5:53 [meta-qt5][PATCH 0/5] qt-creator for target machine Andreas Müller
  2015-01-27  5:53 ` [meta-qt5][PATCH 1/5] qtbase: remove patches required for native(-sdk) only Andreas Müller
  2015-01-27  5:53 ` [meta-qt5][PATCH 2/5] qtbase/EXTERNAL_HOST_BINS: split out code only required for native-(sdk) Andreas Müller
@ 2015-01-27  5:53 ` Andreas Müller
  2015-01-27  5:53 ` [meta-qt5][PATCH 4/5] qt5-creator: add 3.3.0 of qt-creator Andreas Müller
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 26+ messages in thread
From: Andreas Müller @ 2015-01-27  5:53 UTC (permalink / raw)
  To: openembedded-devel

Proper qmake operation was tested with qt5-creator.

Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
 recipes-qt/qt5/qtbase.inc                          | 25 ++++----
 ...-build-it-in-configure-but-allow-to-build.patch | 27 +++++---
 .../0015-Set-paths-for-target-properly.patch       | 72 ++++++++++++++++++++++
 recipes-qt/qt5/qtbase_git.bb                       |  1 +
 4 files changed, 106 insertions(+), 19 deletions(-)
 create mode 100644 recipes-qt/qt5/qtbase/0015-Set-paths-for-target-properly.patch

diff --git a/recipes-qt/qt5/qtbase.inc b/recipes-qt/qt5/qtbase.inc
index a8748ef..cbb8e4f 100644
--- a/recipes-qt/qt5/qtbase.inc
+++ b/recipes-qt/qt5/qtbase.inc
@@ -16,6 +16,7 @@ SRC_URI += "\
 # specific for qtbase
 SRC_URI += "\
     file://0011-qmake-don-t-build-it-in-configure-but-allow-to-build.patch \
+    file://0015-Set-paths-for-target-properly.patch \
 "
 
 DEPENDS += "qtbase-native"
@@ -196,23 +197,23 @@ do_configure() {
 }
 
 do_compile_append() {
-    # Build qmake for the target arch
-    # Disable for now, because doesn't work well with separate ${B}
-    # cp -ra ${S}/qmake ${B}
-    # cd ${B}/qmake
-    # ${OE_QMAKE_QMAKE}
-    # Fix to use headers in ${B}
-    # sed '/INCPATH/s#${S}#${B}#g' -i Makefile
-    # oe_runmake CC="${CC}" CXX="${CXX}"
-    # cd ${B}
+    # copy corelib/3rdparty/qmake sources required by qmake -> ${B}
+    cp -ra ${S}/src/corelib ${B}/src
+    cp -ra ${S}/src/3rdparty ${B}/src
+    cp -ra ${S}/qmake ${B}
+    cp ${S}/.qmake.conf ${B}/qmake
+    cd ${B}/qmake
+    # align qt5 tools source path to ${S}
+    sed -i 's:\.\./tools:${S}/tools:g' qmake.pro
+    ../${OE_QMAKE_QMAKE}
+    oe_runmake CC="${CC}" CXX="${CXX}"
 }
 
 do_install_append() {
+    install -m 0755 ${B}/qmake/bin/qmake ${D}/${bindir}/${QT_DIR_NAME}
+
     ### Fix up the binaries to the right location
     ### TODO: FIX
-    # qemu built on host breaks do_package, remove it here (will be replaces with right qemu when do_compile is fixed
-    # ERROR: objcopy failed with exit code 1 (cmd was 'arm-oe-linux-gnueabi-objcopy' --only-keep-debug '/OE/oe-core/tmp-eglibc/work/armv5te-oe-linux-gnueabi/qtbase/5.0.1-r0.0/package/usr/bin/qmake' '/OE/oe-core/tmp-eglibc/work/armv5te-oe-linux-gnueabi/qtbase/5.0.1-r0.0/package/usr/bin/.debug/qmake')
-    rm -f ${D}/${bindir}/${QT_DIR_NAME}/qmake
     # install fonts manually if they are missing
     if [ ! -d ${D}/${OE_QMAKE_PATH_LIBS}/fonts ]; then
         cp -a ${S}/lib/fonts ${D}/${OE_QMAKE_PATH_LIBS}
diff --git a/recipes-qt/qt5/qtbase/0011-qmake-don-t-build-it-in-configure-but-allow-to-build.patch b/recipes-qt/qt5/qtbase/0011-qmake-don-t-build-it-in-configure-but-allow-to-build.patch
index 21e0987..4d4291c 100644
--- a/recipes-qt/qt5/qtbase/0011-qmake-don-t-build-it-in-configure-but-allow-to-build.patch
+++ b/recipes-qt/qt5/qtbase/0011-qmake-don-t-build-it-in-configure-but-allow-to-build.patch
@@ -14,17 +14,17 @@ Signed-off-by: Yu Ke <ke.yu@intel.com>
 Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
 Signed-off-by: Mikko Levonmaa <mikko.levonmaa@gmail.com>
 Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
----
  configure       | 2 +-
+ qmake/qmake.pri | 3 ++-
  qmake/qmake.pro | 2 ++
- 2 files changed, 3 insertions(+), 1 deletion(-)
+ 3 files changed, 5 insertions(+), 2 deletions(-)
 
 diff --git a/configure b/configure
-index bd43281..5d1b3aa 100755
+index 43be722..39516d2 100755
 --- a/configure
 +++ b/configure
-@@ -3724,7 +3724,7 @@ setBootstrapEvalVariable()
- 
+@@ -3759,7 +3759,7 @@ setBootstrapVariable()
+ }
  
  # build qmake
 -if true; then ###[ '!' -f "$outpath/bin/qmake" ];
@@ -32,15 +32,28 @@ index bd43281..5d1b3aa 100755
      echo "Creating qmake..."
  
      mkdir -p "$outpath/qmake" || exit
+diff --git a/qmake/qmake.pri b/qmake/qmake.pri
+index 57dcbb0..e2c5845 100644
+--- a/qmake/qmake.pri
++++ b/qmake/qmake.pri
+@@ -82,7 +82,8 @@ bootstrap { #Qt code
+         qjsonparser.cpp \
+         qjsonarray.cpp \
+         qjsonobject.cpp \
+-        qjsonvalue.cpp
++        qjsonvalue.cpp \
++        qdebug.cpp
+ 
+    HEADERS+= \
+         qbitarray.h \
 diff --git a/qmake/qmake.pro b/qmake/qmake.pro
 index 89d6ea5..7c605b9 100644
 --- a/qmake/qmake.pro
 +++ b/qmake/qmake.pro
-@@ -8,6 +8,8 @@ CONFIG -= qt
+@@ -8,6 +8,7 @@ CONFIG -= qt
  DEFINES += \
      QT_BUILD_QMAKE \
      PROEVALUATOR_FULL
-+DESTDIR = ../bin/
 +TARGET = qmake
  
  VPATH += \
diff --git a/recipes-qt/qt5/qtbase/0015-Set-paths-for-target-properly.patch b/recipes-qt/qt5/qtbase/0015-Set-paths-for-target-properly.patch
new file mode 100644
index 0000000..28512f0
--- /dev/null
+++ b/recipes-qt/qt5/qtbase/0015-Set-paths-for-target-properly.patch
@@ -0,0 +1,72 @@
+From d84b7386902e024a0cfe5a6689930e5548a60480 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com>
+Date: Thu, 22 Jan 2015 16:09:35 +0100
+Subject: [PATCH] Set paths for target properly
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Upstream-Status: Inappropriate [OE specific]
+
+Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
+---
+ configure | 42 +++++++++++++++++++++---------------------
+ 1 file changed, 21 insertions(+), 21 deletions(-)
+
+diff --git a/configure b/configure
+index 43be722..0e1a64a 100755
+--- a/configure
++++ b/configure
+@@ -3634,28 +3634,27 @@ static const char qt_configure_prefix_path_strs[][512 + 12] = {
+     "qt_xmplpath=$QT_SYSROOT_EXAMPLES",
+     "qt_tstspath=$QT_SYSROOT_TESTS",
+ #else
+-    "qt_prfxpath=$QT_INSTALL_PREFIX",
+-    "qt_docspath=$QT_INSTALL_DOCS",
+-    "qt_hdrspath=$QT_INSTALL_HEADERS",
+-    "qt_libspath=$QT_INSTALL_LIBS",
+-    "qt_lbexpath=$QT_INSTALL_LIBEXECS",
+-    "qt_binspath=$QT_INSTALL_BINS",
+-    "qt_plugpath=$QT_INSTALL_PLUGINS",
+-    "qt_impspath=$QT_INSTALL_IMPORTS",
+-    "qt_qml2path=$QT_INSTALL_QML",
+-    "qt_adatpath=$QT_INSTALL_ARCHDATA",
+-    "qt_datapath=$QT_INSTALL_DATA",
+-    "qt_trnspath=$QT_INSTALL_TRANSLATIONS",
+-    "qt_xmplpath=$QT_INSTALL_EXAMPLES",
+-    "qt_tstspath=$QT_INSTALL_TESTS",
+-    "qt_ssrtpath=$CFG_SYSROOT",
+-    "qt_hpfxpath=$QT_HOST_PREFIX",
+-    "qt_hbinpath=$QT_HOST_BINS",
+-    "qt_hlibpath=$QT_HOST_LIBS",
+-    "qt_hdatpath=$QT_HOST_DATA",
+-    "qt_ebinpath=$QT_EXTERNAL_HOST_BINS",
+-    "qt_targspec=$shortxspec",
+-    "qt_hostspec=$shortspec",
++    "qt_prfxpath=$QT_SYSROOT_PREFIX",
++    "qt_docspath=$QT_SYSROOT_DOCS",
++    "qt_hdrspath=$QT_SYSROOT_HEADERS",
++    "qt_libspath=$QT_SYSROOT_LIBS",
++    "qt_lbexpath=$QT_SYSROOT_LIBEXECS",
++    "qt_binspath=$QT_SYSROOT_BINS",
++    "qt_plugpath=$QT_SYSROOT_PLUGINS",
++    "qt_impspath=$QT_SYSROOT_IMPORTS",
++    "qt_qml2path=$QT_SYSROOT_QML",
++    "qt_adatpath=$QT_SYSROOT_ARCHDATA",
++    "qt_datapath=$QT_SYSROOT_DATA",
++    "qt_trnspath=$QT_SYSROOT_TRANSLATIONS",
++    "qt_xmplpath=$QT_SYSROOT_EXAMPLES",
++    "qt_tstspath=$QT_SYSROOT_TESTS",
++    "qt_ssrtpath=",
++    "qt_hpfxpath=$QT_SYSROOT_PREFIX",
++    "qt_hbinpath=$QT_SYSROOT_BINS",
++    "qt_hlibpath=$QT_SYSROOT_LIBS",
++    "qt_hdatpath=$QT_SYSROOT_LIBS/qt5",
++    "qt_targspec=linux-g++",
++    "qt_hostspec=linux-g++",
+ #endif
+ };
+ static const char qt_configure_settings_path_str[256 + 12] = "qt_stngpath=$QT_INSTALL_SETTINGS";
+-- 
+1.8.3.1
+
diff --git a/recipes-qt/qt5/qtbase_git.bb b/recipes-qt/qt5/qtbase_git.bb
index 611e19a..0424bc2 100644
--- a/recipes-qt/qt5/qtbase_git.bb
+++ b/recipes-qt/qt5/qtbase_git.bb
@@ -20,6 +20,7 @@ SRC_URI += "\
 # specific for qtbase
 SRC_URI += "\
     file://0011-qmake-don-t-build-it-in-configure-but-allow-to-build.patch \
+    file://0015-Set-paths-for-target-properly.patch \
 "
 
 SRCREV = "47326b9c5c38fea39f8539f50f32667d2c391b70"
-- 
1.8.3.1



^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [meta-qt5][PATCH 4/5] qt5-creator: add 3.3.0 of qt-creator
  2015-01-27  5:53 [meta-qt5][PATCH 0/5] qt-creator for target machine Andreas Müller
                   ` (2 preceding siblings ...)
  2015-01-27  5:53 ` [meta-qt5][PATCH 3/5] qtbase: build qmake for target with paths aligned Andreas Müller
@ 2015-01-27  5:53 ` Andreas Müller
  2015-02-05 15:18   ` Raphael Philipe
  2015-02-27  6:50   ` Martin Jansa
  2015-01-27  5:53 ` [meta-qt5][PATCH 5/5] add gdb append to enable python packageconfig Andreas Müller
  2015-01-28 10:51 ` [meta-qt5][PATCH 0/5] qt-creator for target machine Martin Jansa
  5 siblings, 2 replies; 26+ messages in thread
From: Andreas Müller @ 2015-01-27  5:53 UTC (permalink / raw)
  To: openembedded-devel

* this is the first version which dropped qt4 support
* rename recipe to avoid conflicts with meta-oe's qt-creator
* Desktop file was based on [1]

[1] http://pkgs.fedoraproject.org/cgit/qt-creator.git/tree/qtcreator.desktop

Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
 ...t-creator-to-build-on-arm-aarch32-and-aar.patch | 94 ++++++++++++++++++++++
 recipes-qt/qt5/qt5-creator/qtcreator.desktop.in    | 10 +++
 recipes-qt/qt5/qt5-creator_3.3.0.bb                | 87 ++++++++++++++++++++
 3 files changed, 191 insertions(+)
 create 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/qtcreator.desktop.in
 create mode 100644 recipes-qt/qt5/qt5-creator_3.3.0.bb

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
new file mode 100644
index 0000000..3ed8bc4
--- /dev/null
+++ b/recipes-qt/qt5/qt5-creator/0001-Fix-Allow-qt-creator-to-build-on-arm-aarch32-and-aar.patch
@@ -0,0 +1,94 @@
+From 748174788b318c6316e6d41ce323306120223e02 Mon Sep 17 00:00:00 2001
+From: Greg Nietsky <gregory@distrotech.co.za>
+Date: Tue, 4 Mar 2014 11:33:40 +0200
+Subject: [PATCH 1/2] 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 b7a9ddf..c5b9826 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 2981d2c..1c8d828 100644
+--- a/src/libs/3rdparty/botan/botan.h
++++ b/src/libs/3rdparty/botan/botan.h
+@@ -82,7 +82,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) || \
+-- 
+1.8.3.1
+
diff --git a/recipes-qt/qt5/qt5-creator/qtcreator.desktop.in b/recipes-qt/qt5/qt5-creator/qtcreator.desktop.in
new file mode 100644
index 0000000..64f7c6b
--- /dev/null
+++ b/recipes-qt/qt5/qt5-creator/qtcreator.desktop.in
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Type=Application
+Exec=sh -c "PATH=$PATH:@QT5_QMAKE@ qtcreator %F"
+Name=Qt Creator
+GenericName=C++ IDE for developing Qt applications
+X-KDE-StartupNotify=true
+Icon=QtProject-qtcreator
+Terminal=false
+Categories=Development;IDE;Qt;
+MimeType=text/x-c++src;text/x-c++hdr;text/x-xsrc;application/x-designer;application/vnd.nokia.qt.qmakeprofile;application/vnd.nokia.xml.qt.resource;
diff --git a/recipes-qt/qt5/qt5-creator_3.3.0.bb b/recipes-qt/qt5/qt5-creator_3.3.0.bb
new file mode 100644
index 0000000..76f9982
--- /dev/null
+++ b/recipes-qt/qt5/qt5-creator_3.3.0.bb
@@ -0,0 +1,87 @@
+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 = "LGPLv2.1 | GPLv3"
+LIC_FILES_CHKSUM = " \
+    file://LGPL_EXCEPTION.TXT;md5=eb6c371255e1262c55ae9b652a90b528 \
+    file://LICENSE.LGPLv21;md5=243b725d71bb5df4a1e5920b344b86ad \
+    file://LICENSE.LGPLv3;md5=c1939be5579666be947371bc8120425f \
+"
+
+inherit qmake5
+
+DEPENDS = "qtbase qtscript qtwebkit qtxmlpatterns qtx11extras qtdeclarative qttools qttools-native qtsvg"
+
+SRC_URI = " \
+    http://download.qt.io/official_releases/qtcreator/3.3/${PV}/qt-creator-opensource-src-${PV}.tar.gz \
+    file://0001-Fix-Allow-qt-creator-to-build-on-arm-aarch32-and-aar.patch \
+    file://qtcreator.desktop.in \
+"
+SRC_URI[md5sum] = "5e33988908282c779f2e6e4dca2bba3e"
+SRC_URI[sha256sum] = "27a5c8815fab95f959134047f8315686de4de6f99b0bedfd46b5dedae390525a"
+
+S = "${WORKDIR}/qt-creator-opensource-src-${PV}"
+
+EXTRA_QMAKEVARS_PRE += "IDE_LIBRARY_BASENAME=${baselib}/${QT_DIR_NAME}"
+
+do_configure_prepend() {
+    # causes gcc infinite loop with 4.9.x for arm targets similar to
+    # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61033
+    export DO_NOT_BUILD_QMLDESIGNER=1
+}
+
+do_configure_append() {
+    # Find native tools
+    sed -i 's:${STAGING_BINDIR}.*/lrelease:${STAGING_BINDIR_NATIVE}/${QT_DIR_NAME}/lrelease:g' ${B}/share/qtcreator/translations/Makefile
+    sed -i 's:${STAGING_BINDIR}.*/qdoc:${STAGING_BINDIR_NATIVE}/${QT_DIR_NAME}/qdoc:g' ${B}/Makefile
+
+    # see qtbase-native.inc
+    # sed -i 's:QT_INSTALL_DOCS=${docdir}:QT_INSTALL_DOCS=${STAGING_DATADIR_NATIVE}/${QT_DIR_NAME}/doc:g' ${B}/Makefile
+}
+
+do_compile_append() {
+    # build docs
+    #oe_runmake docs_online
+}
+
+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@:${bindir}/${QT_DIR_NAME}:g' ${D}${datadir}/applications/qtcreator.desktop
+}
+
+FILES_${PN} += " \
+    ${datadir}/qtcreator \
+    ${datadir}/icons \
+    ${libdir}/${QT_DIR_NAME}/qtcreator \
+"
+FILES_${PN}-dbg += " \
+    ${libdir}/${QT_DIR_NAME}/qtcreator/.debug \
+    ${libdir}/${QT_DIR_NAME}/qtcreator/plugins/.debug \
+    ${libdir}/${QT_DIR_NAME}/qtcreator/plugins/qbs/plugins/.debug \
+"
+
+FILES_${PN}-dev += " \
+    ${libdir}/${QT_DIR_NAME}/qtcreator/*${SOLIBSDEV} \
+"
+
+RDEPENDS_${PN} += "perl"
+RCONFLICTS_${PN} = "qt-creator"
+
+# To give best user experience out of the box..
+RRECOMMENDS_${PN} += " \
+    packagegroup-qt5-toolchain-target \
+    binutils \
+    ccache \
+    gcc-symlinks \
+    gdb \
+"
-- 
1.8.3.1



^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [meta-qt5][PATCH 5/5] add gdb append to enable python packageconfig
  2015-01-27  5:53 [meta-qt5][PATCH 0/5] qt-creator for target machine Andreas Müller
                   ` (3 preceding siblings ...)
  2015-01-27  5:53 ` [meta-qt5][PATCH 4/5] qt5-creator: add 3.3.0 of qt-creator Andreas Müller
@ 2015-01-27  5:53 ` Andreas Müller
  2015-01-28 10:51 ` [meta-qt5][PATCH 0/5] qt-creator for target machine Martin Jansa
  5 siblings, 0 replies; 26+ messages in thread
From: Andreas Müller @ 2015-01-27  5:53 UTC (permalink / raw)
  To: openembedded-devel

debugging with qt-creator on target requires gdb build with python support

Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
 recipes-devtools/gdb/gdb_%.bbappend | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 recipes-devtools/gdb/gdb_%.bbappend

diff --git a/recipes-devtools/gdb/gdb_%.bbappend b/recipes-devtools/gdb/gdb_%.bbappend
new file mode 100644
index 0000000..41592c4
--- /dev/null
+++ b/recipes-devtools/gdb/gdb_%.bbappend
@@ -0,0 +1 @@
+PACKAGECONFIG ??= "python"
-- 
1.8.3.1



^ permalink raw reply related	[flat|nested] 26+ messages in thread

* Re: [meta-qt5][PATCH 0/5] qt-creator for target machine
  2015-01-27  5:53 [meta-qt5][PATCH 0/5] qt-creator for target machine Andreas Müller
                   ` (4 preceding siblings ...)
  2015-01-27  5:53 ` [meta-qt5][PATCH 5/5] add gdb append to enable python packageconfig Andreas Müller
@ 2015-01-28 10:51 ` Martin Jansa
  2015-01-28 12:13   ` Andreas Müller
  5 siblings, 1 reply; 26+ messages in thread
From: Martin Jansa @ 2015-01-28 10:51 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 3278 bytes --]

On Tue, Jan 27, 2015 at 06:53:48AM +0100, Andreas Müller wrote:
> These patches were build tested for 5.4.0 with all qt5 recipes I am working on
> currently (kf5/hawaii/mauii). Git versions were not yet tested.
> On target:
> 
> * toolchain was set
> * QT5 c++ project was build and debugged
> 
> We shall see what Martin's world says - maybe we need a EXCLUDE_FROM_WORLD for
> meta-oe's qt-creator (conditional on meta-qt5 included in layer).

One of these is causing qtbase_git build failure:

| generators/win32/cesdkhandler.cpp:96: error: undefined reference to 'QDebug::~QDebug()'
| ../src/corelib/io/qdir.cpp:2330: error: undefined reference to 'QDebug::~QDebug()'
| ../src/corelib/io/qdir.cpp:2330: error: undefined reference to 'QDebug::~QDebug()'
| ../src/corelib/io/qdir.cpp:2328: error: undefined reference to 'QDebug::~QDebug()'
| collect2: error: ld returned 1 exit status
| make: *** [bin/qmake] Error 1
| ERROR: oe_runmake failed
| WARNING: exit code 1 from a shell command.
| ERROR: Function failed: do_compile (log file is located at /home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/qtbase/5.4.0+gitAUTOINC+47326b9c5c-r0/temp/log.do_compile.23226)

> Andreas Müller (5):
>   qtbase: remove patches required for native(-sdk) only
>   qtbase/EXTERNAL_HOST_BINS: split out code only required for
>     native-(sdk)
>   qtbase: build qmake for target with paths aligned
>   qt5-creator: add 3.3.0 of qt-creator
>   add gdb append to enable python packageconfig
> 
>  recipes-devtools/gdb/gdb_%.bbappend                |   1 +
>  recipes-qt/qt5/nativesdk-qtbase.inc                |   1 +
>  recipes-qt/qt5/nativesdk-qtbase_git.bb             |   1 +
>  ...t-creator-to-build-on-arm-aarch32-and-aar.patch |  94 ++++++++++++++++++
>  recipes-qt/qt5/qt5-creator/qtcreator.desktop.in    |  10 ++
>  recipes-qt/qt5/qt5-creator_3.3.0.bb                |  87 +++++++++++++++++
>  recipes-qt/qt5/qtbase-native.inc                   |   1 +
>  recipes-qt/qt5/qtbase.inc                          |  27 +++---
>  .../0003-Add-external-hostbindir-option.patch      |  75 ---------------
>  ...-build-it-in-configure-but-allow-to-build.patch |  27 ++++--
>  ...014-Add-external-hostbindir-option-native.patch | 106 +++++++++++++++++++++
>  .../0015-Set-paths-for-target-properly.patch       |  72 ++++++++++++++
>  recipes-qt/qt5/qtbase_git.bb                       |   3 +-
>  13 files changed, 407 insertions(+), 98 deletions(-)
>  create mode 100644 recipes-devtools/gdb/gdb_%.bbappend
>  create 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/qtcreator.desktop.in
>  create mode 100644 recipes-qt/qt5/qt5-creator_3.3.0.bb
>  create mode 100644 recipes-qt/qt5/qtbase/0014-Add-external-hostbindir-option-native.patch
>  create mode 100644 recipes-qt/qt5/qtbase/0015-Set-paths-for-target-properly.patch
> 
> -- 
> 1.8.3.1
> 
> -- 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 188 bytes --]

^ permalink raw reply	[flat|nested] 26+ messages in thread

* Re: [meta-qt5][PATCH 0/5] qt-creator for target machine
  2015-01-28 10:51 ` [meta-qt5][PATCH 0/5] qt-creator for target machine Martin Jansa
@ 2015-01-28 12:13   ` Andreas Müller
  0 siblings, 0 replies; 26+ messages in thread
From: Andreas Müller @ 2015-01-28 12:13 UTC (permalink / raw)
  To: openembedded-devel

On Wed, Jan 28, 2015 at 11:51 AM, Martin Jansa <martin.jansa@gmail.com> wrote:
> On Tue, Jan 27, 2015 at 06:53:48AM +0100, Andreas Müller wrote:
>> These patches were build tested for 5.4.0 with all qt5 recipes I am working on
>> currently (kf5/hawaii/mauii). Git versions were not yet tested.
>> On target:
>>
>> * toolchain was set
>> * QT5 c++ project was build and debugged
>>
>> We shall see what Martin's world says - maybe we need a EXCLUDE_FROM_WORLD for
>> meta-oe's qt-creator (conditional on meta-qt5 included in layer).
>
> One of these is causing qtbase_git build failure:
>
> | generators/win32/cesdkhandler.cpp:96: error: undefined reference to 'QDebug::~QDebug()'
> | ../src/corelib/io/qdir.cpp:2330: error: undefined reference to 'QDebug::~QDebug()'
> | ../src/corelib/io/qdir.cpp:2330: error: undefined reference to 'QDebug::~QDebug()'
> | ../src/corelib/io/qdir.cpp:2328: error: undefined reference to 'QDebug::~QDebug()'
> | collect2: error: ld returned 1 exit status
> | make: *** [bin/qmake] Error 1
> | ERROR: oe_runmake failed
> | WARNING: exit code 1 from a shell command.
> | ERROR: Function failed: do_compile (log file is located at /home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/qtbase/5.4.0+gitAUTOINC+47326b9c5c-r0/temp/log.do_compile.23226)
>
>> Andreas Müller (5):
>>   qtbase: remove patches required for native(-sdk) only
>>   qtbase/EXTERNAL_HOST_BINS: split out code only required for
>>     native-(sdk)
>>   qtbase: build qmake for target with paths aligned
>>   qt5-creator: add 3.3.0 of qt-creator
>>   add gdb append to enable python packageconfig
>>
>>  recipes-devtools/gdb/gdb_%.bbappend                |   1 +
>>  recipes-qt/qt5/nativesdk-qtbase.inc                |   1 +
>>  recipes-qt/qt5/nativesdk-qtbase_git.bb             |   1 +
>>  ...t-creator-to-build-on-arm-aarch32-and-aar.patch |  94 ++++++++++++++++++
>>  recipes-qt/qt5/qt5-creator/qtcreator.desktop.in    |  10 ++
>>  recipes-qt/qt5/qt5-creator_3.3.0.bb                |  87 +++++++++++++++++
>>  recipes-qt/qt5/qtbase-native.inc                   |   1 +
>>  recipes-qt/qt5/qtbase.inc                          |  27 +++---
>>  .../0003-Add-external-hostbindir-option.patch      |  75 ---------------
>>  ...-build-it-in-configure-but-allow-to-build.patch |  27 ++++--
>>  ...014-Add-external-hostbindir-option-native.patch | 106 +++++++++++++++++++++
>>  .../0015-Set-paths-for-target-properly.patch       |  72 ++++++++++++++
>>  recipes-qt/qt5/qtbase_git.bb                       |   3 +-
>>  13 files changed, 407 insertions(+), 98 deletions(-)
>>  create mode 100644 recipes-devtools/gdb/gdb_%.bbappend
>>  create 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/qtcreator.desktop.in
>>  create mode 100644 recipes-qt/qt5/qt5-creator_3.3.0.bb
>>  create mode 100644 recipes-qt/qt5/qtbase/0014-Add-external-hostbindir-option-native.patch
>>  create mode 100644 recipes-qt/qt5/qtbase/0015-Set-paths-for-target-properly.patch
>>
>> --
>> 1.8.3.1
>>
>> --
OK - so I need to take care for git part. I should learn not to expect
good of untested code...

Andreas


^ permalink raw reply	[flat|nested] 26+ messages in thread

* Re: [meta-qt5][PATCH 4/5] qt5-creator: add 3.3.0 of qt-creator
  2015-01-27  5:53 ` [meta-qt5][PATCH 4/5] qt5-creator: add 3.3.0 of qt-creator Andreas Müller
@ 2015-02-05 15:18   ` Raphael Philipe
  2015-02-05 16:11     ` Andreas Müller
  2015-02-27  6:50   ` Martin Jansa
  1 sibling, 1 reply; 26+ messages in thread
From: Raphael Philipe @ 2015-02-05 15:18 UTC (permalink / raw)
  To: openembedded-devel

Hi

I tried your recipe and got a QA error:
ERROR: QA Issue: qt5-creator: The compile log indicates that host
include and/or library paths were used.
         Please check the log
'/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/temp/log.do_compile'
for more information. [compile-host-path]
ERROR: QA run found fatal errors. Please consider fixing them.
ERROR: Function failed: do_package_qa
ERROR: Logfile of failure stored in:
/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/temp/log.do_package_qa.903
ERROR: Task 10 (/home/rapphil/work/fsl-community-bsp/sources/meta-qt5/recipes-qt/qt5/qt5-creator_3.3.0.bb,
do_package_qa) failed with exit code '1'

For instance, this was my build config:

Build Configuration:
BB_VERSION        = "1.25.0"
BUILD_SYS         = "x86_64-linux"
NATIVELSBSTRING   = "Ubuntu-14.04"
TARGET_SYS        = "arm-poky-linux-gnueabi"
MACHINE           = "wandboard-solo"
DISTRO            = "poky"
DISTRO_VERSION    = "1.7"
TUNE_FEATURES     = "arm armv7a vfp neon callconvention-hard cortexa9"
TARGET_FPU        = "vfp-neon"
meta
meta-yocto        = "(nobranch):d8f0011c23a6b8441323974acc70b08c81cfefbd"
meta-oe
meta-multimedia
meta-ruby         = "(nobranch):9c926ef2d463e643fb0dc87f6535a12e35d039ab"
meta-fsl-arm      = "(nobranch):95e0861135ffa5f42828d9419788b3db9946861f"
meta-fsl-arm-extra = "(nobranch):9c3dc2a63f637319d877e8fecba3ed7197f44d43"
meta-fsl-demos    = "(nobranch):2f6972264d194417610a9c43217c8f972da43e48"
meta-qt5          = "master-next:c835fc7acc5e0b9e3da9903f3f59e3ead86c8a8d"

Regards,
Raphael Silva.


On Tue, Jan 27, 2015 at 3:53 AM, Andreas Müller
<schnitzeltony@googlemail.com> wrote:
> * this is the first version which dropped qt4 support
> * rename recipe to avoid conflicts with meta-oe's qt-creator
> * Desktop file was based on [1]
>
> [1] http://pkgs.fedoraproject.org/cgit/qt-creator.git/tree/qtcreator.desktop
>
> Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
> ---
>  ...t-creator-to-build-on-arm-aarch32-and-aar.patch | 94 ++++++++++++++++++++++
>  recipes-qt/qt5/qt5-creator/qtcreator.desktop.in    | 10 +++
>  recipes-qt/qt5/qt5-creator_3.3.0.bb                | 87 ++++++++++++++++++++
>  3 files changed, 191 insertions(+)
>  create 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/qtcreator.desktop.in
>  create mode 100644 recipes-qt/qt5/qt5-creator_3.3.0.bb
>
> 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
> new file mode 100644
> index 0000000..3ed8bc4
> --- /dev/null
> +++ b/recipes-qt/qt5/qt5-creator/0001-Fix-Allow-qt-creator-to-build-on-arm-aarch32-and-aar.patch
> @@ -0,0 +1,94 @@
> +From 748174788b318c6316e6d41ce323306120223e02 Mon Sep 17 00:00:00 2001
> +From: Greg Nietsky <gregory@distrotech.co.za>
> +Date: Tue, 4 Mar 2014 11:33:40 +0200
> +Subject: [PATCH 1/2] 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 b7a9ddf..c5b9826 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 2981d2c..1c8d828 100644
> +--- a/src/libs/3rdparty/botan/botan.h
> ++++ b/src/libs/3rdparty/botan/botan.h
> +@@ -82,7 +82,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) || \
> +--
> +1.8.3.1
> +
> diff --git a/recipes-qt/qt5/qt5-creator/qtcreator.desktop.in b/recipes-qt/qt5/qt5-creator/qtcreator.desktop.in
> new file mode 100644
> index 0000000..64f7c6b
> --- /dev/null
> +++ b/recipes-qt/qt5/qt5-creator/qtcreator.desktop.in
> @@ -0,0 +1,10 @@
> +[Desktop Entry]
> +Type=Application
> +Exec=sh -c "PATH=$PATH:@QT5_QMAKE@ qtcreator %F"
> +Name=Qt Creator
> +GenericName=C++ IDE for developing Qt applications
> +X-KDE-StartupNotify=true
> +Icon=QtProject-qtcreator
> +Terminal=false
> +Categories=Development;IDE;Qt;
> +MimeType=text/x-c++src;text/x-c++hdr;text/x-xsrc;application/x-designer;application/vnd.nokia.qt.qmakeprofile;application/vnd.nokia.xml.qt.resource;
> diff --git a/recipes-qt/qt5/qt5-creator_3.3.0.bb b/recipes-qt/qt5/qt5-creator_3.3.0.bb
> new file mode 100644
> index 0000000..76f9982
> --- /dev/null
> +++ b/recipes-qt/qt5/qt5-creator_3.3.0.bb
> @@ -0,0 +1,87 @@
> +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 = "LGPLv2.1 | GPLv3"
> +LIC_FILES_CHKSUM = " \
> +    file://LGPL_EXCEPTION.TXT;md5=eb6c371255e1262c55ae9b652a90b528 \
> +    file://LICENSE.LGPLv21;md5=243b725d71bb5df4a1e5920b344b86ad \
> +    file://LICENSE.LGPLv3;md5=c1939be5579666be947371bc8120425f \
> +"
> +
> +inherit qmake5
> +
> +DEPENDS = "qtbase qtscript qtwebkit qtxmlpatterns qtx11extras qtdeclarative qttools qttools-native qtsvg"
> +
> +SRC_URI = " \
> +    http://download.qt.io/official_releases/qtcreator/3.3/${PV}/qt-creator-opensource-src-${PV}.tar.gz \
> +    file://0001-Fix-Allow-qt-creator-to-build-on-arm-aarch32-and-aar.patch \
> +    file://qtcreator.desktop.in \
> +"
> +SRC_URI[md5sum] = "5e33988908282c779f2e6e4dca2bba3e"
> +SRC_URI[sha256sum] = "27a5c8815fab95f959134047f8315686de4de6f99b0bedfd46b5dedae390525a"
> +
> +S = "${WORKDIR}/qt-creator-opensource-src-${PV}"
> +
> +EXTRA_QMAKEVARS_PRE += "IDE_LIBRARY_BASENAME=${baselib}/${QT_DIR_NAME}"
> +
> +do_configure_prepend() {
> +    # causes gcc infinite loop with 4.9.x for arm targets similar to
> +    # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61033
> +    export DO_NOT_BUILD_QMLDESIGNER=1
> +}
> +
> +do_configure_append() {
> +    # Find native tools
> +    sed -i 's:${STAGING_BINDIR}.*/lrelease:${STAGING_BINDIR_NATIVE}/${QT_DIR_NAME}/lrelease:g' ${B}/share/qtcreator/translations/Makefile
> +    sed -i 's:${STAGING_BINDIR}.*/qdoc:${STAGING_BINDIR_NATIVE}/${QT_DIR_NAME}/qdoc:g' ${B}/Makefile
> +
> +    # see qtbase-native.inc
> +    # sed -i 's:QT_INSTALL_DOCS=${docdir}:QT_INSTALL_DOCS=${STAGING_DATADIR_NATIVE}/${QT_DIR_NAME}/doc:g' ${B}/Makefile
> +}
> +
> +do_compile_append() {
> +    # build docs
> +    #oe_runmake docs_online
> +}
> +
> +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@:${bindir}/${QT_DIR_NAME}:g' ${D}${datadir}/applications/qtcreator.desktop
> +}
> +
> +FILES_${PN} += " \
> +    ${datadir}/qtcreator \
> +    ${datadir}/icons \
> +    ${libdir}/${QT_DIR_NAME}/qtcreator \
> +"
> +FILES_${PN}-dbg += " \
> +    ${libdir}/${QT_DIR_NAME}/qtcreator/.debug \
> +    ${libdir}/${QT_DIR_NAME}/qtcreator/plugins/.debug \
> +    ${libdir}/${QT_DIR_NAME}/qtcreator/plugins/qbs/plugins/.debug \
> +"
> +
> +FILES_${PN}-dev += " \
> +    ${libdir}/${QT_DIR_NAME}/qtcreator/*${SOLIBSDEV} \
> +"
> +
> +RDEPENDS_${PN} += "perl"
> +RCONFLICTS_${PN} = "qt-creator"
> +
> +# To give best user experience out of the box..
> +RRECOMMENDS_${PN} += " \
> +    packagegroup-qt5-toolchain-target \
> +    binutils \
> +    ccache \
> +    gcc-symlinks \
> +    gdb \
> +"
> --
> 1.8.3.1
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel


^ permalink raw reply	[flat|nested] 26+ messages in thread

* Re: [meta-qt5][PATCH 4/5] qt5-creator: add 3.3.0 of qt-creator
  2015-02-05 15:18   ` Raphael Philipe
@ 2015-02-05 16:11     ` Andreas Müller
  2015-02-05 16:15       ` Andreas Müller
  0 siblings, 1 reply; 26+ messages in thread
From: Andreas Müller @ 2015-02-05 16:11 UTC (permalink / raw)
  To: openembedded-devel

On Thu, Feb 5, 2015 at 4:18 PM, Raphael Philipe <rapphil@gmail.com> wrote:
> Hi
>
> I tried your recipe and got a QA error:
> ERROR: QA Issue: qt5-creator: The compile log indicates that host
> include and/or library paths were used.
>          Please check the log
> '/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/temp/log.do_compile'
> for more information. [compile-host-path]
> ERROR: QA run found fatal errors. Please consider fixing them.
> ERROR: Function failed: do_package_qa
> ERROR: Logfile of failure stored in:
> /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/temp/log.do_package_qa.903
> ERROR: Task 10 (/home/rapphil/work/fsl-community-bsp/sources/meta-qt5/recipes-qt/qt5/qt5-creator_3.3.0.bb,
> do_package_qa) failed with exit code '1'
>
> For instance, this was my build config:
>
> Build Configuration:
> BB_VERSION        = "1.25.0"
> BUILD_SYS         = "x86_64-linux"
> NATIVELSBSTRING   = "Ubuntu-14.04"
> TARGET_SYS        = "arm-poky-linux-gnueabi"
> MACHINE           = "wandboard-solo"
> DISTRO            = "poky"
> DISTRO_VERSION    = "1.7"
> TUNE_FEATURES     = "arm armv7a vfp neon callconvention-hard cortexa9"
> TARGET_FPU        = "vfp-neon"
> meta
> meta-yocto        = "(nobranch):d8f0011c23a6b8441323974acc70b08c81cfefbd"
> meta-oe
> meta-multimedia
> meta-ruby         = "(nobranch):9c926ef2d463e643fb0dc87f6535a12e35d039ab"
> meta-fsl-arm      = "(nobranch):95e0861135ffa5f42828d9419788b3db9946861f"
> meta-fsl-arm-extra = "(nobranch):9c3dc2a63f637319d877e8fecba3ed7197f44d43"
> meta-fsl-demos    = "(nobranch):2f6972264d194417610a9c43217c8f972da43e48"
> meta-qt5          = "master-next:c835fc7acc5e0b9e3da9903f3f59e3ead86c8a8d"
>
> Regards,
> Raphael Silva.
>
>
> On Tue, Jan 27, 2015 at 3:53 AM, Andreas Müller
> <schnitzeltony@googlemail.com> wrote:
>> * this is the first version which dropped qt4 support
>> * rename recipe to avoid conflicts with meta-oe's qt-creator
>> * Desktop file was based on [1]
>>
>> [1] http://pkgs.fedoraproject.org/cgit/qt-creator.git/tree/qtcreator.desktop
>>
>> Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
>> ---
>>  ...t-creator-to-build-on-arm-aarch32-and-aar.patch | 94 ++++++++++++++++++++++
>>  recipes-qt/qt5/qt5-creator/qtcreator.desktop.in    | 10 +++
>>  recipes-qt/qt5/qt5-creator_3.3.0.bb                | 87 ++++++++++++++++++++
>>  3 files changed, 191 insertions(+)
>>  create 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/qtcreator.desktop.in
>>  create mode 100644 recipes-qt/qt5/qt5-creator_3.3.0.bb
>>
>> 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
>> new file mode 100644
>> index 0000000..3ed8bc4
>> --- /dev/null
>> +++ b/recipes-qt/qt5/qt5-creator/0001-Fix-Allow-qt-creator-to-build-on-arm-aarch32-and-aar.patch
>> @@ -0,0 +1,94 @@
>> +From 748174788b318c6316e6d41ce323306120223e02 Mon Sep 17 00:00:00 2001
>> +From: Greg Nietsky <gregory@distrotech.co.za>
>> +Date: Tue, 4 Mar 2014 11:33:40 +0200
>> +Subject: [PATCH 1/2] 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 b7a9ddf..c5b9826 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 2981d2c..1c8d828 100644
>> +--- a/src/libs/3rdparty/botan/botan.h
>> ++++ b/src/libs/3rdparty/botan/botan.h
>> +@@ -82,7 +82,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) || \
>> +--
>> +1.8.3.1
>> +
>> diff --git a/recipes-qt/qt5/qt5-creator/qtcreator.desktop.in b/recipes-qt/qt5/qt5-creator/qtcreator.desktop.in
>> new file mode 100644
>> index 0000000..64f7c6b
>> --- /dev/null
>> +++ b/recipes-qt/qt5/qt5-creator/qtcreator.desktop.in
>> @@ -0,0 +1,10 @@
>> +[Desktop Entry]
>> +Type=Application
>> +Exec=sh -c "PATH=$PATH:@QT5_QMAKE@ qtcreator %F"
>> +Name=Qt Creator
>> +GenericName=C++ IDE for developing Qt applications
>> +X-KDE-StartupNotify=true
>> +Icon=QtProject-qtcreator
>> +Terminal=false
>> +Categories=Development;IDE;Qt;
>> +MimeType=text/x-c++src;text/x-c++hdr;text/x-xsrc;application/x-designer;application/vnd.nokia.qt.qmakeprofile;application/vnd.nokia.xml.qt.resource;
>> diff --git a/recipes-qt/qt5/qt5-creator_3.3.0.bb b/recipes-qt/qt5/qt5-creator_3.3.0.bb
>> new file mode 100644
>> index 0000000..76f9982
>> --- /dev/null
>> +++ b/recipes-qt/qt5/qt5-creator_3.3.0.bb
>> @@ -0,0 +1,87 @@
>> +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 = "LGPLv2.1 | GPLv3"
>> +LIC_FILES_CHKSUM = " \
>> +    file://LGPL_EXCEPTION.TXT;md5=eb6c371255e1262c55ae9b652a90b528 \
>> +    file://LICENSE.LGPLv21;md5=243b725d71bb5df4a1e5920b344b86ad \
>> +    file://LICENSE.LGPLv3;md5=c1939be5579666be947371bc8120425f \
>> +"
>> +
>> +inherit qmake5
>> +
>> +DEPENDS = "qtbase qtscript qtwebkit qtxmlpatterns qtx11extras qtdeclarative qttools qttools-native qtsvg"
>> +
>> +SRC_URI = " \
>> +    http://download.qt.io/official_releases/qtcreator/3.3/${PV}/qt-creator-opensource-src-${PV}.tar.gz \
>> +    file://0001-Fix-Allow-qt-creator-to-build-on-arm-aarch32-and-aar.patch \
>> +    file://qtcreator.desktop.in \
>> +"
>> +SRC_URI[md5sum] = "5e33988908282c779f2e6e4dca2bba3e"
>> +SRC_URI[sha256sum] = "27a5c8815fab95f959134047f8315686de4de6f99b0bedfd46b5dedae390525a"
>> +
>> +S = "${WORKDIR}/qt-creator-opensource-src-${PV}"
>> +
>> +EXTRA_QMAKEVARS_PRE += "IDE_LIBRARY_BASENAME=${baselib}/${QT_DIR_NAME}"
>> +
>> +do_configure_prepend() {
>> +    # causes gcc infinite loop with 4.9.x for arm targets similar to
>> +    # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61033
>> +    export DO_NOT_BUILD_QMLDESIGNER=1
>> +}
>> +
>> +do_configure_append() {
>> +    # Find native tools
>> +    sed -i 's:${STAGING_BINDIR}.*/lrelease:${STAGING_BINDIR_NATIVE}/${QT_DIR_NAME}/lrelease:g' ${B}/share/qtcreator/translations/Makefile
>> +    sed -i 's:${STAGING_BINDIR}.*/qdoc:${STAGING_BINDIR_NATIVE}/${QT_DIR_NAME}/qdoc:g' ${B}/Makefile
>> +
>> +    # see qtbase-native.inc
>> +    # sed -i 's:QT_INSTALL_DOCS=${docdir}:QT_INSTALL_DOCS=${STAGING_DATADIR_NATIVE}/${QT_DIR_NAME}/doc:g' ${B}/Makefile
>> +}
>> +
>> +do_compile_append() {
>> +    # build docs
>> +    #oe_runmake docs_online
>> +}
>> +
>> +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@:${bindir}/${QT_DIR_NAME}:g' ${D}${datadir}/applications/qtcreator.desktop
>> +}
>> +
>> +FILES_${PN} += " \
>> +    ${datadir}/qtcreator \
>> +    ${datadir}/icons \
>> +    ${libdir}/${QT_DIR_NAME}/qtcreator \
>> +"
>> +FILES_${PN}-dbg += " \
>> +    ${libdir}/${QT_DIR_NAME}/qtcreator/.debug \
>> +    ${libdir}/${QT_DIR_NAME}/qtcreator/plugins/.debug \
>> +    ${libdir}/${QT_DIR_NAME}/qtcreator/plugins/qbs/plugins/.debug \
>> +"
>> +
>> +FILES_${PN}-dev += " \
>> +    ${libdir}/${QT_DIR_NAME}/qtcreator/*${SOLIBSDEV} \
>> +"
>> +
>> +RDEPENDS_${PN} += "perl"
>> +RCONFLICTS_${PN} = "qt-creator"
>> +
>> +# To give best user experience out of the box..
>> +RRECOMMENDS_${PN} += " \
>> +    packagegroup-qt5-toolchain-target \
>> +    binutils \
>> +    ccache \
>> +    gcc-symlinks \
>> +    gdb \
>> +"
>> --
>> 1.8.3.1
>>
Can you send me log.do_compile so I can see what the culprit is.

Andreas


^ permalink raw reply	[flat|nested] 26+ messages in thread

* Re: [meta-qt5][PATCH 4/5] qt5-creator: add 3.3.0 of qt-creator
  2015-02-05 16:11     ` Andreas Müller
@ 2015-02-05 16:15       ` Andreas Müller
  2015-02-05 17:22         ` Raphael Philipe
  0 siblings, 1 reply; 26+ messages in thread
From: Andreas Müller @ 2015-02-05 16:15 UTC (permalink / raw)
  To: openembedded-devel

On Thu, Feb 5, 2015 at 5:11 PM, Andreas Müller
<schnitzeltony@googlemail.com> wrote:
Another question: what PACKAGECONFIG are you using for qtbase?

Andreas


^ permalink raw reply	[flat|nested] 26+ messages in thread

* Re: [meta-qt5][PATCH 4/5] qt5-creator: add 3.3.0 of qt-creator
  2015-02-05 16:15       ` Andreas Müller
@ 2015-02-05 17:22         ` Raphael Philipe
  2015-02-05 17:27           ` Otavio Salvador
  2015-02-05 20:34           ` Andreas Müller
  0 siblings, 2 replies; 26+ messages in thread
From: Raphael Philipe @ 2015-02-05 17:22 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 607 bytes --]

In my local.conf I used:

 PACKAGECONFIG_append_pn-qtbase = "accessibility"

Attached you can find the log.do_compile for qt5-creator

On Thu, Feb 5, 2015 at 2:15 PM, Andreas Müller
<schnitzeltony@googlemail.com> wrote:
> On Thu, Feb 5, 2015 at 5:11 PM, Andreas Müller
> <schnitzeltony@googlemail.com> wrote:
> Another question: what PACKAGECONFIG are you using for qtbase?
>
> Andreas
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel

[-- Attachment #2: log.do_configure --]
[-- Type: application/octet-stream, Size: 34358 bytes --]

DEBUG: Executing python function sysroot_cleansstate
DEBUG: Python function sysroot_cleansstate finished
DEBUG: Executing shell function qmake5_base_preconfigure
Previously configured separate build directory detected, cleaning /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build
DEBUG: Shell function qmake5_base_preconfigure finished
DEBUG: Executing shell function do_configure
NOTE: qmake prevar substitution: ' IDE_LIBRARY_BASENAME=lib/qt5'
Info: creating cache file /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/.qmake.cache
Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/src.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src]
 Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/shared/qbs/src/lib/corelib/corelib.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/shared/qbs/src/lib/corelib]
 Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/shared/qbs/src/lib/qtprofilesetup/qtprofilesetup.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/shared/qbs/src/lib/qtprofilesetup]
 Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/shared/qbs/src/app/app.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/shared/qbs/src/app]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/shared/qbs/src/app/qbs/qbs.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/shared/qbs/src/app/qbs]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/shared/qbs/src/app/qbs-setup-toolchains/qbs-setup-toolchains.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/shared/qbs/src/app/qbs-setup-toolchains]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/shared/qbs/src/app/qbs-setup-qt/qbs-setup-qt.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/shared/qbs/src/app/qbs-setup-qt]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/shared/qbs/src/app/config/config.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/shared/qbs/src/app/config]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/shared/qbs/src/app/qbs-qmltypes/qbs-qmltypes.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/shared/qbs/src/app/qbs-qmltypes]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/shared/qbs/src/app/config-ui/config-ui.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/shared/qbs/src/app/config-ui]
 Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/shared/qbs/src/plugins/plugins.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/shared/qbs/src/plugins]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/shared/qbs/src/plugins/scanner/scanner.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/shared/qbs/src/plugins/scanner]
   Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/shared/qbs/src/plugins/scanner/cpp/cpp.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/shared/qbs/src/plugins/scanner/cpp]
   Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/shared/qbs/src/plugins/scanner/qt/qt.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/shared/qbs/src/plugins/scanner/qt]
 Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/shared/qbs/static.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/shared/qbs]
 Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/libs/libs.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/libs]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/libs/aggregation/aggregation.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/libs/aggregation]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/libs/extensionsystem/extensionsystem.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/libs/extensionsystem]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/libs/utils/utils.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/libs/utils]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/libs/languageutils/languageutils.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/libs/languageutils]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/libs/cplusplus/cplusplus.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/libs/cplusplus]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/libs/qmljs/qmljs.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/libs/qmljs]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/libs/qmldebug/qmldebug.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/libs/qmldebug]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/libs/qmleditorwidgets/qmleditorwidgets.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/libs/qmleditorwidgets]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/libs/glsl/glsl.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/libs/glsl]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/libs/ssh/ssh.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/libs/ssh]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/libs/utils/process_stub.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/libs/utils]
 Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/app/app.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/app]
 Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/plugins.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins]
Project WARNING: QmlDesigner plugin has been disabled.
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/coreplugin/coreplugin.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/coreplugin]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/texteditor/texteditor.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/texteditor]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/cppeditor/cppeditor.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/cppeditor]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/bineditor/bineditor.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/bineditor]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/diffeditor/diffeditor.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/diffeditor]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/imageviewer/imageviewer.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/imageviewer]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/bookmarks/bookmarks.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/bookmarks]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/projectexplorer/projectexplorer.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/projectexplorer]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/vcsbase/vcsbase.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/vcsbase]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/perforce/perforce.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/perforce]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/subversion/subversion.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/subversion]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/git/git.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/git]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/cvs/cvs.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/cvs]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/cpptools/cpptools.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/cpptools]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/qtsupport/qtsupport.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/qtsupport]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/qmakeprojectmanager/qmakeprojectmanager.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/qmakeprojectmanager]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/debugger/debugger.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/debugger]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/help/help.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/help]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/cpaster/cpaster.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/cpaster]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/cmakeprojectmanager/cmakeprojectmanager.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/cmakeprojectmanager]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/autotoolsprojectmanager/autotoolsprojectmanager.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/autotoolsprojectmanager]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/fakevim/fakevim.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/fakevim]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/emacskeys/emacskeys.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/emacskeys]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/designer/designer.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/designer]
Project MESSAGE: This project is using private headers and will therefore be tied to this specific Qt module build version.
Project MESSAGE: Running this project against other versions of the Qt modules may crash at any arbitrary point.
Project MESSAGE: This is not a bug, but a result of using Qt internals. You have been warned!
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/resourceeditor/resourceeditor.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/resourceeditor]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/genericprojectmanager/genericprojectmanager.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/genericprojectmanager]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/qmljseditor/qmljseditor.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/qmljseditor]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/qmlprojectmanager/qmlprojectmanager.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/qmlprojectmanager]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/glsleditor/glsleditor.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/glsleditor]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/pythoneditor/pythoneditor.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/pythoneditor]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/mercurial/mercurial.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/mercurial]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/bazaar/bazaar.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/bazaar]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/classview/classview.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/classview]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/tasklist/tasklist.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/tasklist]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/analyzerbase/analyzerbase.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/analyzerbase]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/qmljstools/qmljstools.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/qmljstools]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/macros/macros.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/macros]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/remotelinux/remotelinux.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/remotelinux]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/android/android.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/android]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/valgrind/valgrind.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/valgrind]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/todo/todo.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/todo]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/qnx/qnx.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/qnx]
Project MESSAGE: This project is using private headers and will therefore be tied to this specific Qt module build version.
Project MESSAGE: Running this project against other versions of the Qt modules may crash at any arbitrary point.
Project MESSAGE: This is not a bug, but a result of using Qt internals. You have been warned!
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/clearcase/clearcase.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/clearcase]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/baremetal/baremetal.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/baremetal]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/ios/ios.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/ios]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/beautifier/beautifier.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/beautifier]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/qmakeandroidsupport/qmakeandroidsupport.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/qmakeandroidsupport]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/winrt/winrt.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/winrt]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/qmlprofiler/qmlprofiler.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/qmlprofiler]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/welcome/welcome.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/welcome]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/qbsprojectmanager/qbsprojectmanager.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/qbsprojectmanager]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/helloworld/helloworld.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/helloworld]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/debugger/ptracepreload.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/plugins/debugger]
 Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/tools/tools.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/tools]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/tools/qtpromaker/qtpromaker.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/tools/qtpromaker]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/tools/qmlpuppet/qmlpuppet.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/tools/qmlpuppet]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/plugins/cpaster/frontend/frontend.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/tools/../plugins/cpaster/frontend]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/tools/sdktool/sdktool.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/tools/sdktool]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/tools/valgrindfake/valgrindfake.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/tools/valgrindfake]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/tools/3rdparty/3rdparty.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/tools/3rdparty]
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/tools/qml2puppet/qml2puppet.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/tools/qml2puppet]
   Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/tools/qml2puppet/qml2puppet/qml2puppet.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/tools/qml2puppet/qml2puppet]
Project MESSAGE: This project is using private headers and will therefore be tied to this specific Qt module build version.
Project MESSAGE: Running this project against other versions of the Qt modules may crash at any arbitrary point.
Project MESSAGE: This is not a bug, but a result of using Qt internals. You have been warned!
  Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/src/tools/buildoutputparser/buildoutputparser.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/src/tools/buildoutputparser]
Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/share/share.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/share]
 Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/share/qtcreator/static.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/share/qtcreator]
 Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/share/qtcreator/translations/translations.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/share/qtcreator/translations]
Reading /home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/qt-creator-opensource-src-3.3.0/bin/bin.pro [/home/rapphil/work/fsl-community-bsp/build/tmp/work/cortexa9hf-vfp-neon-poky-linux-gnueabi/qt5-creator/3.3.0-r0/build/bin]
DEBUG: Shell function do_configure finished
DEBUG: Executing python function do_qa_configure
NOTE: Checking autotools environment for common misconfiguration
NOTE: qt5-creator: md5 checksum matched for file://LGPL_EXCEPTION.TXT;md5=eb6c371255e1262c55ae9b652a90b528
NOTE: qt5-creator: md5 checksum matched for file://LICENSE.LGPLv21;md5=243b725d71bb5df4a1e5920b344b86ad
NOTE: qt5-creator: md5 checksum matched for file://LICENSE.LGPLv3;md5=c1939be5579666be947371bc8120425f
DEBUG: Python function do_qa_configure finished
DEBUG: Executing shell function qmake5_base_postconfigure
DEBUG: Shell function qmake5_base_postconfigure finished

^ permalink raw reply	[flat|nested] 26+ messages in thread

* Re: [meta-qt5][PATCH 4/5] qt5-creator: add 3.3.0 of qt-creator
  2015-02-05 17:22         ` Raphael Philipe
@ 2015-02-05 17:27           ` Otavio Salvador
  2015-02-05 20:34           ` Andreas Müller
  1 sibling, 0 replies; 26+ messages in thread
From: Otavio Salvador @ 2015-02-05 17:27 UTC (permalink / raw)
  To: OpenEmbedded Devel List

On Thu, Feb 5, 2015 at 3:22 PM, Raphael Philipe <rapphil@gmail.com> wrote:
> In my local.conf I used:
>
>  PACKAGECONFIG_append_pn-qtbase = "accessibility"

PACKAGECONFIG_append_pn-qtbase = "<space>accessibility"

-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750


^ permalink raw reply	[flat|nested] 26+ messages in thread

* Re: [meta-qt5][PATCH 4/5] qt5-creator: add 3.3.0 of qt-creator
  2015-02-05 17:22         ` Raphael Philipe
  2015-02-05 17:27           ` Otavio Salvador
@ 2015-02-05 20:34           ` Andreas Müller
  2015-02-06  0:27             ` Firstname Lastname
  1 sibling, 1 reply; 26+ messages in thread
From: Andreas Müller @ 2015-02-05 20:34 UTC (permalink / raw)
  To: openembedded-devel

On Thu, Feb 5, 2015 at 6:22 PM, Raphael Philipe <rapphil@gmail.com> wrote:
> In my local.conf I used:
>
>  PACKAGECONFIG_append_pn-qtbase = "accessibility"
>
> Attached you can find the log.do_compile for qt5-creator
You attached log.do_configure :)

Andreas


^ permalink raw reply	[flat|nested] 26+ messages in thread

* Re: [meta-qt5][PATCH 4/5] qt5-creator: add 3.3.0 of qt-creator
  2015-02-05 20:34           ` Andreas Müller
@ 2015-02-06  0:27             ` Firstname Lastname
  2015-02-11 15:10               ` Raphael Philipe
  0 siblings, 1 reply; 26+ messages in thread
From: Firstname Lastname @ 2015-02-06  0:27 UTC (permalink / raw)
  To: openembedded-devel

On Thu, Feb 05, 2015 at 09:34:02PM +0100, Andreas Müller wrote:
> On Thu, Feb 5, 2015 at 6:22 PM, Raphael Philipe <rapphil@gmail.com> wrote:
> > In my local.conf I used:
> >
> >  PACKAGECONFIG_append_pn-qtbase = "accessibility"
> >
> > Attached you can find the log.do_compile for qt5-creator
> You attached log.do_configure :)
My mistake. Here it is: 
https://www.dropbox.com/s/ekuys8g3ud9vet7/log.do_compile.1044.tar.gz?dl=
> 
> Andreas
> -- 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel


^ permalink raw reply	[flat|nested] 26+ messages in thread

* Re: [meta-qt5][PATCH 4/5] qt5-creator: add 3.3.0 of qt-creator
  2015-02-06  0:27             ` Firstname Lastname
@ 2015-02-11 15:10               ` Raphael Philipe
  2015-02-11 16:59                 ` Andreas Müller
  0 siblings, 1 reply; 26+ messages in thread
From: Raphael Philipe @ 2015-02-11 15:10 UTC (permalink / raw)
  To: openembedded-devel

Hi Andreas,
Have you seen my log?


Regards,

On Thu, Feb 5, 2015 at 10:27 PM, Firstname Lastname <rapphil@gmail.com> wrote:
> On Thu, Feb 05, 2015 at 09:34:02PM +0100, Andreas Müller wrote:
>> On Thu, Feb 5, 2015 at 6:22 PM, Raphael Philipe <rapphil@gmail.com> wrote:
>> > In my local.conf I used:
>> >
>> >  PACKAGECONFIG_append_pn-qtbase = "accessibility"
>> >
>> > Attached you can find the log.do_compile for qt5-creator
>> You attached log.do_configure :)
> My mistake. Here it is:
> https://www.dropbox.com/s/ekuys8g3ud9vet7/log.do_compile.1044.tar.gz?dl=
>>
>> Andreas
>> --
>> _______________________________________________
>> Openembedded-devel mailing list
>> Openembedded-devel@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel


^ permalink raw reply	[flat|nested] 26+ messages in thread

* Re: [meta-qt5][PATCH 4/5] qt5-creator: add 3.3.0 of qt-creator
  2015-02-11 15:10               ` Raphael Philipe
@ 2015-02-11 16:59                 ` Andreas Müller
  0 siblings, 0 replies; 26+ messages in thread
From: Andreas Müller @ 2015-02-11 16:59 UTC (permalink / raw)
  To: openembedded-devel

On Wed, Feb 11, 2015 at 4:10 PM, Raphael Philipe <rapphil@gmail.com> wrote:
> Hi Andreas,
> Have you seen my log?
>
>
> Regards,
>
> On Thu, Feb 5, 2015 at 10:27 PM, Firstname Lastname <rapphil@gmail.com> wrote:
>> On Thu, Feb 05, 2015 at 09:34:02PM +0100, Andreas Müller wrote:
>>> On Thu, Feb 5, 2015 at 6:22 PM, Raphael Philipe <rapphil@gmail.com> wrote:
>>> > In my local.conf I used:
>>> >
>>> >  PACKAGECONFIG_append_pn-qtbase = "accessibility"
>>> >
>>> > Attached you can find the log.do_compile for qt5-creator
>>> You attached log.do_configure :)
>> My mistake. Here it is:
>> https://www.dropbox.com/s/ekuys8g3ud9vet7/log.do_compile.1044.tar.gz?dl=
>>>
>>> Andreas
>>> --
I had no time yet - but target qt-creator (and your log) is definitely
on my todo list.

Andreas


^ permalink raw reply	[flat|nested] 26+ messages in thread

* Re: [meta-qt5][PATCH 1/5] qtbase: remove patches required for native(-sdk) only
  2015-01-27  5:53 ` [meta-qt5][PATCH 1/5] qtbase: remove patches required for native(-sdk) only Andreas Müller
@ 2015-02-18 16:09   ` Martin Jansa
  2015-02-18 17:35     ` Andreas Müller
  0 siblings, 1 reply; 26+ messages in thread
From: Martin Jansa @ 2015-02-18 16:09 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2371 bytes --]

On Tue, Jan 27, 2015 at 06:53:49AM +0100, Andreas Müller wrote:
> Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>

Are you sure these are useful only for native(sdk) only?

FYI: I'm updating your patches for latest revision in 5.4 branch, I'll
update them together with 5.4.1 recipes (when 5.4.1 is released).

Regards,

> ---
>  recipes-qt/qt5/qtbase.inc    | 2 --
>  recipes-qt/qt5/qtbase_git.bb | 2 --
>  2 files changed, 4 deletions(-)
> 
> diff --git a/recipes-qt/qt5/qtbase.inc b/recipes-qt/qt5/qtbase.inc
> index 5b2c08c..a8748ef 100644
> --- a/recipes-qt/qt5/qtbase.inc
> +++ b/recipes-qt/qt5/qtbase.inc
> @@ -5,8 +5,6 @@ SRC_URI += "\
>      file://0001-Add-linux-oe-g-platform.patch \
>      file://0002-qlibraryinfo-allow-to-set-qt.conf-from-the-outside-u.patch \
>      file://0003-Add-external-hostbindir-option.patch \
> -    file://0004-configureapp-Prefix-default-LIBDIRS-and-INCDIRS-with.patch \
> -    file://0005-qt_module-Fix-pkgconfig-and-libtool-replacements.patch \
>      file://0006-Revert-eglfs-Print-the-chosen-config-in-debug-mode.patch \
>      file://0007-qeglplatformintegration-Undefine-CursorShape-from-X..patch \
>      file://0008-configure-bump-path-length-from-256-to-512-character.patch \
> diff --git a/recipes-qt/qt5/qtbase_git.bb b/recipes-qt/qt5/qtbase_git.bb
> index f67ea16..611e19a 100644
> --- a/recipes-qt/qt5/qtbase_git.bb
> +++ b/recipes-qt/qt5/qtbase_git.bb
> @@ -10,8 +10,6 @@ SRC_URI += "\
>      file://0001-Add-linux-oe-g-platform.patch \
>      file://0002-qlibraryinfo-allow-to-set-qt.conf-from-the-outside-u.patch \
>      file://0003-Add-external-hostbindir-option.patch \
> -    file://0004-configureapp-Prefix-default-LIBDIRS-and-INCDIRS-with.patch \
> -    file://0005-qt_module-Fix-pkgconfig-and-libtool-replacements.patch \
>      file://0006-Revert-eglfs-Print-the-chosen-config-in-debug-mode.patch \
>      file://0007-qeglplatformintegration-Undefine-CursorShape-from-X..patch \
>      file://0008-configure-bump-path-length-from-256-to-512-character.patch \
> -- 
> 1.8.3.1
> 
> -- 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 188 bytes --]

^ permalink raw reply	[flat|nested] 26+ messages in thread

* Re: [meta-qt5][PATCH 1/5] qtbase: remove patches required for native(-sdk) only
  2015-02-18 16:09   ` Martin Jansa
@ 2015-02-18 17:35     ` Andreas Müller
  2015-02-19 14:47       ` Martin Jansa
  0 siblings, 1 reply; 26+ messages in thread
From: Andreas Müller @ 2015-02-18 17:35 UTC (permalink / raw)
  To: openembedded-devel

On Wed, Feb 18, 2015 at 5:09 PM, Martin Jansa <martin.jansa@gmail.com> wrote:
> On Tue, Jan 27, 2015 at 06:53:49AM +0100, Andreas Müller wrote:
>> Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
>
> Are you sure these are useful only for native(sdk) only?
>
> FYI: I'm updating your patches for latest revision in 5.4 branch, I'll
> update them together with 5.4.1 recipes (when 5.4.1 is released).
>
> Regards,
>
>> ---
>>  recipes-qt/qt5/qtbase.inc    | 2 --
>>  recipes-qt/qt5/qtbase_git.bb | 2 --
>>  2 files changed, 4 deletions(-)
>>
>> diff --git a/recipes-qt/qt5/qtbase.inc b/recipes-qt/qt5/qtbase.inc
>> index 5b2c08c..a8748ef 100644
>> --- a/recipes-qt/qt5/qtbase.inc
>> +++ b/recipes-qt/qt5/qtbase.inc
>> @@ -5,8 +5,6 @@ SRC_URI += "\
>>      file://0001-Add-linux-oe-g-platform.patch \
>>      file://0002-qlibraryinfo-allow-to-set-qt.conf-from-the-outside-u.patch \
>>      file://0003-Add-external-hostbindir-option.patch \
>> -    file://0004-configureapp-Prefix-default-LIBDIRS-and-INCDIRS-with.patch \
>> -    file://0005-qt_module-Fix-pkgconfig-and-libtool-replacements.patch \
>>      file://0006-Revert-eglfs-Print-the-chosen-config-in-debug-mode.patch \
>>      file://0007-qeglplatformintegration-Undefine-CursorShape-from-X..patch \
>>      file://0008-configure-bump-path-length-from-256-to-512-character.patch \
>> diff --git a/recipes-qt/qt5/qtbase_git.bb b/recipes-qt/qt5/qtbase_git.bb
>> index f67ea16..611e19a 100644
>> --- a/recipes-qt/qt5/qtbase_git.bb
>> +++ b/recipes-qt/qt5/qtbase_git.bb
>> @@ -10,8 +10,6 @@ SRC_URI += "\
>>      file://0001-Add-linux-oe-g-platform.patch \
>>      file://0002-qlibraryinfo-allow-to-set-qt.conf-from-the-outside-u.patch \
>>      file://0003-Add-external-hostbindir-option.patch \
>> -    file://0004-configureapp-Prefix-default-LIBDIRS-and-INCDIRS-with.patch \
>> -    file://0005-qt_module-Fix-pkgconfig-and-libtool-replacements.patch \
>>      file://0006-Revert-eglfs-Print-the-chosen-config-in-debug-mode.patch \
>>      file://0007-qeglplatformintegration-Undefine-CursorShape-from-X..patch \
>>      file://0008-configure-bump-path-length-from-256-to-512-character.patch \
>> --
>> 1.8.3.1
>>
>> --
>> _______________________________________________
>> Openembedded-devel mailing list
>> Openembedded-devel@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>
> --
> Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com
>
First of all thanks for doing this: I have these patches on my TODO
but have other issues of higher priorities (ask my boss) to fix.

Answering your question frankly: No I am not 100% sure these patches
can be removed from target build..

* 0004-configureapp-Prefix-default-LIBDIRS-and-INCDIRS-with.patch: If
I don't go wrong here configureapp is the windows-replacement for
configure script -> this patch is not needed AT ALL (except we build
for windows which we usually don't).
* 0005-qt_module-Fix-pkgconfig-and-libtool-replacements.patch:
Intention here was to keep target sysroot clean of host paths - as
this patch was part qt-creator series. Raphael Philipe reported
failures for -L/usr/lib when building qt5-creator I'd suggest to keep
this patch in.

Andreas


^ permalink raw reply	[flat|nested] 26+ messages in thread

* Re: [meta-qt5][PATCH 1/5] qtbase: remove patches required for native(-sdk) only
  2015-02-18 17:35     ` Andreas Müller
@ 2015-02-19 14:47       ` Martin Jansa
  2015-02-19 15:30         ` Andreas Müller
  0 siblings, 1 reply; 26+ messages in thread
From: Martin Jansa @ 2015-02-19 14:47 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 4091 bytes --]

On Wed, Feb 18, 2015 at 06:35:33PM +0100, Andreas Müller wrote:
> On Wed, Feb 18, 2015 at 5:09 PM, Martin Jansa <martin.jansa@gmail.com> wrote:
> > On Tue, Jan 27, 2015 at 06:53:49AM +0100, Andreas Müller wrote:
> >> Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
> >
> > Are you sure these are useful only for native(sdk) only?
> >
> > FYI: I'm updating your patches for latest revision in 5.4 branch, I'll
> > update them together with 5.4.1 recipes (when 5.4.1 is released).
> >
> > Regards,
> >
> >> ---
> >>  recipes-qt/qt5/qtbase.inc    | 2 --
> >>  recipes-qt/qt5/qtbase_git.bb | 2 --
> >>  2 files changed, 4 deletions(-)
> >>
> >> diff --git a/recipes-qt/qt5/qtbase.inc b/recipes-qt/qt5/qtbase.inc
> >> index 5b2c08c..a8748ef 100644
> >> --- a/recipes-qt/qt5/qtbase.inc
> >> +++ b/recipes-qt/qt5/qtbase.inc
> >> @@ -5,8 +5,6 @@ SRC_URI += "\
> >>      file://0001-Add-linux-oe-g-platform.patch \
> >>      file://0002-qlibraryinfo-allow-to-set-qt.conf-from-the-outside-u.patch \
> >>      file://0003-Add-external-hostbindir-option.patch \
> >> -    file://0004-configureapp-Prefix-default-LIBDIRS-and-INCDIRS-with.patch \
> >> -    file://0005-qt_module-Fix-pkgconfig-and-libtool-replacements.patch \
> >>      file://0006-Revert-eglfs-Print-the-chosen-config-in-debug-mode.patch \
> >>      file://0007-qeglplatformintegration-Undefine-CursorShape-from-X..patch \
> >>      file://0008-configure-bump-path-length-from-256-to-512-character.patch \
> >> diff --git a/recipes-qt/qt5/qtbase_git.bb b/recipes-qt/qt5/qtbase_git.bb
> >> index f67ea16..611e19a 100644
> >> --- a/recipes-qt/qt5/qtbase_git.bb
> >> +++ b/recipes-qt/qt5/qtbase_git.bb
> >> @@ -10,8 +10,6 @@ SRC_URI += "\
> >>      file://0001-Add-linux-oe-g-platform.patch \
> >>      file://0002-qlibraryinfo-allow-to-set-qt.conf-from-the-outside-u.patch \
> >>      file://0003-Add-external-hostbindir-option.patch \
> >> -    file://0004-configureapp-Prefix-default-LIBDIRS-and-INCDIRS-with.patch \
> >> -    file://0005-qt_module-Fix-pkgconfig-and-libtool-replacements.patch \
> >>      file://0006-Revert-eglfs-Print-the-chosen-config-in-debug-mode.patch \
> >>      file://0007-qeglplatformintegration-Undefine-CursorShape-from-X..patch \
> >>      file://0008-configure-bump-path-length-from-256-to-512-character.patch \
> >> --
> >> 1.8.3.1
> >>
> >> --
> >> _______________________________________________
> >> Openembedded-devel mailing list
> >> Openembedded-devel@lists.openembedded.org
> >> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> >
> > --
> > Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com
> >
> First of all thanks for doing this: I have these patches on my TODO
> but have other issues of higher priorities (ask my boss) to fix.

In the end the fix was simple..
0011-qmake-don-t-build-it-in-configure-but-allow-to-build.patch
wasn't refreshed in qtbase-git directory, now it builds fine, I'll push
it to master soon.

> Answering your question frankly: No I am not 100% sure these patches
> can be removed from target build..
> 
> * 0004-configureapp-Prefix-default-LIBDIRS-and-INCDIRS-with.patch: If
> I don't go wrong here configureapp is the windows-replacement for
> configure script -> this patch is not needed AT ALL (except we build
> for windows which we usually don't).

Ah right, it was looking a bit different at 5.0.0 version and now after
many rebases it really looks useless, will drop with 5.4.1 (and now in
git recipe).

> * 0005-qt_module-Fix-pkgconfig-and-libtool-replacements.patch:
> Intention here was to keep target sysroot clean of host paths - as
> this patch was part qt-creator series. Raphael Philipe reported
> failures for -L/usr/lib when building qt5-creator I'd suggest to keep
> this patch in.

OK, thanks.

I've refreshed b5.4-shared b5.4-native b5.4-nativesdk b5.4-target
branches at https://github.com/meta-qt5/qtbase this will be used to
refresh patches for 5.4.1 recipes.

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 188 bytes --]

^ permalink raw reply	[flat|nested] 26+ messages in thread

* Re: [meta-qt5][PATCH 1/5] qtbase: remove patches required for native(-sdk) only
  2015-02-19 14:47       ` Martin Jansa
@ 2015-02-19 15:30         ` Andreas Müller
  2015-02-19 16:14           ` Martin Jansa
  0 siblings, 1 reply; 26+ messages in thread
From: Andreas Müller @ 2015-02-19 15:30 UTC (permalink / raw)
  To: openembedded-devel

On Thu, Feb 19, 2015 at 3:47 PM, Martin Jansa <martin.jansa@gmail.com> wrote:
> On Wed, Feb 18, 2015 at 06:35:33PM +0100, Andreas Müller wrote:
>> On Wed, Feb 18, 2015 at 5:09 PM, Martin Jansa <martin.jansa@gmail.com> wrote:
>> > On Tue, Jan 27, 2015 at 06:53:49AM +0100, Andreas Müller wrote:
>> >> Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
>> >
>> > Are you sure these are useful only for native(sdk) only?
>> >
>> > FYI: I'm updating your patches for latest revision in 5.4 branch, I'll
>> > update them together with 5.4.1 recipes (when 5.4.1 is released).
>> >
>> > Regards,
>> >
>> >> ---
>> >>  recipes-qt/qt5/qtbase.inc    | 2 --
>> >>  recipes-qt/qt5/qtbase_git.bb | 2 --
>> >>  2 files changed, 4 deletions(-)
>> >>
>> >> diff --git a/recipes-qt/qt5/qtbase.inc b/recipes-qt/qt5/qtbase.inc
>> >> index 5b2c08c..a8748ef 100644
>> >> --- a/recipes-qt/qt5/qtbase.inc
>> >> +++ b/recipes-qt/qt5/qtbase.inc
>> >> @@ -5,8 +5,6 @@ SRC_URI += "\
>> >>      file://0001-Add-linux-oe-g-platform.patch \
>> >>      file://0002-qlibraryinfo-allow-to-set-qt.conf-from-the-outside-u.patch \
>> >>      file://0003-Add-external-hostbindir-option.patch \
>> >> -    file://0004-configureapp-Prefix-default-LIBDIRS-and-INCDIRS-with.patch \
>> >> -    file://0005-qt_module-Fix-pkgconfig-and-libtool-replacements.patch \
>> >>      file://0006-Revert-eglfs-Print-the-chosen-config-in-debug-mode.patch \
>> >>      file://0007-qeglplatformintegration-Undefine-CursorShape-from-X..patch \
>> >>      file://0008-configure-bump-path-length-from-256-to-512-character.patch \
>> >> diff --git a/recipes-qt/qt5/qtbase_git.bb b/recipes-qt/qt5/qtbase_git.bb
>> >> index f67ea16..611e19a 100644
>> >> --- a/recipes-qt/qt5/qtbase_git.bb
>> >> +++ b/recipes-qt/qt5/qtbase_git.bb
>> >> @@ -10,8 +10,6 @@ SRC_URI += "\
>> >>      file://0001-Add-linux-oe-g-platform.patch \
>> >>      file://0002-qlibraryinfo-allow-to-set-qt.conf-from-the-outside-u.patch \
>> >>      file://0003-Add-external-hostbindir-option.patch \
>> >> -    file://0004-configureapp-Prefix-default-LIBDIRS-and-INCDIRS-with.patch \
>> >> -    file://0005-qt_module-Fix-pkgconfig-and-libtool-replacements.patch \
>> >>      file://0006-Revert-eglfs-Print-the-chosen-config-in-debug-mode.patch \
>> >>      file://0007-qeglplatformintegration-Undefine-CursorShape-from-X..patch \
>> >>      file://0008-configure-bump-path-length-from-256-to-512-character.patch \
>> >> --
>> >> 1.8.3.1
>> >>
>> >> --
>> >> _______________________________________________
>> >> Openembedded-devel mailing list
>> >> Openembedded-devel@lists.openembedded.org
>> >> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>> >
>> > --
>> > Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com
>> >
>> First of all thanks for doing this: I have these patches on my TODO
>> but have other issues of higher priorities (ask my boss) to fix.
>
> In the end the fix was simple..
> 0011-qmake-don-t-build-it-in-configure-but-allow-to-build.patch
> wasn't refreshed in qtbase-git directory, now it builds fine, I'll push
> it to master soon.
>
>> Answering your question frankly: No I am not 100% sure these patches
>> can be removed from target build..
>>
>> * 0004-configureapp-Prefix-default-LIBDIRS-and-INCDIRS-with.patch: If
>> I don't go wrong here configureapp is the windows-replacement for
>> configure script -> this patch is not needed AT ALL (except we build
>> for windows which we usually don't).
>
> Ah right, it was looking a bit different at 5.0.0 version and now after
> many rebases it really looks useless, will drop with 5.4.1 (and now in
> git recipe).
>
>> * 0005-qt_module-Fix-pkgconfig-and-libtool-replacements.patch:
>> Intention here was to keep target sysroot clean of host paths - as
>> this patch was part qt-creator series. Raphael Philipe reported
>> failures for -L/usr/lib when building qt5-creator I'd suggest to keep
>> this patch in.
>
> OK, thanks.
>
> I've refreshed b5.4-shared b5.4-native b5.4-nativesdk b5.4-target
> branches at https://github.com/meta-qt5/qtbase this will be used to
> refresh patches for 5.4.1 recipes.
>
> --
Ehm - I checked at github but I don't really look though the branch
systematics. As 5.4.1 is near and I have tons of KDE/Hawai/LxQt stuff
around for build test: Which branch should I use (qt/git-versions
enabled)?

Andreas


^ permalink raw reply	[flat|nested] 26+ messages in thread

* Re: [meta-qt5][PATCH 1/5] qtbase: remove patches required for native(-sdk) only
  2015-02-19 15:30         ` Andreas Müller
@ 2015-02-19 16:14           ` Martin Jansa
  0 siblings, 0 replies; 26+ messages in thread
From: Martin Jansa @ 2015-02-19 16:14 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 5498 bytes --]

On Thu, Feb 19, 2015 at 04:30:17PM +0100, Andreas Müller wrote:
> On Thu, Feb 19, 2015 at 3:47 PM, Martin Jansa <martin.jansa@gmail.com> wrote:
> > On Wed, Feb 18, 2015 at 06:35:33PM +0100, Andreas Müller wrote:
> >> On Wed, Feb 18, 2015 at 5:09 PM, Martin Jansa <martin.jansa@gmail.com> wrote:
> >> > On Tue, Jan 27, 2015 at 06:53:49AM +0100, Andreas Müller wrote:
> >> >> Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
> >> >
> >> > Are you sure these are useful only for native(sdk) only?
> >> >
> >> > FYI: I'm updating your patches for latest revision in 5.4 branch, I'll
> >> > update them together with 5.4.1 recipes (when 5.4.1 is released).
> >> >
> >> > Regards,
> >> >
> >> >> ---
> >> >>  recipes-qt/qt5/qtbase.inc    | 2 --
> >> >>  recipes-qt/qt5/qtbase_git.bb | 2 --
> >> >>  2 files changed, 4 deletions(-)
> >> >>
> >> >> diff --git a/recipes-qt/qt5/qtbase.inc b/recipes-qt/qt5/qtbase.inc
> >> >> index 5b2c08c..a8748ef 100644
> >> >> --- a/recipes-qt/qt5/qtbase.inc
> >> >> +++ b/recipes-qt/qt5/qtbase.inc
> >> >> @@ -5,8 +5,6 @@ SRC_URI += "\
> >> >>      file://0001-Add-linux-oe-g-platform.patch \
> >> >>      file://0002-qlibraryinfo-allow-to-set-qt.conf-from-the-outside-u.patch \
> >> >>      file://0003-Add-external-hostbindir-option.patch \
> >> >> -    file://0004-configureapp-Prefix-default-LIBDIRS-and-INCDIRS-with.patch \
> >> >> -    file://0005-qt_module-Fix-pkgconfig-and-libtool-replacements.patch \
> >> >>      file://0006-Revert-eglfs-Print-the-chosen-config-in-debug-mode.patch \
> >> >>      file://0007-qeglplatformintegration-Undefine-CursorShape-from-X..patch \
> >> >>      file://0008-configure-bump-path-length-from-256-to-512-character.patch \
> >> >> diff --git a/recipes-qt/qt5/qtbase_git.bb b/recipes-qt/qt5/qtbase_git.bb
> >> >> index f67ea16..611e19a 100644
> >> >> --- a/recipes-qt/qt5/qtbase_git.bb
> >> >> +++ b/recipes-qt/qt5/qtbase_git.bb
> >> >> @@ -10,8 +10,6 @@ SRC_URI += "\
> >> >>      file://0001-Add-linux-oe-g-platform.patch \
> >> >>      file://0002-qlibraryinfo-allow-to-set-qt.conf-from-the-outside-u.patch \
> >> >>      file://0003-Add-external-hostbindir-option.patch \
> >> >> -    file://0004-configureapp-Prefix-default-LIBDIRS-and-INCDIRS-with.patch \
> >> >> -    file://0005-qt_module-Fix-pkgconfig-and-libtool-replacements.patch \
> >> >>      file://0006-Revert-eglfs-Print-the-chosen-config-in-debug-mode.patch \
> >> >>      file://0007-qeglplatformintegration-Undefine-CursorShape-from-X..patch \
> >> >>      file://0008-configure-bump-path-length-from-256-to-512-character.patch \
> >> >> --
> >> >> 1.8.3.1
> >> >>
> >> >> --
> >> >> _______________________________________________
> >> >> Openembedded-devel mailing list
> >> >> Openembedded-devel@lists.openembedded.org
> >> >> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> >> >
> >> > --
> >> > Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com
> >> >
> >> First of all thanks for doing this: I have these patches on my TODO
> >> but have other issues of higher priorities (ask my boss) to fix.
> >
> > In the end the fix was simple..
> > 0011-qmake-don-t-build-it-in-configure-but-allow-to-build.patch
> > wasn't refreshed in qtbase-git directory, now it builds fine, I'll push
> > it to master soon.
> >
> >> Answering your question frankly: No I am not 100% sure these patches
> >> can be removed from target build..
> >>
> >> * 0004-configureapp-Prefix-default-LIBDIRS-and-INCDIRS-with.patch: If
> >> I don't go wrong here configureapp is the windows-replacement for
> >> configure script -> this patch is not needed AT ALL (except we build
> >> for windows which we usually don't).
> >
> > Ah right, it was looking a bit different at 5.0.0 version and now after
> > many rebases it really looks useless, will drop with 5.4.1 (and now in
> > git recipe).
> >
> >> * 0005-qt_module-Fix-pkgconfig-and-libtool-replacements.patch:
> >> Intention here was to keep target sysroot clean of host paths - as
> >> this patch was part qt-creator series. Raphael Philipe reported
> >> failures for -L/usr/lib when building qt5-creator I'd suggest to keep
> >> this patch in.
> >
> > OK, thanks.
> >
> > I've refreshed b5.4-shared b5.4-native b5.4-nativesdk b5.4-target
> > branches at https://github.com/meta-qt5/qtbase this will be used to
> > refresh patches for 5.4.1 recipes.
> >
> > --
> Ehm - I checked at github but I don't really look though the branch
> systematics. As 5.4.1 is near and I have tons of KDE/Hawai/LxQt stuff
> around for build test: Which branch should I use (qt/git-versions
> enabled)?

b5.4 is 5.4 branch from upstream without any modifications (just to remember my base revision)
\
 \
  b5.4-shared (patches shared by target, native, nativesdk qtbase)
  |
  \ b5.4-target (patches only for target qtbase)
  |
  \ b5.4-native (patches shared by native and nativesdk)
     \
      \b5.4-nativesdk (patches only for nativesdk)

so to refresh meta-qt5 patches I use:
git format-patch origin/5.4..b5.4-nativesdk
git format-patch origin/5.4..b5.4-target
mv 00* ~/meta-qt5/recipes-qt/qt5/qtbase-git/

meta-qt5/master-next (and jansa/master) now contain your changes with
qtbase/qtdeclarative upgrade/fix on top.

You just need to set P_V like this:
QT5_VERSION = "5.4.0+git%"
require conf/distro/include/qt5-versions.inc

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 188 bytes --]

^ permalink raw reply	[flat|nested] 26+ messages in thread

* Re: [meta-qt5][PATCH 4/5] qt5-creator: add 3.3.0 of qt-creator
  2015-01-27  5:53 ` [meta-qt5][PATCH 4/5] qt5-creator: add 3.3.0 of qt-creator Andreas Müller
  2015-02-05 15:18   ` Raphael Philipe
@ 2015-02-27  6:50   ` Martin Jansa
  2015-02-27  8:33     ` Andreas Müller
  2015-02-27  8:34     ` Martin Jansa
  1 sibling, 2 replies; 26+ messages in thread
From: Martin Jansa @ 2015-02-27  6:50 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 99336 bytes --]

On Tue, Jan 27, 2015 at 06:53:52AM +0100, Andreas Müller wrote:
> * this is the first version which dropped qt4 support
> * rename recipe to avoid conflicts with meta-oe's qt-creator

It still conflicts with qt-creator in sysroot on couple files, please try to
change it to use different datadir or don't stage datadir in sysroot at all (if
it works without it).

ERROR: The recipe qt5-creator is trying to install files into a shared area when those files already exist. Those files and their manifest location are:
   /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/modules/qbs/common.qbs
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/modules/cpp/windows-msvc.qbs
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/modules/cpp/windows-mingw.qbs
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/modules/cpp/UnixGCC.qbs
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/modules/cpp/osx-gcc.qbs
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/modules/cpp/msvc.js
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/modules/cpp/linux-gcc.qbs
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/modules/cpp/ios-gcc.qbs
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/modules/cpp/genericunix-gcc.qbs
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/modules/cpp/GenericGCC.qbs
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/modules/cpp/gcc.js
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/modules/cpp/DarwinGCC.qbs
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/modules/cpp/CppModule.qbs
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/imports/qbs/Probes/PkgConfigProbe.qbs
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/imports/qbs/Probes/PathProbe.qbs
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/imports/qbs/Probes/IncludeProbe.qbs
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/imports/qbs/Probes/FrameworkProbe.qbs
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/imports/qbs/Probes/BinaryProbe.qbs
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/imports/qbs/FileInfo/fileinfo.js
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/imports/qbs/base/StaticLibrary.qbs
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/imports/qbs/base/DynamicLibrary.qbs
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/imports/qbs/base/CppApplication.qbs
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/imports/qbs/base/Application.qbs
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/translations/qtcreator_cs.qm
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/translations/qtcreator_de.qm
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/translations/qtcreator_fr.qm
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/translations/qtcreator_ja.qm
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/translations/qtcreator_pl.qm
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/translations/qtcreator_ru.qm
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/translations/qtcreator_sl.qm
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/translations/qtcreator_zh_CN.qm
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/translations/qtcreator_zh_TW.qm
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/snippets/text.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/snippets/qml.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/snippets/cpp.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/README.txt
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/scriptgeneratedproject/wizard_sample.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/scriptgeneratedproject/generate.pl
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtquick2-extension/wizard.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtquick2-extension/qmldir
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtquick2-extension/project.pro
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtquick2-extension/plugin.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtquick2-extension/plugin.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtquick2-extension/object.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtquick2-extension/object.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtquick2-extension/lib.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtquick1-extension/wizard.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtquick1-extension/qmldir
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtquick1-extension/project.pro
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtquick1-extension/plugin.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtquick1-extension/plugin.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtquick1-extension/object.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtquick1-extension/object.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtquick1-extension/lib.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtcreatorplugin/wizard.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtcreatorplugin/qtcreator_logo_24.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtcreatorplugin/mypluginconstants.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtcreatorplugin/myplugin_global.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtcreatorplugin/myplugin.pro
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtcreatorplugin/myplugin.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtcreatorplugin/myplugin.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/listmodel/wizard_sample.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/listmodel/listmodel.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/listmodel/listmodel.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/helloworld/wizard_sample.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/helloworld/project.pro
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/helloworld/main.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/helloworld/console.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/codesnippet/wizard.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/codesnippet/project.pro
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/codesnippet/main.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/bb-qt5-bardescriptor/wizard.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/bb-qt5-bardescriptor/bar-descriptor.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/bb-cascades-app/wizard.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/bb-cascades-app/project.pro
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/bb-cascades-app/icon.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/bb-cascades-app/bar-descriptor.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/bb-cascades-app/assets/main.qml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/bb-bardescriptor/wizard.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/bb-bardescriptor/bar-descriptor.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/shared/manifest.aegis
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/shared/deployment.pri
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/shared/app.desktop
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/qt4project/widget.ui
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/qt4project/mywidget_form.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/qt4project/mywidget_form.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/qt4project/mywidget.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/qt4project/mywidget.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/qt4project/main.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/qt4project/customwidgetwizard/tpl_widget_lib.pro
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/qt4project/customwidgetwizard/tpl_widget_include.pri
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/qt4project/customwidgetwizard/tpl_widget.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/qt4project/customwidgetwizard/tpl_widget.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/qt4project/customwidgetwizard/tpl_single.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/qt4project/customwidgetwizard/tpl_single.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/qt4project/customwidgetwizard/tpl_resources.qrc
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/qt4project/customwidgetwizard/tpl_plugin.pro
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/qt4project/customwidgetwizard/tpl_collection.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/qt4project/customwidgetwizard/tpl_collection.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/designer/templates.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/designer/templates/Widget.ui
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/designer/templates/Main_Window.ui
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/designer/templates/Dialog_without_Buttons.ui
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/designer/templates/Dialog_with_Buttons_Right.ui
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/designer/templates/Dialog_with_Buttons_Bottom.ui
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/styles/intellij.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/styles/inkpot.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/styles/grayscale.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/styles/default.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/schemes/Xcode.kms
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/schemes/MS_Visual_C++.kms
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/welcomescreen.qmlproject
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/welcomescreen.qml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/tutorials.qml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/qtcreator_tutorials.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/images_areaofinterest.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/examples.qml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/develop.qml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/ToolTip.qml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/Sessions.qml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/SessionItem.qml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/SearchBar.qml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/RecentProjects.qml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/qmldir
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/ProjectItem.qml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/PageLoader.qml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/PageCaption.qml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/Logo.qml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/LinksBar.qml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/LinkedText.qml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/IconAndLink.qml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/Delegate.qml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/CustomTab.qml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/CustomizedGridView.qml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/CustomFonts.qml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/ComboBox.qml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/tab.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/qtcreator.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/more.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/info.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/dropshadow.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/bullet.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/arrowBig.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/arrow_up.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/arrow_down.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/mockup/thread-examples.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/mockup/qtscript-examples.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/mockup/penguin.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/mockup/opengl-examples.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/mockup/network-examples.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/mockup/mainwindow-examples.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/mockup/layout-examples.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/mockup/itemview-examples.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/mockup/draganddrop-examples.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/mockup/desktop-examples.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/mockup/designer-examples.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/icons/videoIcon.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/icons/rename.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/icons/qwidget.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/icons/qtquick.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/icons/qt_sdk.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/icons/developing_with_qt_creator.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/icons/delete.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/icons/ddays12.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/icons/components.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/icons/clone.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/icons/buildrun.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/icons/adressbook.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/dummydata/tabsModel.qml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/dummydata/pagesModel.qml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/dummydata/mockupTags.qml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/dummydata/examplesModel.qml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/dummydata/context/ExampleGridView.qml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/dummydata/context/ExampleDelegate.qml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/dummydata/tutorialsModel.qml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/dummydata/sessionList.qml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/dummydata/projectList.qml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/dummydata/pagesModel.qml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/dummydata/examplesModel.qml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/QtWebkit/16x16/WebView.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/Window.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/TumblerDialog.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/TumblerColumn.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/TumblerButton.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/Tumbler.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/Transition.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/ToolBar.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/TimePickerDialog.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/TextInput.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/TextField.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/TextEdit.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/TextArea.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/Text.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/TabButton.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/TabBar.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/Switch.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/State.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/Slider.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/SequentialAnimation.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/Rectangle.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/RatingIndicator.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/RadioButton.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/PropertyChanges.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/ProgressBar.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/PauseAnimation.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/PathView.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/ParallelAnimation.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/PageIndicator.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/MouseArea.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/MoreIndicator.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/ListView.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/ListDelegate.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/ListButton.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/Item.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/item-icon16.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/InfoBanner.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/Image.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/GridView.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/FocusScope.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/Flipable.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/Flickable.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/DatePickerDialog.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/CountBubble.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/Component.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/ColorAnimation.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/ChoiceList.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/CheckBox.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/ButtonRow.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/ButtonColumn.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/Button.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/BusyIndicator.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/BorderImage.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet_utilities.pri
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet.qrc
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/qmlpuppetmain.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/qmlpuppet.pro
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/qmlpuppet.pri
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/servernodeinstance.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/servernodeinstance.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4rendernodeinstanceserver.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4rendernodeinstanceserver.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4previewnodeinstanceserver.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4previewnodeinstanceserver.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4nodeinstanceserver.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4nodeinstanceserver.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4nodeinstanceclientproxy.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4nodeinstanceclientproxy.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4informationnodeinstanceserver.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4informationnodeinstanceserver.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmltransitionnodeinstance.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmltransitionnodeinstance.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlstatenodeinstance.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlstatenodeinstance.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlpropertychangesnodeinstance.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlpropertychangesnodeinstance.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlgraphicsitemnodeinstance.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlgraphicsitemnodeinstance.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/positionernodeinstance.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/positionernodeinstance.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/objectnodeinstance.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/objectnodeinstance.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/nodeinstancesignalspy.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/nodeinstancesignalspy.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/nodeinstanceserver.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/nodeinstanceserver.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/nodeinstancemetaobject.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/nodeinstancemetaobject.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/instances.pri
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/graphicsobjectnodeinstance.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/graphicsobjectnodeinstance.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/dummynodeinstance.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/dummynodeinstance.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/dummycontextobject.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/dummycontextobject.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/componentnodeinstance.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/componentnodeinstance.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/childrenchangeeventfilter.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/childrenchangeeventfilter.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/behaviornodeinstance.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/behaviornodeinstance.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/anchorchangesnodeinstance.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/anchorchangesnodeinstance.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/qml2puppetmain.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/qml2puppet.pro
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/qml2puppet.pri
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/servernodeinstance.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/servernodeinstance.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/quickitemnodeinstance.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/quickitemnodeinstance.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5rendernodeinstanceserver.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5rendernodeinstanceserver.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5previewnodeinstanceserver.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5previewnodeinstanceserver.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5nodeinstanceserver.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5nodeinstanceserver.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5nodeinstanceclientproxy.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5nodeinstanceclientproxy.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5informationnodeinstanceserver.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5informationnodeinstanceserver.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmltransitionnodeinstance.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmltransitionnodeinstance.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmlstatenodeinstance.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmlstatenodeinstance.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmlpropertychangesnodeinstance.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmlpropertychangesnodeinstance.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/positionernodeinstance.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/positionernodeinstance.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/objectnodeinstance.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/objectnodeinstance.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/nodeinstancesignalspy.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/nodeinstancesignalspy.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/nodeinstanceserver.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/nodeinstanceserver.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/nodeinstancemetaobject.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/nodeinstancemetaobject.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/layoutnodeinstance.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/layoutnodeinstance.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/instances.pri
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/dummynodeinstance.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/dummynodeinstance.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/dummycontextobject.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/dummycontextobject.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/componentnodeinstance.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/componentnodeinstance.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/childrenchangeeventfilter.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/childrenchangeeventfilter.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/behaviornodeinstance.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/behaviornodeinstance.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/anchorchangesnodeinstance.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/anchorchangesnodeinstance.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/interfaces/nodeinstanceserverinterface.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/interfaces/nodeinstanceserverinterface.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/interfaces/nodeinstanceglobal.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/interfaces/nodeinstanceclientinterface.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/interfaces/interfaces.pri
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/interfaces/commondefines.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/instances/nodeinstanceclientproxy.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/instances/nodeinstanceclientproxy.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/instances/instances.pri
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/images/webkit.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/images/template_image.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/html/welcome.html
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/reparentcontainer.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/reparentcontainer.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/propertyvaluecontainer.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/propertyvaluecontainer.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/propertybindingcontainer.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/propertybindingcontainer.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/propertyabstractcontainer.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/propertyabstractcontainer.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/instancecontainer.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/instancecontainer.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/informationcontainer.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/informationcontainer.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/imagecontainer.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/imagecontainer.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/idcontainer.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/idcontainer.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/container.pri
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/addimportcontainer.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/addimportcontainer.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/valueschangedcommand.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/valueschangedcommand.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/tokencommand.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/tokencommand.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/synchronizecommand.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/synchronizecommand.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/statepreviewimagechangedcommand.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/statepreviewimagechangedcommand.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/reparentinstancescommand.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/reparentinstancescommand.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/removesharedmemorycommand.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/removesharedmemorycommand.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/removepropertiescommand.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/removepropertiescommand.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/removeinstancescommand.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/removeinstancescommand.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/pixmapchangedcommand.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/pixmapchangedcommand.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/informationchangedcommand.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/informationchangedcommand.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/endpuppetcommand.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/endpuppetcommand.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/debugoutputcommand.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/debugoutputcommand.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/createscenecommand.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/createscenecommand.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/createinstancescommand.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/createinstancescommand.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/componentcompletedcommand.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/componentcompletedcommand.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/completecomponentcommand.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/completecomponentcommand.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/commands.pri
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/clearscenecommand.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/clearscenecommand.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/childrenchangedcommand.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/childrenchangedcommand.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/changevaluescommand.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/changevaluescommand.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/changestatecommand.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/changestatecommand.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/changenodesourcecommand.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/changenodesourcecommand.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/changeidscommand.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/changeidscommand.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/changefileurlcommand.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/changefileurlcommand.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/changebindingscommand.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/changebindingscommand.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/changeauxiliarycommand.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/changeauxiliarycommand.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmldump/qmlstreamwriter.h
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmldump/qmlstreamwriter.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmldump/qmldump.pro
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmldump/main.cpp
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmldump/LICENSE.LGPL
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmldump/LGPL_EXCEPTION.TXT
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmldump/Info.plist.in
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qtwebkit.qmltypes
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qtmultimediakit.qmltypes
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qtmobility-systeminfo.qmltypes
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qtmobility-serviceframework.qmltypes
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qtmobility-sensors.qmltypes
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qtmobility-publishsubscribe.qmltypes
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qtmobility-organizer.qmltypes
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qtmobility-messaging.qmltypes
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qtmobility-location.qmltypes
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qtmobility-gallery.qmltypes
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qtmobility-feedback.qmltypes
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qtmobility-contacts.qmltypes
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qtmobility-connectivity.qmltypes
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qt5QtQuick2-bundle.json
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qt5QtQuick1-bundle.json
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qt4QtQuick1-bundle.json
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qt-labs-particles.qmltypes
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qt-labs-gestures.qmltypes
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qt-labs-folderlistmodel.qmltypes
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qmltypes-bundle.json
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qmlruntime.qmltypes
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qmlproject.qmltypes
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qmlproject-bundle.json
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qbs-bundle.json
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/builtins.qmltypes
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/generic-highlighter/yacc.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/generic-highlighter/xml.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/generic-highlighter/valgrind-suppression.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/generic-highlighter/ruby.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/generic-highlighter/perl.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/generic-highlighter/javadoc.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/generic-highlighter/java.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/generic-highlighter/ini.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/generic-highlighter/html.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/generic-highlighter/dtd.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/generic-highlighter/doxygen.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/generic-highlighter/css.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/generic-highlighter/cmake.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/generic-highlighter/bash.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/generic-highlighter/autoconf.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/generic-highlighter/alert.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/glsl/glsl_es_100_common.glsl
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/glsl/glsl_es_100.vert
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/glsl/glsl_es_100.frag
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/glsl/glsl_120_common.glsl
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/glsl/glsl_120.vert
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/glsl/glsl_120.frag
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/externaltools/vi.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/externaltools/qmlscene.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/externaltools/qmlviewer.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/externaltools/sort.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/externaltools/lupdate.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/externaltools/lrelease.xml
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/icons/hicolor/16x16/apps/QtProject-qtcreator.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/icons/hicolor/64x64/apps/QtProject-qtcreator.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/icons/hicolor/32x32/apps/QtProject-qtcreator.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/icons/hicolor/24x24/apps/QtProject-qtcreator.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/icons/hicolor/256x256/apps/QtProject-qtcreator.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/icons/hicolor/128x128/apps/QtProject-qtcreator.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/icons/hicolor/48x48/apps/QtProject-qtcreator.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
 /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/icons/hicolor/512x512/apps/QtProject-qtcreator.png
 Matched in manifest-qemux86-qt-creator.populate_sysroot
Please verify which recipe should provide the above files.
The build has stopped as continuing in this scenario WILL break things, if not now, possibly in the future (we've seen builds fail several months later). If the system knew how to recover from this automatically it would however there are several different scenarios which can result in this and we don't know which one this is. It may be you have switched providers of something like virtual/kernel (e.g. from linux-yocto to linux-yocto-dev), in that case you need to execute the clean task for both recipes and it will resolve this error. It may be you changed DISTRO_FEATURES from systemd to udev or vice versa. Cleaning those recipes should again resolve this error however switching DISTRO_FEATURES on an existing build directory is not supported, you should really clean out tmp and rebuild (reusing sstate should be safe). It could be the overlapping files detected are harmless in which case adding them to SSTATE_DUPWHITELIST may be the correct solution. It could also be your build is including two different conflicting versions of things (e.g. bluez 4 and bluez 5 and the correct solution for that would be to resolve the conflict. If in doubt, please ask on the mailing list, sharing the error and filelist above.
ERROR: If the above message is too much, the simpler version is you're advised to wipe out tmp and rebuild (reusing sstate is fine). That will likely fix things in most (but not all) cases.
ERROR: Function failed: sstate_task_postfunc
ERROR: Logfile of failure stored in: /home/jenkins/oe/world/shr-core/tmp-glibc/work/i586-oe-linux/qt5-creator/3.3.0-r0/temp/log.do_populate_sysroot.15355
NOTE: recipe qt5-creator-3.3.0-r0: task do_populate_sysroot: Failed
ERROR: Task 8866 (/home/jenkins/oe/world/shr-core/meta-qt5/recipes-qt/qt5/qt5-creator_3.3.0.bb, do_populate_sysroot) failed with exit code '1'
> * Desktop file was based on [1]
> 
> [1] http://pkgs.fedoraproject.org/cgit/qt-creator.git/tree/qtcreator.desktop
> 
> Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
> ---
>  ...t-creator-to-build-on-arm-aarch32-and-aar.patch | 94 ++++++++++++++++++++++
>  recipes-qt/qt5/qt5-creator/qtcreator.desktop.in    | 10 +++
>  recipes-qt/qt5/qt5-creator_3.3.0.bb                | 87 ++++++++++++++++++++
>  3 files changed, 191 insertions(+)
>  create 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/qtcreator.desktop.in
>  create mode 100644 recipes-qt/qt5/qt5-creator_3.3.0.bb
> 
> 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
> new file mode 100644
> index 0000000..3ed8bc4
> --- /dev/null
> +++ b/recipes-qt/qt5/qt5-creator/0001-Fix-Allow-qt-creator-to-build-on-arm-aarch32-and-aar.patch
> @@ -0,0 +1,94 @@
> +From 748174788b318c6316e6d41ce323306120223e02 Mon Sep 17 00:00:00 2001
> +From: Greg Nietsky <gregory@distrotech.co.za>
> +Date: Tue, 4 Mar 2014 11:33:40 +0200
> +Subject: [PATCH 1/2] 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 b7a9ddf..c5b9826 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 2981d2c..1c8d828 100644
> +--- a/src/libs/3rdparty/botan/botan.h
> ++++ b/src/libs/3rdparty/botan/botan.h
> +@@ -82,7 +82,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) || \
> +-- 
> +1.8.3.1
> +
> diff --git a/recipes-qt/qt5/qt5-creator/qtcreator.desktop.in b/recipes-qt/qt5/qt5-creator/qtcreator.desktop.in
> new file mode 100644
> index 0000000..64f7c6b
> --- /dev/null
> +++ b/recipes-qt/qt5/qt5-creator/qtcreator.desktop.in
> @@ -0,0 +1,10 @@
> +[Desktop Entry]
> +Type=Application
> +Exec=sh -c "PATH=$PATH:@QT5_QMAKE@ qtcreator %F"
> +Name=Qt Creator
> +GenericName=C++ IDE for developing Qt applications
> +X-KDE-StartupNotify=true
> +Icon=QtProject-qtcreator
> +Terminal=false
> +Categories=Development;IDE;Qt;
> +MimeType=text/x-c++src;text/x-c++hdr;text/x-xsrc;application/x-designer;application/vnd.nokia.qt.qmakeprofile;application/vnd.nokia.xml.qt.resource;
> diff --git a/recipes-qt/qt5/qt5-creator_3.3.0.bb b/recipes-qt/qt5/qt5-creator_3.3.0.bb
> new file mode 100644
> index 0000000..76f9982
> --- /dev/null
> +++ b/recipes-qt/qt5/qt5-creator_3.3.0.bb
> @@ -0,0 +1,87 @@
> +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 = "LGPLv2.1 | GPLv3"
> +LIC_FILES_CHKSUM = " \
> +    file://LGPL_EXCEPTION.TXT;md5=eb6c371255e1262c55ae9b652a90b528 \
> +    file://LICENSE.LGPLv21;md5=243b725d71bb5df4a1e5920b344b86ad \
> +    file://LICENSE.LGPLv3;md5=c1939be5579666be947371bc8120425f \
> +"
> +
> +inherit qmake5
> +
> +DEPENDS = "qtbase qtscript qtwebkit qtxmlpatterns qtx11extras qtdeclarative qttools qttools-native qtsvg"
> +
> +SRC_URI = " \
> +    http://download.qt.io/official_releases/qtcreator/3.3/${PV}/qt-creator-opensource-src-${PV}.tar.gz \
> +    file://0001-Fix-Allow-qt-creator-to-build-on-arm-aarch32-and-aar.patch \
> +    file://qtcreator.desktop.in \
> +"
> +SRC_URI[md5sum] = "5e33988908282c779f2e6e4dca2bba3e"
> +SRC_URI[sha256sum] = "27a5c8815fab95f959134047f8315686de4de6f99b0bedfd46b5dedae390525a"
> +
> +S = "${WORKDIR}/qt-creator-opensource-src-${PV}"
> +
> +EXTRA_QMAKEVARS_PRE += "IDE_LIBRARY_BASENAME=${baselib}/${QT_DIR_NAME}"
> +
> +do_configure_prepend() {
> +    # causes gcc infinite loop with 4.9.x for arm targets similar to
> +    # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61033
> +    export DO_NOT_BUILD_QMLDESIGNER=1
> +}
> +
> +do_configure_append() {
> +    # Find native tools
> +    sed -i 's:${STAGING_BINDIR}.*/lrelease:${STAGING_BINDIR_NATIVE}/${QT_DIR_NAME}/lrelease:g' ${B}/share/qtcreator/translations/Makefile
> +    sed -i 's:${STAGING_BINDIR}.*/qdoc:${STAGING_BINDIR_NATIVE}/${QT_DIR_NAME}/qdoc:g' ${B}/Makefile
> +
> +    # see qtbase-native.inc
> +    # sed -i 's:QT_INSTALL_DOCS=${docdir}:QT_INSTALL_DOCS=${STAGING_DATADIR_NATIVE}/${QT_DIR_NAME}/doc:g' ${B}/Makefile
> +}
> +
> +do_compile_append() {
> +    # build docs
> +    #oe_runmake docs_online
> +}
> +
> +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@:${bindir}/${QT_DIR_NAME}:g' ${D}${datadir}/applications/qtcreator.desktop
> +}
> +
> +FILES_${PN} += " \
> +    ${datadir}/qtcreator \
> +    ${datadir}/icons \
> +    ${libdir}/${QT_DIR_NAME}/qtcreator \
> +"
> +FILES_${PN}-dbg += " \
> +    ${libdir}/${QT_DIR_NAME}/qtcreator/.debug \
> +    ${libdir}/${QT_DIR_NAME}/qtcreator/plugins/.debug \
> +    ${libdir}/${QT_DIR_NAME}/qtcreator/plugins/qbs/plugins/.debug \
> +"
> +
> +FILES_${PN}-dev += " \
> +    ${libdir}/${QT_DIR_NAME}/qtcreator/*${SOLIBSDEV} \
> +"
> +
> +RDEPENDS_${PN} += "perl"
> +RCONFLICTS_${PN} = "qt-creator"
> +
> +# To give best user experience out of the box..
> +RRECOMMENDS_${PN} += " \
> +    packagegroup-qt5-toolchain-target \
> +    binutils \
> +    ccache \
> +    gcc-symlinks \
> +    gdb \
> +"
> -- 
> 1.8.3.1
> 
> -- 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 188 bytes --]

^ permalink raw reply	[flat|nested] 26+ messages in thread

* Re: [meta-qt5][PATCH 4/5] qt5-creator: add 3.3.0 of qt-creator
  2015-02-27  6:50   ` Martin Jansa
@ 2015-02-27  8:33     ` Andreas Müller
  2015-02-27  8:34     ` Martin Jansa
  1 sibling, 0 replies; 26+ messages in thread
From: Andreas Müller @ 2015-02-27  8:33 UTC (permalink / raw)
  To: openembedded-devel

On Fri, Feb 27, 2015 at 7:50 AM, Martin Jansa <martin.jansa@gmail.com> wrote:
> On Tue, Jan 27, 2015 at 06:53:52AM +0100, Andreas Müller wrote:
>> * this is the first version which dropped qt4 support
>> * rename recipe to avoid conflicts with meta-oe's qt-creator
>
> It still conflicts with qt-creator in sysroot on couple files, please try to
> change it to use different datadir or don't stage datadir in sysroot at all (if
> it works without it).
>
OK - from your last world build I saw it is even worse: qt5-creator
seems to use libs from old qt-creator. Hope to find some time for this
during weekend.

Regarding the other patches in this series (removing sysroot patches):
We have discussed this but do you wish V2 of these patches?

Andreas


^ permalink raw reply	[flat|nested] 26+ messages in thread

* Re: [meta-qt5][PATCH 4/5] qt5-creator: add 3.3.0 of qt-creator
  2015-02-27  6:50   ` Martin Jansa
  2015-02-27  8:33     ` Andreas Müller
@ 2015-02-27  8:34     ` Martin Jansa
  2015-02-27  8:36       ` Andreas Müller
  1 sibling, 1 reply; 26+ messages in thread
From: Martin Jansa @ 2015-02-27  8:34 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 102016 bytes --]

On Fri, Feb 27, 2015 at 07:50:54AM +0100, Martin Jansa wrote:
> On Tue, Jan 27, 2015 at 06:53:52AM +0100, Andreas Müller wrote:
> > * this is the first version which dropped qt4 support
> > * rename recipe to avoid conflicts with meta-oe's qt-creator
> 
> It still conflicts with qt-creator in sysroot on couple files, please try to
> change it to use different datadir or don't stage datadir in sysroot at all (if
> it works without it).

I'm going to merge this together with 5.4.1 but please look into this
issue possibly together with 3.3.1 upgrade.

Thanks

> 
> ERROR: The recipe qt5-creator is trying to install files into a shared area when those files already exist. Those files and their manifest location are:
>    /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/modules/qbs/common.qbs
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/modules/cpp/windows-msvc.qbs
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/modules/cpp/windows-mingw.qbs
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/modules/cpp/UnixGCC.qbs
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/modules/cpp/osx-gcc.qbs
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/modules/cpp/msvc.js
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/modules/cpp/linux-gcc.qbs
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/modules/cpp/ios-gcc.qbs
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/modules/cpp/genericunix-gcc.qbs
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/modules/cpp/GenericGCC.qbs
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/modules/cpp/gcc.js
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/modules/cpp/DarwinGCC.qbs
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/modules/cpp/CppModule.qbs
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/imports/qbs/Probes/PkgConfigProbe.qbs
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/imports/qbs/Probes/PathProbe.qbs
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/imports/qbs/Probes/IncludeProbe.qbs
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/imports/qbs/Probes/FrameworkProbe.qbs
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/imports/qbs/Probes/BinaryProbe.qbs
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/imports/qbs/FileInfo/fileinfo.js
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/imports/qbs/base/StaticLibrary.qbs
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/imports/qbs/base/DynamicLibrary.qbs
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/imports/qbs/base/CppApplication.qbs
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qbs/share/qbs/imports/qbs/base/Application.qbs
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/translations/qtcreator_cs.qm
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/translations/qtcreator_de.qm
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/translations/qtcreator_fr.qm
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/translations/qtcreator_ja.qm
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/translations/qtcreator_pl.qm
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/translations/qtcreator_ru.qm
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/translations/qtcreator_sl.qm
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/translations/qtcreator_zh_CN.qm
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/translations/qtcreator_zh_TW.qm
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/snippets/text.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/snippets/qml.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/snippets/cpp.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/README.txt
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/scriptgeneratedproject/wizard_sample.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/scriptgeneratedproject/generate.pl
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtquick2-extension/wizard.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtquick2-extension/qmldir
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtquick2-extension/project.pro
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtquick2-extension/plugin.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtquick2-extension/plugin.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtquick2-extension/object.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtquick2-extension/object.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtquick2-extension/lib.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtquick1-extension/wizard.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtquick1-extension/qmldir
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtquick1-extension/project.pro
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtquick1-extension/plugin.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtquick1-extension/plugin.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtquick1-extension/object.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtquick1-extension/object.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtquick1-extension/lib.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtcreatorplugin/wizard.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtcreatorplugin/qtcreator_logo_24.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtcreatorplugin/mypluginconstants.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtcreatorplugin/myplugin_global.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtcreatorplugin/myplugin.pro
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtcreatorplugin/myplugin.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/qtcreatorplugin/myplugin.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/listmodel/wizard_sample.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/listmodel/listmodel.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/listmodel/listmodel.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/helloworld/wizard_sample.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/helloworld/project.pro
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/helloworld/main.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/helloworld/console.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/codesnippet/wizard.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/codesnippet/project.pro
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/codesnippet/main.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/bb-qt5-bardescriptor/wizard.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/bb-qt5-bardescriptor/bar-descriptor.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/bb-cascades-app/wizard.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/bb-cascades-app/project.pro
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/bb-cascades-app/icon.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/bb-cascades-app/bar-descriptor.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/bb-cascades-app/assets/main.qml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/bb-bardescriptor/wizard.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/wizards/bb-bardescriptor/bar-descriptor.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/shared/manifest.aegis
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/shared/deployment.pri
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/shared/app.desktop
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/qt4project/widget.ui
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/qt4project/mywidget_form.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/qt4project/mywidget_form.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/qt4project/mywidget.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/qt4project/mywidget.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/qt4project/main.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/qt4project/customwidgetwizard/tpl_widget_lib.pro
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/qt4project/customwidgetwizard/tpl_widget_include.pri
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/qt4project/customwidgetwizard/tpl_widget.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/qt4project/customwidgetwizard/tpl_widget.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/qt4project/customwidgetwizard/tpl_single.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/qt4project/customwidgetwizard/tpl_single.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/qt4project/customwidgetwizard/tpl_resources.qrc
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/qt4project/customwidgetwizard/tpl_plugin.pro
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/qt4project/customwidgetwizard/tpl_collection.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/templates/qt4project/customwidgetwizard/tpl_collection.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/designer/templates.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/designer/templates/Widget.ui
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/designer/templates/Main_Window.ui
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/designer/templates/Dialog_without_Buttons.ui
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/designer/templates/Dialog_with_Buttons_Right.ui
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/designer/templates/Dialog_with_Buttons_Bottom.ui
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/styles/intellij.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/styles/inkpot.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/styles/grayscale.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/styles/default.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/schemes/Xcode.kms
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/schemes/MS_Visual_C++.kms
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/welcomescreen.qmlproject
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/welcomescreen.qml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/tutorials.qml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/qtcreator_tutorials.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/images_areaofinterest.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/examples.qml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/develop.qml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/ToolTip.qml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/Sessions.qml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/SessionItem.qml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/SearchBar.qml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/RecentProjects.qml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/qmldir
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/ProjectItem.qml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/PageLoader.qml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/PageCaption.qml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/Logo.qml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/LinksBar.qml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/LinkedText.qml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/IconAndLink.qml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/Delegate.qml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/CustomTab.qml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/CustomizedGridView.qml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/CustomFonts.qml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/ComboBox.qml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/tab.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/qtcreator.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/more.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/info.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/dropshadow.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/bullet.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/arrowBig.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/arrow_up.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/arrow_down.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/mockup/thread-examples.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/mockup/qtscript-examples.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/mockup/penguin.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/mockup/opengl-examples.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/mockup/network-examples.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/mockup/mainwindow-examples.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/mockup/layout-examples.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/mockup/itemview-examples.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/mockup/draganddrop-examples.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/mockup/desktop-examples.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/mockup/designer-examples.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/icons/videoIcon.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/icons/rename.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/icons/qwidget.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/icons/qtquick.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/icons/qt_sdk.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/icons/developing_with_qt_creator.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/icons/delete.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/icons/ddays12.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/icons/components.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/icons/clone.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/icons/buildrun.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/images/icons/adressbook.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/dummydata/tabsModel.qml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/dummydata/pagesModel.qml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/dummydata/mockupTags.qml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/dummydata/examplesModel.qml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/dummydata/context/ExampleGridView.qml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/widgets/dummydata/context/ExampleDelegate.qml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/dummydata/tutorialsModel.qml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/dummydata/sessionList.qml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/dummydata/projectList.qml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/dummydata/pagesModel.qml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/welcomescreen/dummydata/examplesModel.qml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/QtWebkit/16x16/WebView.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/Window.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/TumblerDialog.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/TumblerColumn.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/TumblerButton.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/Tumbler.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/Transition.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/ToolBar.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/TimePickerDialog.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/TextInput.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/TextField.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/TextEdit.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/TextArea.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/Text.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/TabButton.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/TabBar.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/Switch.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/State.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/Slider.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/SequentialAnimation.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/Rectangle.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/RatingIndicator.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/RadioButton.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/PropertyChanges.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/ProgressBar.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/PauseAnimation.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/PathView.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/ParallelAnimation.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/PageIndicator.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/MouseArea.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/MoreIndicator.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/ListView.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/ListDelegate.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/ListButton.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/Item.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/item-icon16.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/InfoBanner.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/Image.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/GridView.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/FocusScope.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/Flipable.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/Flickable.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/DatePickerDialog.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/CountBubble.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/Component.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/ColorAnimation.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/ChoiceList.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/CheckBox.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/ButtonRow.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/ButtonColumn.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/Button.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/BusyIndicator.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qmlicons/Qt/16x16/BorderImage.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet_utilities.pri
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet.qrc
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/qmlpuppetmain.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/qmlpuppet.pro
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/qmlpuppet.pri
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/servernodeinstance.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/servernodeinstance.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4rendernodeinstanceserver.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4rendernodeinstanceserver.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4previewnodeinstanceserver.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4previewnodeinstanceserver.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4nodeinstanceserver.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4nodeinstanceserver.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4nodeinstanceclientproxy.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4nodeinstanceclientproxy.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4informationnodeinstanceserver.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qt4informationnodeinstanceserver.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmltransitionnodeinstance.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmltransitionnodeinstance.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlstatenodeinstance.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlstatenodeinstance.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlpropertychangesnodeinstance.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlpropertychangesnodeinstance.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlgraphicsitemnodeinstance.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/qmlgraphicsitemnodeinstance.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/positionernodeinstance.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/positionernodeinstance.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/objectnodeinstance.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/objectnodeinstance.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/nodeinstancesignalspy.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/nodeinstancesignalspy.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/nodeinstanceserver.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/nodeinstanceserver.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/nodeinstancemetaobject.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/nodeinstancemetaobject.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/instances.pri
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/graphicsobjectnodeinstance.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/graphicsobjectnodeinstance.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/dummynodeinstance.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/dummynodeinstance.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/dummycontextobject.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/dummycontextobject.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/componentnodeinstance.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/componentnodeinstance.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/childrenchangeeventfilter.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/childrenchangeeventfilter.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/behaviornodeinstance.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/behaviornodeinstance.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/anchorchangesnodeinstance.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qmlpuppet/instances/anchorchangesnodeinstance.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/qml2puppetmain.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/qml2puppet.pro
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/qml2puppet.pri
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/servernodeinstance.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/servernodeinstance.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/quickitemnodeinstance.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/quickitemnodeinstance.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5rendernodeinstanceserver.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5rendernodeinstanceserver.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5previewnodeinstanceserver.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5previewnodeinstanceserver.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5nodeinstanceserver.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5nodeinstanceserver.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5nodeinstanceclientproxy.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5nodeinstanceclientproxy.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5informationnodeinstanceserver.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5informationnodeinstanceserver.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmltransitionnodeinstance.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmltransitionnodeinstance.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmlstatenodeinstance.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmlstatenodeinstance.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmlpropertychangesnodeinstance.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmlpropertychangesnodeinstance.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/positionernodeinstance.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/positionernodeinstance.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/objectnodeinstance.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/objectnodeinstance.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/nodeinstancesignalspy.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/nodeinstancesignalspy.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/nodeinstanceserver.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/nodeinstanceserver.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/nodeinstancemetaobject.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/nodeinstancemetaobject.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/layoutnodeinstance.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/layoutnodeinstance.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/instances.pri
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/dummynodeinstance.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/dummynodeinstance.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/dummycontextobject.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/dummycontextobject.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/componentnodeinstance.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/componentnodeinstance.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/childrenchangeeventfilter.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/childrenchangeeventfilter.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/behaviornodeinstance.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/behaviornodeinstance.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/anchorchangesnodeinstance.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/anchorchangesnodeinstance.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/interfaces/nodeinstanceserverinterface.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/interfaces/nodeinstanceserverinterface.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/interfaces/nodeinstanceglobal.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/interfaces/nodeinstanceclientinterface.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/interfaces/interfaces.pri
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/interfaces/commondefines.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/instances/nodeinstanceclientproxy.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/instances/nodeinstanceclientproxy.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/instances/instances.pri
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/images/webkit.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/images/template_image.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/html/welcome.html
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/reparentcontainer.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/reparentcontainer.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/propertyvaluecontainer.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/propertyvaluecontainer.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/propertybindingcontainer.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/propertybindingcontainer.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/propertyabstractcontainer.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/propertyabstractcontainer.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/instancecontainer.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/instancecontainer.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/informationcontainer.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/informationcontainer.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/imagecontainer.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/imagecontainer.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/idcontainer.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/idcontainer.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/container.pri
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/addimportcontainer.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/container/addimportcontainer.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/valueschangedcommand.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/valueschangedcommand.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/tokencommand.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/tokencommand.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/synchronizecommand.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/synchronizecommand.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/statepreviewimagechangedcommand.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/statepreviewimagechangedcommand.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/reparentinstancescommand.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/reparentinstancescommand.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/removesharedmemorycommand.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/removesharedmemorycommand.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/removepropertiescommand.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/removepropertiescommand.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/removeinstancescommand.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/removeinstancescommand.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/pixmapchangedcommand.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/pixmapchangedcommand.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/informationchangedcommand.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/informationchangedcommand.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/endpuppetcommand.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/endpuppetcommand.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/debugoutputcommand.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/debugoutputcommand.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/createscenecommand.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/createscenecommand.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/createinstancescommand.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/createinstancescommand.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/componentcompletedcommand.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/componentcompletedcommand.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/completecomponentcommand.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/completecomponentcommand.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/commands.pri
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/clearscenecommand.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/clearscenecommand.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/childrenchangedcommand.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/childrenchangedcommand.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/changevaluescommand.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/changevaluescommand.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/changestatecommand.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/changestatecommand.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/changenodesourcecommand.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/changenodesourcecommand.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/changeidscommand.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/changeidscommand.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/changefileurlcommand.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/changefileurlcommand.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/changebindingscommand.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/changebindingscommand.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/changeauxiliarycommand.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmlpuppet/commands/changeauxiliarycommand.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmldump/qmlstreamwriter.h
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmldump/qmlstreamwriter.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmldump/qmldump.pro
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmldump/main.cpp
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmldump/LICENSE.LGPL
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmldump/LGPL_EXCEPTION.TXT
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml/qmldump/Info.plist.in
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qtwebkit.qmltypes
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qtmultimediakit.qmltypes
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qtmobility-systeminfo.qmltypes
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qtmobility-serviceframework.qmltypes
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qtmobility-sensors.qmltypes
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qtmobility-publishsubscribe.qmltypes
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qtmobility-organizer.qmltypes
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qtmobility-messaging.qmltypes
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qtmobility-location.qmltypes
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qtmobility-gallery.qmltypes
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qtmobility-feedback.qmltypes
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qtmobility-contacts.qmltypes
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qtmobility-connectivity.qmltypes
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qt5QtQuick2-bundle.json
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qt5QtQuick1-bundle.json
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qt4QtQuick1-bundle.json
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qt-labs-particles.qmltypes
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qt-labs-gestures.qmltypes
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qt-labs-folderlistmodel.qmltypes
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qmltypes-bundle.json
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qmlruntime.qmltypes
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qmlproject.qmltypes
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qmlproject-bundle.json
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/qbs-bundle.json
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/qml-type-descriptions/builtins.qmltypes
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/generic-highlighter/yacc.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/generic-highlighter/xml.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/generic-highlighter/valgrind-suppression.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/generic-highlighter/ruby.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/generic-highlighter/perl.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/generic-highlighter/javadoc.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/generic-highlighter/java.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/generic-highlighter/ini.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/generic-highlighter/html.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/generic-highlighter/dtd.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/generic-highlighter/doxygen.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/generic-highlighter/css.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/generic-highlighter/cmake.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/generic-highlighter/bash.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/generic-highlighter/autoconf.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/generic-highlighter/alert.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/glsl/glsl_es_100_common.glsl
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/glsl/glsl_es_100.vert
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/glsl/glsl_es_100.frag
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/glsl/glsl_120_common.glsl
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/glsl/glsl_120.vert
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/glsl/glsl_120.frag
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/externaltools/vi.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/externaltools/qmlscene.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/externaltools/qmlviewer.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/externaltools/sort.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/externaltools/lupdate.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/qtcreator/externaltools/lrelease.xml
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/icons/hicolor/16x16/apps/QtProject-qtcreator.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/icons/hicolor/64x64/apps/QtProject-qtcreator.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/icons/hicolor/32x32/apps/QtProject-qtcreator.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/icons/hicolor/24x24/apps/QtProject-qtcreator.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/icons/hicolor/256x256/apps/QtProject-qtcreator.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/icons/hicolor/128x128/apps/QtProject-qtcreator.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/icons/hicolor/48x48/apps/QtProject-qtcreator.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
>  /home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/qemux86/usr/share/icons/hicolor/512x512/apps/QtProject-qtcreator.png
>  Matched in manifest-qemux86-qt-creator.populate_sysroot
> Please verify which recipe should provide the above files.
> The build has stopped as continuing in this scenario WILL break things, if not now, possibly in the future (we've seen builds fail several months later). If the system knew how to recover from this automatically it would however there are several different scenarios which can result in this and we don't know which one this is. It may be you have switched providers of something like virtual/kernel (e.g. from linux-yocto to linux-yocto-dev), in that case you need to execute the clean task for both recipes and it will resolve this error. It may be you changed DISTRO_FEATURES from systemd to udev or vice versa. Cleaning those recipes should again resolve this error however switching DISTRO_FEATURES on an existing build directory is not supported, you should really clean out tmp and rebuild (reusing sstate should be safe). It could be the overlapping files detected are harmless in which case adding them to SSTATE_DUPWHITELIST may be the correct solution. It could also be your build is including two different conflicting versions of things (e.g. bluez 4 and bluez 5 and the correct solution for that would be to resolve the conflict. If in doubt, please ask on the mailing list, sharing the error and filelist above.
> ERROR: If the above message is too much, the simpler version is you're advised to wipe out tmp and rebuild (reusing sstate is fine). That will likely fix things in most (but not all) cases.
> ERROR: Function failed: sstate_task_postfunc
> ERROR: Logfile of failure stored in: /home/jenkins/oe/world/shr-core/tmp-glibc/work/i586-oe-linux/qt5-creator/3.3.0-r0/temp/log.do_populate_sysroot.15355
> NOTE: recipe qt5-creator-3.3.0-r0: task do_populate_sysroot: Failed
> ERROR: Task 8866 (/home/jenkins/oe/world/shr-core/meta-qt5/recipes-qt/qt5/qt5-creator_3.3.0.bb, do_populate_sysroot) failed with exit code '1'
> > * Desktop file was based on [1]
> > 
> > [1] http://pkgs.fedoraproject.org/cgit/qt-creator.git/tree/qtcreator.desktop
> > 
> > Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
> > ---
> >  ...t-creator-to-build-on-arm-aarch32-and-aar.patch | 94 ++++++++++++++++++++++
> >  recipes-qt/qt5/qt5-creator/qtcreator.desktop.in    | 10 +++
> >  recipes-qt/qt5/qt5-creator_3.3.0.bb                | 87 ++++++++++++++++++++
> >  3 files changed, 191 insertions(+)
> >  create 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/qtcreator.desktop.in
> >  create mode 100644 recipes-qt/qt5/qt5-creator_3.3.0.bb
> > 
> > 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
> > new file mode 100644
> > index 0000000..3ed8bc4
> > --- /dev/null
> > +++ b/recipes-qt/qt5/qt5-creator/0001-Fix-Allow-qt-creator-to-build-on-arm-aarch32-and-aar.patch
> > @@ -0,0 +1,94 @@
> > +From 748174788b318c6316e6d41ce323306120223e02 Mon Sep 17 00:00:00 2001
> > +From: Greg Nietsky <gregory@distrotech.co.za>
> > +Date: Tue, 4 Mar 2014 11:33:40 +0200
> > +Subject: [PATCH 1/2] 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 b7a9ddf..c5b9826 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 2981d2c..1c8d828 100644
> > +--- a/src/libs/3rdparty/botan/botan.h
> > ++++ b/src/libs/3rdparty/botan/botan.h
> > +@@ -82,7 +82,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) || \
> > +-- 
> > +1.8.3.1
> > +
> > diff --git a/recipes-qt/qt5/qt5-creator/qtcreator.desktop.in b/recipes-qt/qt5/qt5-creator/qtcreator.desktop.in
> > new file mode 100644
> > index 0000000..64f7c6b
> > --- /dev/null
> > +++ b/recipes-qt/qt5/qt5-creator/qtcreator.desktop.in
> > @@ -0,0 +1,10 @@
> > +[Desktop Entry]
> > +Type=Application
> > +Exec=sh -c "PATH=$PATH:@QT5_QMAKE@ qtcreator %F"
> > +Name=Qt Creator
> > +GenericName=C++ IDE for developing Qt applications
> > +X-KDE-StartupNotify=true
> > +Icon=QtProject-qtcreator
> > +Terminal=false
> > +Categories=Development;IDE;Qt;
> > +MimeType=text/x-c++src;text/x-c++hdr;text/x-xsrc;application/x-designer;application/vnd.nokia.qt.qmakeprofile;application/vnd.nokia.xml.qt.resource;
> > diff --git a/recipes-qt/qt5/qt5-creator_3.3.0.bb b/recipes-qt/qt5/qt5-creator_3.3.0.bb
> > new file mode 100644
> > index 0000000..76f9982
> > --- /dev/null
> > +++ b/recipes-qt/qt5/qt5-creator_3.3.0.bb
> > @@ -0,0 +1,87 @@
> > +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 = "LGPLv2.1 | GPLv3"
> > +LIC_FILES_CHKSUM = " \
> > +    file://LGPL_EXCEPTION.TXT;md5=eb6c371255e1262c55ae9b652a90b528 \
> > +    file://LICENSE.LGPLv21;md5=243b725d71bb5df4a1e5920b344b86ad \
> > +    file://LICENSE.LGPLv3;md5=c1939be5579666be947371bc8120425f \
> > +"
> > +
> > +inherit qmake5
> > +
> > +DEPENDS = "qtbase qtscript qtwebkit qtxmlpatterns qtx11extras qtdeclarative qttools qttools-native qtsvg"
> > +
> > +SRC_URI = " \
> > +    http://download.qt.io/official_releases/qtcreator/3.3/${PV}/qt-creator-opensource-src-${PV}.tar.gz \
> > +    file://0001-Fix-Allow-qt-creator-to-build-on-arm-aarch32-and-aar.patch \
> > +    file://qtcreator.desktop.in \
> > +"
> > +SRC_URI[md5sum] = "5e33988908282c779f2e6e4dca2bba3e"
> > +SRC_URI[sha256sum] = "27a5c8815fab95f959134047f8315686de4de6f99b0bedfd46b5dedae390525a"
> > +
> > +S = "${WORKDIR}/qt-creator-opensource-src-${PV}"
> > +
> > +EXTRA_QMAKEVARS_PRE += "IDE_LIBRARY_BASENAME=${baselib}/${QT_DIR_NAME}"
> > +
> > +do_configure_prepend() {
> > +    # causes gcc infinite loop with 4.9.x for arm targets similar to
> > +    # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61033
> > +    export DO_NOT_BUILD_QMLDESIGNER=1
> > +}
> > +
> > +do_configure_append() {
> > +    # Find native tools
> > +    sed -i 's:${STAGING_BINDIR}.*/lrelease:${STAGING_BINDIR_NATIVE}/${QT_DIR_NAME}/lrelease:g' ${B}/share/qtcreator/translations/Makefile
> > +    sed -i 's:${STAGING_BINDIR}.*/qdoc:${STAGING_BINDIR_NATIVE}/${QT_DIR_NAME}/qdoc:g' ${B}/Makefile
> > +
> > +    # see qtbase-native.inc
> > +    # sed -i 's:QT_INSTALL_DOCS=${docdir}:QT_INSTALL_DOCS=${STAGING_DATADIR_NATIVE}/${QT_DIR_NAME}/doc:g' ${B}/Makefile
> > +}
> > +
> > +do_compile_append() {
> > +    # build docs
> > +    #oe_runmake docs_online
> > +}
> > +
> > +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@:${bindir}/${QT_DIR_NAME}:g' ${D}${datadir}/applications/qtcreator.desktop
> > +}
> > +
> > +FILES_${PN} += " \
> > +    ${datadir}/qtcreator \
> > +    ${datadir}/icons \
> > +    ${libdir}/${QT_DIR_NAME}/qtcreator \
> > +"
> > +FILES_${PN}-dbg += " \
> > +    ${libdir}/${QT_DIR_NAME}/qtcreator/.debug \
> > +    ${libdir}/${QT_DIR_NAME}/qtcreator/plugins/.debug \
> > +    ${libdir}/${QT_DIR_NAME}/qtcreator/plugins/qbs/plugins/.debug \
> > +"
> > +
> > +FILES_${PN}-dev += " \
> > +    ${libdir}/${QT_DIR_NAME}/qtcreator/*${SOLIBSDEV} \
> > +"
> > +
> > +RDEPENDS_${PN} += "perl"
> > +RCONFLICTS_${PN} = "qt-creator"
> > +
> > +# To give best user experience out of the box..
> > +RRECOMMENDS_${PN} += " \
> > +    packagegroup-qt5-toolchain-target \
> > +    binutils \
> > +    ccache \
> > +    gcc-symlinks \
> > +    gdb \
> > +"
> > -- 
> > 1.8.3.1
> > 
> > -- 
> > _______________________________________________
> > Openembedded-devel mailing list
> > Openembedded-devel@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> 
> -- 
> Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com



-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 188 bytes --]

^ permalink raw reply	[flat|nested] 26+ messages in thread

* Re: [meta-qt5][PATCH 4/5] qt5-creator: add 3.3.0 of qt-creator
  2015-02-27  8:34     ` Martin Jansa
@ 2015-02-27  8:36       ` Andreas Müller
  0 siblings, 0 replies; 26+ messages in thread
From: Andreas Müller @ 2015-02-27  8:36 UTC (permalink / raw)
  To: openembedded-devel

On Fri, Feb 27, 2015 at 9:34 AM, Martin Jansa <martin.jansa@gmail.com> wrote:
> On Fri, Feb 27, 2015 at 07:50:54AM +0100, Martin Jansa wrote:
>> On Tue, Jan 27, 2015 at 06:53:52AM +0100, Andreas Müller wrote:
>> > * this is the first version which dropped qt4 support
>> > * rename recipe to avoid conflicts with meta-oe's qt-creator
>>
>> It still conflicts with qt-creator in sysroot on couple files, please try to
>> change it to use different datadir or don't stage datadir in sysroot at all (if
>> it works without it).
>
> I'm going to merge this together with 5.4.1 but please look into this
> issue possibly together with 3.3.1 upgrade.
>
> Thanks
>
OK

Andreas


^ permalink raw reply	[flat|nested] 26+ messages in thread

end of thread, other threads:[~2015-02-27  8:36 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-01-27  5:53 [meta-qt5][PATCH 0/5] qt-creator for target machine Andreas Müller
2015-01-27  5:53 ` [meta-qt5][PATCH 1/5] qtbase: remove patches required for native(-sdk) only Andreas Müller
2015-02-18 16:09   ` Martin Jansa
2015-02-18 17:35     ` Andreas Müller
2015-02-19 14:47       ` Martin Jansa
2015-02-19 15:30         ` Andreas Müller
2015-02-19 16:14           ` Martin Jansa
2015-01-27  5:53 ` [meta-qt5][PATCH 2/5] qtbase/EXTERNAL_HOST_BINS: split out code only required for native-(sdk) Andreas Müller
2015-01-27  5:53 ` [meta-qt5][PATCH 3/5] qtbase: build qmake for target with paths aligned Andreas Müller
2015-01-27  5:53 ` [meta-qt5][PATCH 4/5] qt5-creator: add 3.3.0 of qt-creator Andreas Müller
2015-02-05 15:18   ` Raphael Philipe
2015-02-05 16:11     ` Andreas Müller
2015-02-05 16:15       ` Andreas Müller
2015-02-05 17:22         ` Raphael Philipe
2015-02-05 17:27           ` Otavio Salvador
2015-02-05 20:34           ` Andreas Müller
2015-02-06  0:27             ` Firstname Lastname
2015-02-11 15:10               ` Raphael Philipe
2015-02-11 16:59                 ` Andreas Müller
2015-02-27  6:50   ` Martin Jansa
2015-02-27  8:33     ` Andreas Müller
2015-02-27  8:34     ` Martin Jansa
2015-02-27  8:36       ` Andreas Müller
2015-01-27  5:53 ` [meta-qt5][PATCH 5/5] add gdb append to enable python packageconfig Andreas Müller
2015-01-28 10:51 ` [meta-qt5][PATCH 0/5] qt-creator for target machine Martin Jansa
2015-01-28 12:13   ` Andreas Müller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.