前言

有些使用模板或复杂宏的程序,如果想知道最终的预处理代码是啥。最好的方法就是用编译器的预处理命令,先将实现文件进行预处理,另存成实现文件,先看看。
在看AT&T汇编的书时,讲了用gcc怎样看预处理文件,很实用。

实验

测试用的源码

lostspeed@debian8:/home/dev/old_linux/gcc_flat_binary$ cat ./test.c
// @file test.c
// @brief test gen flat binary file by gcc

#include <stdlib.h>
#include <stdio.h>
#include <string.h>

#define MAGIC_NUM 20180221 

int main(int argc, char** argv)
{
        printf("hello gcc %d\n", MAGIC_NUM);
        return EXIT_SUCCESS;
}

用gcc对测试用源码进行预处理(不编译)

lostspeed@debian8:/home/dev/old_linux/gcc_flat_binary$ gcc -E ./test.c -o my_pre.log
lostspeed@debian8:/home/dev/old_linux/gcc_flat_binary$ ls -l
总用量 56
-rw-r--r-- 1 lostspeed lostspeed 50949 1月  15 13:34 my_pre.log
-rw-r--r-- 1 lostspeed lostspeed   246 1月  15 13:17 test.c

查看预处理后的实现文件

lostspeed@debian8:/home/dev/old_linux/gcc_flat_binary$ cat ./my_pre.log
...
# 7 "./test.c" 2



int main(int argc, char** argv)
{
 printf("hello gcc %d\n", 20180221);
 return 0;
}

看预处理之后的实现文件,到底是怎么进行宏替换的,看的很清楚。

GitHub 加速计划 / li / linux-dash
6
1
下载
A beautiful web dashboard for Linux
最近提交(Master分支:3 个月前 )
186a802e added ecosystem file for PM2 4 年前
5def40a3 Add host customization support for the NodeJS version 4 年前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐