QT Application Deployment To T20

I am trying to deploy/debug a QT application in T20
I am following This page to do this
I got this output in QT

20:50:01: Running steps for project MyQtTestApp...
20:50:01: Starting: "/usr/local/oecore-x86_64/sysroots/x86_64-angstromsdk-linux/usr/bin/qmake2" /home/serpent/QTPrjcts/MyQtTestApp/MyQtTestApp.pro -r -spec linux-gnueabi-oe-g++
20:50:01: The process "/usr/local/oecore-x86_64/sysroots/x86_64-angstromsdk-linux/usr/bin/qmake2" exited normally.
20:50:01: Starting: "/usr/bin/make" 
make: Nothing to be done for `first'.
20:50:01: The process "/usr/bin/make" exited normally.
20:50:01: The remote file system has 746 megabytes of free space, going ahead.
20:50:01: Deploy step finished.
20:50:01: No deployment action necessary. Skipping.
20:50:01: Deploy step finished.
20:50:01: Elapsed time: 00:00.

Colibri development board connected and building also seems ok. Something wrong with make mechanism

This is the build output

08:47:12: Running steps for project MyQtTestApp...
    08:47:12: Starting: "/usr/local/oecore-x86_64/sysroots/x86_64-angstromsdk-linux/usr/bin/qmake2" /home/serpent/QTPrjcts/MyQtTestApp/MyQtTestApp.pro -r -spec linux-gnueabi-oe-g++
    08:47:12: The process "/usr/local/oecore-x86_64/sysroots/x86_64-angstromsdk-linux/usr/bin/qmake2" exited normally.
    08:47:12: Starting: "/usr/bin/make" 
    /usr/local/oecore-x86_64/sysroots/x86_64-angstromsdk-linux/usr/bin/uic4 ../MyQtTestApp/mainwindow.ui -o ui_mainwindow.h
    arm-angstrom-linux-gnueabi-g++  -mfpu=vfpv3-d16 -march=armv7-a -mthumb  -mthumb-interwork -mfloat-abi=hard --sysroot=/usr/local/oecore-x86_64/sysroots/armv7at2hf-vfp-angstrom-linux-gnueabi -c -pipe  -O2 -pipe -g -feliminate-unused-debug-types -O2 -Wall -W -D_REENTRANT -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/local/oecore-x86_64/sysroots/armv7at2hf-vfp-angstrom-linux-gnueabi/usr/share/qtopia/mkspecs/linux-g++ -I../MyQtTestApp -I/usr/local/oecore-x86_64/sysroots/armv7at2hf-vfp-angstrom-linux-gnueabi/usr/include/qtopia/QtCore -I/usr/local/oecore-x86_64/sysroots/armv7at2hf-vfp-angstrom-linux-gnueabi/usr/include/qtopia/QtGui -I/usr/local/oecore-x86_64/sysroots/armv7at2hf-vfp-angstrom-linux-gnueabi/usr/include/qtopia -I. -I. -I../MyQtTestApp -I. -o mainwindow.o ../MyQtTestApp/mainwindow.cpp
    arm-angstrom-linux-gnueabi-g++  -mfpu=vfpv3-d16 -march=armv7-a -mthumb  -mthumb-interwork -mfloat-abi=hard --sysroot=/usr/local/oecore-x86_64/sysroots/armv7at2hf-vfp-angstrom-linux-gnueabi -Wl,-O1 -Wl,--hash-style=gnu -Wl,--as-needed -Wl,-rpath-link,/usr/local/oecore-x86_64/sysroots/armv7at2hf-vfp-angstrom-linux-gnueabi/usr/lib -o MyQtTestApp main.o mainwindow.o moc_mainwindow.o    -L/usr/local/oecore-x86_64/sysroots/armv7at2hf-vfp-angstrom-linux-gnueabi/usr/lib -lQtGuiE -lQtNetworkE -lQtCoreE -lpthread 
    08:47:13: The process "/usr/bin/make" exited normally.
    08:47:13: Elapsed time: 00:01.

Debugging

Debugging starts
Process  created; pid = 591
Cannot exec : No such file or directory.

Child exited with status 127
No program to debug.  GDBserver exiting.
Debugging has failed
Debugging has finished

run

`Cannot run: No command given`.

Seems Some setting I have not done here.
Please help

Your GDB is not finding the shell interpreter, try it on target:

export SHELL=/bin/sh

But its application is being built usually by the log generated in the build.


Cleiton Bueno

Blog | Linkedin | B2Open

Your GDB is not finding the shell
interpreter, try it on target:

export SHELL=/bin/sh

I don’t understand how to do it. I tried this command in the terminal or target and host. But No change