yyqng

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2021年9月21日

摘要: 1. 编译和链接 gcc hello.c执行的四个步骤: #预处理(Prepressing) gcc -E hello.c -o hello.i #编译(Compilation) gcc -S hello.i -o hello.s gcc -S hello.c -o hello.s #汇编(Asse 阅读全文
posted @ 2021-09-21 12:27 zziii 阅读(273) 评论(0) 推荐(1) 编辑