码迷,mamicode.com
首页 > 编程语言 > 详细

Kdevelop的C++断点调试设置

时间:2018-05-04 11:45:59      阅读:538      评论:0      收藏:0      [点我收藏+]

标签:默认   usr   pytho   imu   lists   class   required   release   highlight   

1. CMakeLists.txt 需要设置为 Debug 模式

示例

cmake_minimum_required(VERSION 2.8)

Project (Eigen_test)
include_directories("/usr/include/eigen3")

# Debug mode 
SET(CMAKE_BUILD_TYPE "Debug")

# Release mode 
# SET(CMAKE_BUILD_TYPE "Debug")
# Or just do not set CMAKE_BUILD_TYPE

add_executable(Eigen_test test_eigen.cpp)

 

2. 在Kdevelop中

Run -> Configure Launches... 设置一下(一般默认就可以,由于我之前配置的是python ,所以新建了一个Configuration)

技术分享图片

在代码中建立断点;

ctrl + alt + B (或者鼠标)

技术分享图片

运行 F9 (或者鼠标操作)

单步 F10

跳入 F11

跳出 F12

Kdevelop的C++断点调试设置

标签:默认   usr   pytho   imu   lists   class   required   release   highlight   

原文地址:https://www.cnblogs.com/alexYuin/p/8989295.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!