写 C 程序时,编译器报错是家常便饭。本附录把最常见的编译错误、段错误和内存问题整理成对照表,帮助你快速定位问题。同时介绍 gdb 和 Valgrind 两个排错利器。 C.1 常见编译错误信息对照表 assignment makes integer from pointer without a cast 从指针赋值给整数,未做 ...
# build without the valgrind supported binary output bash make.sh -o no-valgrind # build without the valgrind supported and i386 binary output bash make.sh -o no-valgrind -o no-m32 In short, using -o ...