1
zhuzhuor 2012-03-24 23:37:09 +08:00 via iPad
Google gdb
|
2
guoxx_ 2012-03-24 23:53:32 +08:00
cd ~/Desktop/
gcc hello.c -o hello 调试的话就gdb hello break设置断点 run运行程序 print显示变量值 再具体的楼主还是google吧 |
3
66450146 2012-03-24 23:54:54 +08:00
man gcc
man gdb 楼主可以在Linux社区里面找到更详尽的关于gcc和gdb的资料。。。 |
4
musray OP 一并感谢各位~我再研究研究
|
5
013231 2012-03-24 23:59:03 +08:00
1:
cd ~/Desktop 2: gcc hello.c ./a.out 不过你还是找本Linux教材系统的学习一下吧. |
6
stcui 2012-03-25 00:25:22 +08:00
cd ~/Desktop
make hello |
7
stcui 2012-03-25 00:25:52 +08:00
./hello
|
8
musray OP @013231 执行gcc hello.c的时候,提示:“-bash:gcc:command not found”?
是我的机器上没安装gcc么?我是10.7.3,在APP STORE安装了最新版XCODE。 |
9
musray OP @stcui 执行make hello的时候,提示-bash:make:conmmand not found。请问怎么回事儿?和上一楼的问题类似。
|
10
clowwindy 2012-03-25 13:54:28 +08:00
装 Xcode 的 Commandline Tools,编译链就有了
如果你纠结于终端,这个大概就是你想要的…… 1. 学写 Makefile 2. 学 emacs/vim 3. 学 gdb 4. 学 emacs/vim 里使用 gdb 的方法 |