使用QT Creator除錯ROS工程

2021-10-03 12:20:47 字數 1458 閱讀 2424

sudo

cd desktop/

sudo gedit org.qt-project.qtcreator.desktop

2. 對其進行如下修改:

[desktop entry]

type

exec

=bash -i -c /opt/qt5.12.6/tools/qtcreator/bin/qtcreator

name

=qt creator-ros

genericname

=the ide of choice for qt development.

icon

=qtproject-qtcreator

terminal

=false

categories

=development;ide;qt;

mimetype

3. 修改 exec 變數一行,中間新增 bash -i -c ,即改為 exec=bash -i -c /opt/qt5.12.1/tools/qtcreator/bin/qtcreator,然後儲存並退出。(黃色部分的路徑為qtcreator的安裝路徑)4.為org.qt-project.qtcreator.desktop賦予許可權

sudo

chmod +*** org.qt-project.qtcreator.desktop

1. 開啟qt creator,在選單tools-option-build&run-kits下,新增乙個新的kit,如下圖所示;

2. 更改「cmake configuration」中的環境變數,如下:

更改cmake_prefix_path:string變數為ros的安裝路徑,例如「/opt/ros/kinetic」;

新增catkin_devel_prefix:internal的路徑為ros工作空間下的devel路徑,例如「/home/zhkai/catkin_ws/devel」;

3. 將debug、release等的路徑改為ros工作空間下的build路徑,例如「/home/zhkai/catkin_ws/build」。如下圖所示:

Qt Creator 程式除錯

前期安裝了qt creator來寫c 程式,今天進行了乙個簡單的程式除錯。我的環境是ubuntu14,安裝了qt 5.2.1。除錯程式的時候一般用debug模式,網上一些解決方案說在project裡面改edit build configuration 有debug和release選項 不過我的只有d...

QtCreator除錯設定(CDB除錯設定

在使用qtcreator時,整個ide使用感覺還是很不錯的,尤其是除錯的快捷鍵和vs是一致的的,但是在windows平台上gdb偵錯程式表現確實不是很好,所以決定使用 一下微軟的偵錯程式,qtcreator只支援gdb和cdb兩種偵錯程式,現在開始動手進行吧 一定要選擇debugging tools...

Qtcreator 遠端除錯程式

在pc上使用qtcreator開發的程式想要在開發板上調試執行需要進行一些設定。1.首先,使用ssh登入到開發板 ssh root 192.168.1.136 以使用者名稱root登入ip位址為192.168.1.136的開發板。執行這條命令後會提示輸入密碼。root 192.168.1.136 s...