摘要: 本文方法使用VisualStudio直接调试Linux系统可以的,又能编译又能调试arm linux没试验成功。交叉编译是可以的。 最终在arm linux下运行效果 1、这个页面编译使用的是一个远程调试计算机,因为目前这个远程调试计算机实际上是作为编译用的,但是实际上运行是另外一个机器,怎么设置没 阅读全文
posted @ 2021-03-28 23:20 zhaogaojian 阅读(115) 评论(0) 推荐(0) 编辑
摘要: #include <pthread.h> #include <stdio.h> #include <unistd.h> #include <signal.h> int main() { pid_t fpid; fpid=fork(); if(fpid==0){printf("I am child\n 阅读全文
posted @ 2021-03-28 22:29 zhaogaojian 阅读(86) 评论(0) 推荐(0) 编辑
摘要: #include <pthread.h> #include <stdio.h> #include <unistd.h> #include <signal.h> void sig_handler(int signum); int main() { signal(SIGINT,sig_handler); 阅读全文
posted @ 2021-03-28 19:15 zhaogaojian 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 1-2个代码文件的简单的程序用不用Makefile都没问题,复杂的项目最好用Makefile,下面改造下上面的MakeFile,尽量使用Makefile比较高阶的语法。 1、原始Makefile test.o:test.c gcc test.c -o test.o -lpthread 2、改成使用变 阅读全文
posted @ 2021-03-28 10:57 zhaogaojian 阅读(61) 评论(0) 推荐(0) 编辑