* [Buildroot] QT support for Buildroot RFS. [not found] <1F383CDA589639468828C7E2B75EDE9D06029498@POCITMSEXMB02.LntUniverse.com> @ 2011-11-07 8:16 ` Mahanteshwari Hiremath 2011-11-07 9:03 ` Diego Iastrubni ` (2 more replies) 0 siblings, 3 replies; 8+ messages in thread From: Mahanteshwari Hiremath @ 2011-11-07 8:16 UTC (permalink / raw) To: buildroot Hi, I am trying to buid buildroot RFS with QT supprt. I have enabled C++ support in toolchain and Qt support in package selection --> Graphic libraries --> Qt. after 'make' I can see qmake getting installed in staging/usr/bin. What are the necessary changes(settings) i have to do inorder to get qmake installed in target/bin and libraries in target/lib(nothing but RFS). Kindly suggest me. Regards, Mahanteshwari Hiremath. Larsen & Toubro Limited www.larsentoubro.com This Email may contain confidential or privileged information for the intended recipient (s) If you are not the intended recipient, please do not use or disseminate the information, notify the sender and delete it from your system. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20111107/c647f1a2/attachment.html> ^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] QT support for Buildroot RFS. 2011-11-07 8:16 ` [Buildroot] QT support for Buildroot RFS Mahanteshwari Hiremath @ 2011-11-07 9:03 ` Diego Iastrubni 2011-11-07 9:07 ` Yegor Yefremov 2011-11-07 9:52 ` Thomas Petazzoni 2 siblings, 0 replies; 8+ messages in thread From: Diego Iastrubni @ 2011-11-07 9:03 UTC (permalink / raw) To: buildroot On Mon, Nov 7, 2011 at 10:16 AM, Mahanteshwari Hiremath < Mahanteshwari.Hiremath@lnties.com> wrote: > Hi, > I am trying to buid buildroot RFS with QT supprt. > I have enabled C++ support in toolchain and Qt support in package > selection --> Graphic libraries --> Qt. > after 'make' I can see qmake getting installed in staging/usr/bin. > > What are the necessary changes(settings) i have to do inorder to get qmake > installed in target/bin and libraries in target/lib(nothing but RFS). > > X11 or embedded? -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20111107/4113f7f2/attachment.html> ^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] QT support for Buildroot RFS. 2011-11-07 8:16 ` [Buildroot] QT support for Buildroot RFS Mahanteshwari Hiremath 2011-11-07 9:03 ` Diego Iastrubni @ 2011-11-07 9:07 ` Yegor Yefremov 2011-11-07 10:11 ` Mahanteshwari Hiremath 2011-11-07 9:52 ` Thomas Petazzoni 2 siblings, 1 reply; 8+ messages in thread From: Yegor Yefremov @ 2011-11-07 9:07 UTC (permalink / raw) To: buildroot On Mon, Nov 7, 2011 at 9:16 AM, Mahanteshwari Hiremath <Mahanteshwari.Hiremath@lnties.com> wrote: > Hi, > ????????? I am trying to buid buildroot RFS with QT supprt. > I have enabled C++ support in toolchain and Qt support in package selection > --> Graphic libraries --> Qt. > after 'make'? I can see qmake getting installed in staging/usr/bin. > > What are the necessary changes(settings) i have to do inorder to get qmake > installed in target/bin and libraries in target/lib(nothing but RFS). What are you going to do? Are you going to compile the final program on your target device directly? What is the problem with cross-compiling? Yegor ^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] QT support for Buildroot RFS. 2011-11-07 9:07 ` Yegor Yefremov @ 2011-11-07 10:11 ` Mahanteshwari Hiremath 2011-11-07 10:17 ` Thomas Petazzoni 2011-11-07 10:59 ` Mahanteshwari Hiremath 0 siblings, 2 replies; 8+ messages in thread From: Mahanteshwari Hiremath @ 2011-11-07 10:11 UTC (permalink / raw) To: buildroot >What are you going to do? Are you going to compile the final program on your target device directly? What is the problem with cross-compiling? >Yegor Hi, Cross compiling is not a problem, I can able to do it. But I want to compile my program directly on target device using qmake, I want to have qmake support on my target. So only I wanted some suggestions in executing this. Regards, Mahanteshwari. Larsen & Toubro Limited www.larsentoubro.com This Email may contain confidential or privileged information for the intended recipient (s) If you are not the intended recipient, please do not use or disseminate the information, notify the sender and delete it from your system. ^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] QT support for Buildroot RFS. 2011-11-07 10:11 ` Mahanteshwari Hiremath @ 2011-11-07 10:17 ` Thomas Petazzoni 2011-11-07 10:23 ` Thomas De Schampheleire 2011-11-07 10:59 ` Mahanteshwari Hiremath 1 sibling, 1 reply; 8+ messages in thread From: Thomas Petazzoni @ 2011-11-07 10:17 UTC (permalink / raw) To: buildroot Le Mon, 7 Nov 2011 10:11:15 +0000, Mahanteshwari Hiremath <Mahanteshwari.Hiremath@lnties.com> a ?crit : > Cross compiling is not a problem, I can able to do it. But I want to > compile my program directly on target device using qmake, I want to > have qmake support on my target. So only I wanted some suggestions in > executing this. This is not supported in the current Buildroot, which does not build qmake for the target. Buildroot is designed for cross-compilation, i.e the situation where your target is rather slow compared to your development PC, and therefore cases for which native compilation is not possible or really too painful. We have some support to have a native toolchain on the target (so you can build standard C or C++ programs on the target), but we don't support that for Qt. If you want, you can work on extending the Qt .mk file to also generate a qmake for the target, but I think it's going to be very complicated for a benefit that isn't really obvious to me. 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] 8+ messages in thread
* [Buildroot] QT support for Buildroot RFS. 2011-11-07 10:17 ` Thomas Petazzoni @ 2011-11-07 10:23 ` Thomas De Schampheleire 0 siblings, 0 replies; 8+ messages in thread From: Thomas De Schampheleire @ 2011-11-07 10:23 UTC (permalink / raw) To: buildroot On Mon, Nov 7, 2011 at 11:17 AM, Thomas Petazzoni <thomas.petazzoni@free-electrons.com> wrote: > Le Mon, 7 Nov 2011 10:11:15 +0000, > Mahanteshwari Hiremath <Mahanteshwari.Hiremath@lnties.com> a ?crit : > >> Cross compiling is not a problem, I can able to do it. But I want to >> compile my program directly on target device using qmake, I want to >> have qmake support on my target. So only I wanted some suggestions in >> executing this. > > This is not supported in the current Buildroot, which does not build > qmake for the target. Buildroot is designed for cross-compilation, i.e > the situation where your target is rather slow compared to your > development PC, and therefore cases for which native compilation is not > possible or really too painful. We have some support to have a native > toolchain on the target (so you can build standard C or C++ programs on > the target), but we don't support that for Qt. > > If you want, you can work on extending the Qt .mk file to also generate > a qmake for the target, but I think it's going to be very complicated > for a benefit that isn't really obvious to me. Alternatively, you can download and compile Qt on your target itself, with the native toolchain that you installed there. You could even (but this is really far-fetched) install buildroot on your target, and use it to generate qmake (which will be in output/host *on your target*). Best regards, Thomas > > Regards, > > 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] 8+ messages in thread
* [Buildroot] QT support for Buildroot RFS. 2011-11-07 10:11 ` Mahanteshwari Hiremath 2011-11-07 10:17 ` Thomas Petazzoni @ 2011-11-07 10:59 ` Mahanteshwari Hiremath 1 sibling, 0 replies; 8+ messages in thread From: Mahanteshwari Hiremath @ 2011-11-07 10:59 UTC (permalink / raw) To: buildroot Hi Thomas, thank you for your reply. i will consider your opinions for further steps. Regards, Mahanteshwari Hiremath. Larsen & Toubro Limited www.larsentoubro.com This Email may contain confidential or privileged information for the intended recipient (s) If you are not the intended recipient, please do not use or disseminate the information, notify the sender and delete it from your system. ^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] QT support for Buildroot RFS. 2011-11-07 8:16 ` [Buildroot] QT support for Buildroot RFS Mahanteshwari Hiremath 2011-11-07 9:03 ` Diego Iastrubni 2011-11-07 9:07 ` Yegor Yefremov @ 2011-11-07 9:52 ` Thomas Petazzoni 2 siblings, 0 replies; 8+ messages in thread From: Thomas Petazzoni @ 2011-11-07 9:52 UTC (permalink / raw) To: buildroot Le Mon, 7 Nov 2011 08:16:52 +0000, Mahanteshwari Hiremath <Mahanteshwari.Hiremath@lnties.com> a ?crit : > I am trying to buid buildroot RFS with QT supprt. > I have enabled C++ support in toolchain and Qt support in package > selection --> Graphic libraries --> Qt. after 'make' I can see qmake > getting installed in staging/usr/bin. > > What are the necessary changes(settings) i have to do inorder to get > qmake installed in target/bin and libraries in target/lib(nothing but > RFS). qmake is installed in output/host/usr/bin, not inside the staging directory. We only support cross-compilation of Qt application: qmake is not installed on the target. Just use the qmake in output/host/usr/bin to cross-compile your Qt application from your host machine. The Qt libraries are already installed in output/target/usr/lib if you have enabled Qt in the configuration. 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] 8+ messages in thread
end of thread, other threads:[~2011-11-07 10:59 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <1F383CDA589639468828C7E2B75EDE9D06029498@POCITMSEXMB02.LntUniverse.com>
2011-11-07 8:16 ` [Buildroot] QT support for Buildroot RFS Mahanteshwari Hiremath
2011-11-07 9:03 ` Diego Iastrubni
2011-11-07 9:07 ` Yegor Yefremov
2011-11-07 10:11 ` Mahanteshwari Hiremath
2011-11-07 10:17 ` Thomas Petazzoni
2011-11-07 10:23 ` Thomas De Schampheleire
2011-11-07 10:59 ` Mahanteshwari Hiremath
2011-11-07 9:52 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox