随笔分类 -  CodeBlocks

摘要:http://www.doc88.com/p-787759319028.html 你要使用pretty_printer这个package。具体可参见:wiki的codeblock的org,搜pretty_printers。 大致如下: 1 检查你的MinGW是否使用了支持python的gdb。 a) 阅读全文
posted @ 2016-04-19 15:02 VIPWTL 阅读(602) 评论(0) 推荐(0)
摘要:http://www.360doc.com/content/14/0508/20/12129652_375897294.shtml http://blog.sina.com.cn/s/blog_470fe4710102wbt0.html 阅读全文
posted @ 2016-03-16 11:23 VIPWTL 阅读(227) 评论(0) 推荐(0)
摘要:问题: 刚刚使用codeblocks,但是出现了断点不停留,无法调试,控制台直接闪出的问题。 解决: 1.调试中首先确保是debug模式,release模式无法调试 2.Project” “Build options中请勾选produce debugging symbols 3.最常见的问题,是路径 阅读全文
posted @ 2016-03-15 16:55 VIPWTL 阅读(1742) 评论(1) 推荐(0)
摘要:问题描述: 在main.cpp中调用了一个函数,这个函数申明在func.h中,实现在func.cpp中,但是编译后显示undefined reference func类似的问题 原因: VC++中是没有这个错误的,因为VC++自动把目标文件链接到一起了,而 Codeblocks中并没有这么做。回想起 阅读全文
posted @ 2016-03-15 09:36 VIPWTL