摘要: 【gcc】: 1、编译四步骤: 预处理:gcc -E test.c -o test.i 编译: gcc -S test.i -o test.s 汇编: gcc -c test.s -o test.o 连接: gcc test.o -o test.out 2、指定输出文件名称:gcc test.c - 阅读全文
posted @ 2018-11-26 10:32 thinking...... 阅读(636) 评论(0) 推荐(0)