标签: c++ g++ c-preprocessor
我有一个充满定义的C ++文件。
#define FOR(i,a,b) for(int (i) = (a); (i) < (b); ++(i)) // and so on
是否可以自动创建一个源文件,其中所有用户创建的宏都被解析而没有其他人? g++ -E解析所有宏,包括内置宏。
g++ -E