PDA

View Full Version : qtprocess_stub_process



jasleen kaur
30th October 2012, 09:19
hi
I am getting this Dialog qtcreator_stub_process on running my program on Qt creator. My program gets open in creator, output does not shown.

jasleen kaur
31st October 2012, 06:54
And I am getting this

Starting /home/jasleen/Desktop/librecad/LibreCAD/unix/ttf2lff...
/home/jasleen/Desktop/librecad/LibreCAD/unix/ttf2lff exited with code 0

ChrisW67
31st October 2012, 07:10
The stub process is used to launch a program that is configured to run in a terminal. The error message in the window is from your terminal program (usually xterm) or whatever the shell is executing on startup before your application starts. The offending command is in your environment and not part of Qt. Look for offenders containing a call to ttf2cxf in ~/.bashrc, ~/.bash_profile, ~/.profile if bash is your usual shell.

Alternatively, if your program is using QProcess to call ttf2cxf the your command line is incorrect.