gcc预处理、编译、汇编、链接
摘要:
预处理、编译、汇编、链接: 1 #include <stdio.h> 2 3 /* 4 // Pre-processing 5 gcc -E hello.c -o hello.i 6 // Compiling 7 gcc -S hello.i -o hello.s 8 // Assembling 9 阅读全文
posted @ 2019-11-19 10:37 Alvin2012 阅读(271) 评论(0) 推荐(0) 编辑