Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Qt creator remote debugger

I am trying to hook my beagle board to qt creator 2.3.1 running on Ubuntu Linux. I tried to find a good tutorial for this and found that qt documentation has nothing on this.(I do not understand why there is a feature which documentation does not bother to explain how to use). Could some one please explain how to do this?

like image 768
Tharanga Avatar asked Nov 05 '22 10:11

Tharanga


1 Answers

  1. Cross compile qt for beagle board This post should be at help

  2. Open Qtcreator and go to project tab and select the tools -> options. Select Linux devices and add the device. For this beagle board need to be attached. For the option of host name it is required to add the ip address of the device. Other than this other fields are self explanatory. Test Button would assist in checking the device addition.

  3. Then in the project settings under Run configuration in the Deployment drop-down box select Build tar ball and install.

  4. At this point tool chain and the cross compiled qt version should be added in the qt creator.

  5. Basic procedure should be done by now and when the application is run it should be deployed on the device at the specified location.

like image 79
Tharanga Avatar answered Nov 12 '22 16:11

Tharanga