03 2025 档案

摘要:将c语言源程序编译成为可执行程序 一步到位linux指令: gcc -o hello hello.c 分步操作: 预处理:将hello.c预处理为hello.i gcc -E -o hello.i hello.c 编译:将hello.i编译为hello.s gcc -S -o hello.s hel 阅读全文
posted @ 2025-03-17 11:16 jxt0823 阅读(63) 评论(0) 推荐(0)