only one QPushButton with QWidget works
-
wrote on 11 Sept 2019, 14:25 last edited by K-Str 9 Nov 2019, 14:31
@JonB ,
thanks for your answer,
Is it also possible to start a script where you can pass the full path application?
Maybe a script which gets the application in a environment variable or so. E.g ??full-path-of-appl??* is the environment variable:
ScriptMyGDB
export DISPLAY=:0 gdbserver ??*full-path-of-appl*??
this means I have to start the script MyGDB by Qt-creator
-
@JonB ,
thanks for your answer,
Is it also possible to start a script where you can pass the full path application?
Maybe a script which gets the application in a environment variable or so. E.g ??full-path-of-appl??* is the environment variable:
ScriptMyGDB
export DISPLAY=:0 gdbserver ??*full-path-of-appl*??
this means I have to start the script MyGDB by Qt-creator
wrote on 11 Sept 2019, 14:31 last edited by JonB 9 Nov 2019, 14:32@k-str
Don't follow your question. In a script you can do whatever you could do from the command-line. If you mean: can a script access environment variables, or can a script examine and pass on arguments passed to it, the answer to both is yes.You need to look at the documentation of whatever shell you are using for its scripting syntax. If you're Linux the standard one these days is
bash
, I don't know if that applies to whatever mobile. In your question I wonder if you're asking if you can pass an argument to the script on the command line and then pass it on to yourgdbserver
? In which case inbash
script try:gdbserver "$1"
If it's in an envivironment variable:
gdbserver "$SOMEVARIABLE"
-
wrote on 12 Sept 2019, 09:49 last edited by K-Str 9 Dec 2019, 09:50
Hi @JonB ,
thanks for your tip but I cannot find a way how to do this.
Is there a way to execute a program by Qt-Creator by running a bash-script on the target machine (=raspberry)?
It should look like :#!/bin/bash export DISPLAY=:0 ??run or debug** <*application*>??
Maybe this is a new topic?
-
Hi @JonB ,
thanks for your tip but I cannot find a way how to do this.
Is there a way to execute a program by Qt-Creator by running a bash-script on the target machine (=raspberry)?
It should look like :#!/bin/bash export DISPLAY=:0 ??run or debug** <*application*>??
Maybe this is a new topic?
wrote on 12 Sept 2019, 09:55 last edited by@k-str
I don't know because I don't use Qt Creator! You should look at wherever it documents its command line arguments, maybe you goqt-creator project-pro-file
?Having said that, I would advise you again to consider what I have suggested about not having to use a separate script file and instead making your code use
qputenv()
to set theDISPLAY
environment variable very early, if it's not already set (useqgetetnv()
for that), if you can make that work. Your life will be easier for both development and release if you do not have a separate wrapper. -
Hi @JonB ,
thanks for your tip but I cannot find a way how to do this.
Is there a way to execute a program by Qt-Creator by running a bash-script on the target machine (=raspberry)?
It should look like :#!/bin/bash export DISPLAY=:0 ??run or debug** <*application*>??
Maybe this is a new topic?
@k-str There is no need for this script work around when running in QtCreator: go to Projects/Build & Run/Run and add the DISPLAY variable there in "Run Environment".
-
@jsulm ,
thanks, this sounds quiet easy! But I cannot find the point "Run Environment" where I can insert DISPLAY=:0.
See screenshot:
-
@jsulm ,
thanks, this sounds quiet easy! But I cannot find the point "Run Environment" where I can insert DISPLAY=:0.
See screenshot:
@k-str Scroll down...
-
wrote on 17 Sept 2019, 11:18 last edited by K-Str
@jsulm, hi to all,
I'm sorry, but I think I made some failures.
I checked everything and I think the problem is the LCD hardware.
I use one- QUIMAT 3.5"
- HDMI Display-B
- 480x320 Dots V1.2
- type MPI3508
- pen interface SPI
Maybe this cannot handle EGL mode.
Which plugin should I use for this LCD display?
I configered xcb but this is not ok. See below.
Now I installed Qt completely new using this instructions:
[https://wiki.qt.io/RaspberryPi2EGLFS]
and also some modifications from here;
[https://forum.qt.io/topic/83700/raspberry-pi-3-compile-with-x11-eglf-not-wanted]
The configuration command is:./configure -release -no-eglfs -qt-xcb -xcb -device linux-rasp-pi3-g++ -device-option CROSS_COMPILE=~/raspi/tools/arm-bcm2708/gcc-linaro-arm-linux-gnueabihf-raspbian-x64/bin/arm-linux-gnueabihf- -sysroot ~/raspi/sysroot -opensource -confirm-license -make libs -prefix /usr/local/qt5pi -extprefix ~/raspi/qt5pi -hostprefix ~/raspi/qt5 -v -no-use-gold-linker
But I still get errors
qt.qpa.plugin: Could not find the Qt platform plugin "eglfs" in "" This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem. Available platform plugins are: linuxfb, minimal, offscreen, vnc, xcb.
Are there instructions how to configure xcb or linuxfb or one of the above mentioned plugins
-
wrote on 9 Oct 2019, 10:15 last edited by K-Str 10 Sept 2019, 13:05
Hello,
I give up to install Qt Creator for remote development. It's like "Sisyphean task".
Now I installed Qt on my Raspberry and here I try to do my work.
I use the RemoteDesktop.
It seems it works for me.
Thanks a lot to all helpers.