摘要: 1、编译链接的过程 程序从源代码到可执行文件的步骤:预处理、编译、汇编、链接。指令分别为: 预处理: gcc E hello.c o hello.i 编译: gcc S hello.i o hello.s 汇编: gcc c hello.s o hello.o 链接: gcc hello.o o h 阅读全文
posted @ 2019-11-08 15:43 20199323王德胜 阅读(161) 评论(0) 推荐(0) 编辑