1. 用VIM和ctags/cscope。
在linux下提供一个完整的IDE, Vim的快速上手--直接跑一下vimtutor,按照里面的训练要求对vim命令的熟悉。
ctags/cscope目的是帮助程序员对程序的浏览。
http://easwy.com/blog/archives/vim-cscope-ctags/
2. GDB工具。
这个是GNU提供的一个代码Debug工具,其功能和VS提供的debug功能相同。
快速上手:
http://www.huihoo.org/gnu/linux/gdb.html
http://www.cs.cmu.edu/~gilpin/tutorial/
3. Valgrind工具。
是linux下的一个内存泄露检测工具。
4. gprof工具。
是linux下的一个性能优化工具,用于帮助找出程序中的瓶颈。
快速上手:
http://blog.csdn.net/suwei19870312/article/details/6932419
另外这里有一个人的两篇博文:
分别对linux的这几个工具进行了简单的讲解:
http://vivtek.in/blog/2011/technical/greenhorns-guide-to-development-tools-in-linux-using-vim-ctags-cscope/
http://vivtek.in/blog/2011/technical/greenhorns-guide-to-development-tools-in-linux-using-gdb-valgrind-and-gprof/