How to isolate my Qt program in raspberry pi!?
-
@SGaist QML
@MAthias_Va I think the question is rather whether you're using X11, directfb, ...
-
@MAthias_Va I think the question is rather whether you're using X11, directfb, ...
@jsulm I don't think I use any of them, I just cross compiled my Linux PC to run the Qt program directly on Raspberry pi!
-
@jsulm I don't think I use any of them, I just cross compiled my Linux PC to run the Qt program directly on Raspberry pi!
@MAthias_Va Well, you for sure do if you see a graphical user interface :-)
-
@MAthias_Va Well, you for sure do if you see a graphical user interface :-)
@jsulm If you say so, then How to know which one I used? if I didn't use it Intentionally :)
-
@jsulm If you say so, then How to know which one I used? if I didn't use it Intentionally :)
@MAthias_Va What is running on your device? Raspbian?
-
@MAthias_Va What is running on your device? Raspbian?
@jsulm yes Raspbian Stretch
-
@jsulm yes Raspbian Stretch
@MAthias_Va And what is your desktop environment (is it a standard Raspbian set-up?)?
-
@MAthias_Va And what is your desktop environment (is it a standard Raspbian set-up?)?
@jsulm yes I never Change it
-
@jsulm yes I never Change it
@MAthias_Va Then it is X11. What display do you use?
-
@MAthias_Va Then it is X11. What display do you use?
@jsulm I use the standard Touch display supplied with Raspberry board
-
@jsulm I use the standard Touch display supplied with Raspberry board
@MAthias_Va Did you try any other Qt based app like VLC?
What Qt version do you use? -
@MAthias_Va Did you try any other Qt based app like VLC?
What Qt version do you use?@jsulm VLC, no I didn't! I use Qt5.10.1
-
@jsulm VLC, no I didn't! I use Qt5.10.1
@MAthias_Va said in How to isolate my Qt program in raspberry pi!?:
I use Qt5.10.1
Is it the one provided by Raspbian?
-
@MAthias_Va said in How to isolate my Qt program in raspberry pi!?:
I use Qt5.10.1
Is it the one provided by Raspbian?
@jsulm No I didn't install Qt in my Raspberry
-
@jsulm No I didn't install Qt in my Raspberry
@MAthias_Va Then I guess you're doing cross compilation with cross compiled Qt?
You could try this: install Qt and Qt-dev packages from Raspbian on your device and build your app there. Then try to run it to see whether it behaves in same way or not. -
@MAthias_Va Then I guess you're doing cross compilation with cross compiled Qt?
You could try this: install Qt and Qt-dev packages from Raspbian on your device and build your app there. Then try to run it to see whether it behaves in same way or not.@jsulm Ok I will, thanks
-
@MAthias_Va Then I guess you're doing cross compilation with cross compiled Qt?
You could try this: install Qt and Qt-dev packages from Raspbian on your device and build your app there. Then try to run it to see whether it behaves in same way or not.@jsulm said in How to isolate my Qt program in raspberry pi!?:
what do you mean with:
and build your app there
Do mean the destination folder where I sent the compiled file should be there!
-
@jsulm said in How to isolate my Qt program in raspberry pi!?:
what do you mean with:
and build your app there
Do mean the destination folder where I sent the compiled file should be there!
@MAthias_Va No, I mean build your app directly on your device
-
So I Installed Qt Creator using this commands on my Raspberry:
sudo apt-get install qt4-dev-tools sudo apt-get install qt5-default sudo apt-get install qtcreator
I build a simple program on it to open an ApplicationWindow, but I didn't get the same problem on this case!!
I couldn't build my same program with Qt installed on my raspberry as it is older version than I use on PC!
Any Advice?
-
So I Installed Qt Creator using this commands on my Raspberry:
sudo apt-get install qt4-dev-tools sudo apt-get install qt5-default sudo apt-get install qtcreator
I build a simple program on it to open an ApplicationWindow, but I didn't get the same problem on this case!!
I couldn't build my same program with Qt installed on my raspberry as it is older version than I use on PC!
Any Advice?
@MAthias_Va said in How to isolate my Qt program in raspberry pi!?:
qt4-dev-tools
This is for Qt4. I guess you want to use Qt5? Then install the Qt5 version.