* [Buildroot] qt5: No SOURCES in qmake created Makefiles @ 2013-06-17 14:13 Andreas Naumann 2013-06-17 14:22 ` Thomas Petazzoni 0 siblings, 1 reply; 7+ messages in thread From: Andreas Naumann @ 2013-06-17 14:13 UTC (permalink / raw) To: buildroot Hi Thomas, when using qt4 up till now I used the output/host/usr/bin/qmake to prepare out of tree projects/examples for compilation. Worked like a charm and i was very happy being able to use a consistent toolchain for that. However when I try the same with the qt5 qmake binary, the the SOURCES of the .pro file (and maybe other options) dont make it into the Makefile. So running make results in "Nothing to do for target first". Have you or anybody else successfully compiled out of tree qt5 applications and if so how? Or, are there any examples on writing a package for qt5 applications? thanks and regards, Andreas ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] qt5: No SOURCES in qmake created Makefiles 2013-06-17 14:13 [Buildroot] qt5: No SOURCES in qmake created Makefiles Andreas Naumann @ 2013-06-17 14:22 ` Thomas Petazzoni 2013-06-17 16:57 ` Charles Krinke 0 siblings, 1 reply; 7+ messages in thread From: Thomas Petazzoni @ 2013-06-17 14:22 UTC (permalink / raw) To: buildroot Dear Andreas Naumann, On Mon, 17 Jun 2013 16:13:32 +0200, Andreas Naumann wrote: > when using qt4 up till now I used the output/host/usr/bin/qmake to > prepare out of tree projects/examples for compilation. Worked like a > charm and i was very happy being able to use a consistent toolchain for > that. Using output/host/usr/bin/qmake is indeed the correct way and is supposed to do the right thing in terms of toolchain and flags and so on. > However when I try the same with the qt5 qmake binary, the the SOURCES > of the .pro file (and maybe other options) dont make it into the > Makefile. Can you clarify exactly what happens? > So running make results in "Nothing to do for target first". > Have you or anybody else successfully compiled out of tree qt5 > applications and if so how? Or, are there any examples on writing a > package for qt5 applications? It has been a few months now, but when I did the Qt5 packaging, I'm pretty sure I did test a sample Hello World application that was compiled "out of tree" (i.e not a Buildroot package) with output/host/usr/bin/qmake. There may have been some regressions/issues in the mean time, though. Thomas -- Thomas Petazzoni, Free Electrons Kernel, drivers, real-time and embedded Linux development, consulting, training and support. http://free-electrons.com ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] qt5: No SOURCES in qmake created Makefiles 2013-06-17 14:22 ` Thomas Petazzoni @ 2013-06-17 16:57 ` Charles Krinke 2013-06-18 15:37 ` Andreas Naumann 0 siblings, 1 reply; 7+ messages in thread From: Charles Krinke @ 2013-06-17 16:57 UTC (permalink / raw) To: buildroot Dear Andreas: I am using a similar recipe with Qt-5.0.2 as with Qt-4.8.2 for out of tree application builds, that is, exporting the PATH prefix to output/host/usr/bin/qmake and now specifying the mkspec in mkspec/devices/linux-buildroot-g++, so I can confirm this works and is both finding the Qt5 *stuff* and the TI es3 *stuff*. Now, I am using Wojeich's patch for the mkspec as it is a lot simpler and actually works then the one that brings in the Graphics_SDK, but lets assume that is not your issue. Charles On 6/17/13, Thomas Petazzoni <thomas.petazzoni@free-electrons.com> wrote: > Dear Andreas Naumann, > > On Mon, 17 Jun 2013 16:13:32 +0200, Andreas Naumann wrote: > >> when using qt4 up till now I used the output/host/usr/bin/qmake to >> prepare out of tree projects/examples for compilation. Worked like a >> charm and i was very happy being able to use a consistent toolchain for >> that. > > Using output/host/usr/bin/qmake is indeed the correct way and is > supposed to do the right thing in terms of toolchain and flags and so > on. > >> However when I try the same with the qt5 qmake binary, the the SOURCES >> of the .pro file (and maybe other options) dont make it into the >> Makefile. > > Can you clarify exactly what happens? > >> So running make results in "Nothing to do for target first". >> Have you or anybody else successfully compiled out of tree qt5 >> applications and if so how? Or, are there any examples on writing a >> package for qt5 applications? > > It has been a few months now, but when I did the Qt5 packaging, I'm > pretty sure I did test a sample Hello World application that was > compiled "out of tree" (i.e not a Buildroot package) with > output/host/usr/bin/qmake. There may have been some regressions/issues > in the mean time, though. > > Thomas > -- > Thomas Petazzoni, Free Electrons > Kernel, drivers, real-time and embedded Linux > development, consulting, training and support. > http://free-electrons.com > _______________________________________________ > buildroot mailing list > buildroot at busybox.net > http://lists.busybox.net/mailman/listinfo/buildroot > -- Charles Krinke ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] qt5: No SOURCES in qmake created Makefiles 2013-06-17 16:57 ` Charles Krinke @ 2013-06-18 15:37 ` Andreas Naumann 2013-06-18 17:06 ` Thomas Petazzoni 0 siblings, 1 reply; 7+ messages in thread From: Andreas Naumann @ 2013-06-18 15:37 UTC (permalink / raw) To: buildroot Dear Thomas and Charles In order to reproduce the issue I used the beaglebone_defconfig, changed to linaro toolchain and activated a minimal qt5 set: BR2_PACKAGE_QT5=y BR2_PACKAGE_QT5BASE=y BR2_PACKAGE_QT5BASE_LICENSE_APPROVED=y BR2_PACKAGE_QT5BASE_GUI=y BR2_PACKAGE_QT5BASE_WIDGETS=y BR2_PACKAGE_QT5BASE_LINUXFB=y BR2_PACKAGE_QT5JSBACKEND=y Now I have been going back in revisions and find the problem to start exactly when switching to qt 5.0.2 (d6b2bac qt5: bump to 5.0.2). So I have been looking through the release notes (http://blog.qt.digia.com/blog/2013/04/10/qt-5-0-2-released/) but nothing really rings a bell. But I'm not very knowledgable in the qt build framework. So Charles, I'm interested in how you still get it working. What do you mean with similar recipe? Do you use the qt-5.0.2 package from buildroot? Which QT5 configs, toolchain, board? regards Andreas Am 17.06.2013 18:57, schrieb Charles Krinke: > Dear Andreas: > > I am using a similar recipe with Qt-5.0.2 as with Qt-4.8.2 for out of > tree application builds, that is, exporting the PATH prefix to > output/host/usr/bin/qmake and now specifying the mkspec in > mkspec/devices/linux-buildroot-g++, so I can confirm this works and is > both finding the Qt5 *stuff* and the TI es3 *stuff*. > > Now, I am using Wojeich's patch for the mkspec as it is a lot simpler > and actually works then the one that brings in the Graphics_SDK, but > lets assume that is not your issue. > > Charles > > On 6/17/13, Thomas Petazzoni <thomas.petazzoni@free-electrons.com> wrote: >> Dear Andreas Naumann, >> >> On Mon, 17 Jun 2013 16:13:32 +0200, Andreas Naumann wrote: >> >>> when using qt4 up till now I used the output/host/usr/bin/qmake to >>> prepare out of tree projects/examples for compilation. Worked like a >>> charm and i was very happy being able to use a consistent toolchain for >>> that. >> >> Using output/host/usr/bin/qmake is indeed the correct way and is >> supposed to do the right thing in terms of toolchain and flags and so >> on. >> >>> However when I try the same with the qt5 qmake binary, the the SOURCES >>> of the .pro file (and maybe other options) dont make it into the >>> Makefile. >> >> Can you clarify exactly what happens? >> >>> So running make results in "Nothing to do for target first". >>> Have you or anybody else successfully compiled out of tree qt5 >>> applications and if so how? Or, are there any examples on writing a >>> package for qt5 applications? >> >> It has been a few months now, but when I did the Qt5 packaging, I'm >> pretty sure I did test a sample Hello World application that was >> compiled "out of tree" (i.e not a Buildroot package) with >> output/host/usr/bin/qmake. There may have been some regressions/issues >> in the mean time, though. >> >> Thomas >> -- >> Thomas Petazzoni, Free Electrons >> Kernel, drivers, real-time and embedded Linux >> development, consulting, training and support. >> http://free-electrons.com >> _______________________________________________ >> buildroot mailing list >> buildroot at busybox.net >> http://lists.busybox.net/mailman/listinfo/buildroot >> > > ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] qt5: No SOURCES in qmake created Makefiles 2013-06-18 15:37 ` Andreas Naumann @ 2013-06-18 17:06 ` Thomas Petazzoni 2013-06-27 13:57 ` Andreas Naumann 0 siblings, 1 reply; 7+ messages in thread From: Thomas Petazzoni @ 2013-06-18 17:06 UTC (permalink / raw) To: buildroot Dear Andreas Naumann, On Tue, 18 Jun 2013 17:37:26 +0200, Andreas Naumann wrote: > In order to reproduce the issue I used the beaglebone_defconfig, changed > to linaro toolchain and activated a minimal qt5 set: > BR2_PACKAGE_QT5=y > BR2_PACKAGE_QT5BASE=y > BR2_PACKAGE_QT5BASE_LICENSE_APPROVED=y > BR2_PACKAGE_QT5BASE_GUI=y > BR2_PACKAGE_QT5BASE_WIDGETS=y > BR2_PACKAGE_QT5BASE_LINUXFB=y > BR2_PACKAGE_QT5JSBACKEND=y > > Now I have been going back in revisions and find the problem to start > exactly when switching to qt 5.0.2 (d6b2bac qt5: bump to 5.0.2). So I > have been looking through the release notes > (http://blog.qt.digia.com/blog/2013/04/10/qt-5-0-2-released/) but > nothing really rings a bell. But I'm not very knowledgable in the qt > build framework. Ah, ah, this is interesting. I'll try to reproduce and let you know what I find. Thanks, Thomas -- Thomas Petazzoni, Free Electrons Kernel, drivers, real-time and embedded Linux development, consulting, training and support. http://free-electrons.com ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] qt5: No SOURCES in qmake created Makefiles 2013-06-18 17:06 ` Thomas Petazzoni @ 2013-06-27 13:57 ` Andreas Naumann 2013-06-28 9:50 ` Thomas Petazzoni 0 siblings, 1 reply; 7+ messages in thread From: Andreas Naumann @ 2013-06-27 13:57 UTC (permalink / raw) To: buildroot Hi, am a little sorry for the fuzz. This worked out to be a non-issue. Seems when using examples from another qt tree, even though absolutely clean within the directory, still build options from the folders above get picked up. When I copied it away, in my case to /tmp/analogclock/, compiling with buildroots qmake from 5.0.2 works just fine. cheers, Andreas Am 18.06.2013 19:06, schrieb Thomas Petazzoni: > Dear Andreas Naumann, > > On Tue, 18 Jun 2013 17:37:26 +0200, Andreas Naumann wrote: > >> In order to reproduce the issue I used the beaglebone_defconfig, changed >> to linaro toolchain and activated a minimal qt5 set: >> BR2_PACKAGE_QT5=y >> BR2_PACKAGE_QT5BASE=y >> BR2_PACKAGE_QT5BASE_LICENSE_APPROVED=y >> BR2_PACKAGE_QT5BASE_GUI=y >> BR2_PACKAGE_QT5BASE_WIDGETS=y >> BR2_PACKAGE_QT5BASE_LINUXFB=y >> BR2_PACKAGE_QT5JSBACKEND=y >> >> Now I have been going back in revisions and find the problem to start >> exactly when switching to qt 5.0.2 (d6b2bac qt5: bump to 5.0.2). So I >> have been looking through the release notes >> (http://blog.qt.digia.com/blog/2013/04/10/qt-5-0-2-released/) but >> nothing really rings a bell. But I'm not very knowledgable in the qt >> build framework. > > Ah, ah, this is interesting. I'll try to reproduce and let you know > what I find. > > Thanks, > > Thomas > ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] qt5: No SOURCES in qmake created Makefiles 2013-06-27 13:57 ` Andreas Naumann @ 2013-06-28 9:50 ` Thomas Petazzoni 0 siblings, 0 replies; 7+ messages in thread From: Thomas Petazzoni @ 2013-06-28 9:50 UTC (permalink / raw) To: buildroot Dear Andreas Naumann, On Thu, 27 Jun 2013 15:57:20 +0200, Andreas Naumann wrote: > am a little sorry for the fuzz. This worked out to be a non-issue. Seems > when using examples from another qt tree, even though absolutely clean > within the directory, still build options from the folders above get > picked up. > When I copied it away, in my case to /tmp/analogclock/, compiling with > buildroots qmake from 5.0.2 works just fine. I do reproduce your problem now: when building an example from within the Qt source tree, it fails with "Nothing to do for target first", when copying the source code of the example outside of Qt source tree, the building goes on nicely. We still should fix this, examples are supposed to build from within the Qt source tree. Best regards, Thomas -- Thomas Petazzoni, Free Electrons Kernel, drivers, real-time and embedded Linux development, consulting, training and support. http://free-electrons.com ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2013-06-28 9:50 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2013-06-17 14:13 [Buildroot] qt5: No SOURCES in qmake created Makefiles Andreas Naumann 2013-06-17 14:22 ` Thomas Petazzoni 2013-06-17 16:57 ` Charles Krinke 2013-06-18 15:37 ` Andreas Naumann 2013-06-18 17:06 ` Thomas Petazzoni 2013-06-27 13:57 ` Andreas Naumann 2013-06-28 9:50 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox