摘要: 编译链接过程分析 Linux中程序的链接过程如下: #include<stdio.h> int main() { printf("hello\n"); } 预编译 gcc -E main.c -o main.i 删除#define,展开宏定义 处理条件编译指令,#if,#ifdef,#else 处理 阅读全文
posted @ 2023-01-20 11:34 baobaobashi 阅读(31) 评论(0) 推荐(0) 编辑