摘要:
1、 -Wall 选项表示 输出所有的警告2、 gcc -g hello.c -o hello 编译文件 (-g 将源文件与目标文件关联) 并且可以使用 adb hello 进入调试模式 start 命令开始调试 n 下一步 s 进入函数 i locals 查看当前stack 中的变量。3、#include “send.h” 导入静态链接库 1)、gcc -c send.c 得到 send.o 2) 、ar rs libsend.a send.o 将.o文件 打包为.a文件 3)、gcc main.c -Lsend -lsend -Isend -o main ,生成可执行文件 ... 阅读全文