在 VC 中获取#define 符号列表++
是否可以在 VC++ 中获取预处理器#define'd 符号的列表?我知道 GCC 有类似的选项来转储所提供的 .cpp/.h 源文件的所有有效 #define 符号,但我不确定 VC++ 是否支持此功能?
我正在 Windows 中使用 Mozilla 开源项目。有很多与 UNIX 构建环境不相关的#define,导致源代码非常不可读。我想从源代码中删除不相关的#define。该项目使用 Mozilla 特定的构建脚本(automake、configure、Makefile、python 脚本等)动态向编译器提供符号定义。此外,每个源文件在不同的 #ifdef 分支添加自己的 #define,使得手动预先确定特定构建的完整符号列表是不切实际的。
Is it possible to obtain a list of preprocessor #define'd symbols in VC++? I know GCC has similar options to dump all effective #define symbols for the supplied .cpp/.h source files, but I am not sure if VC++ support this?
I am using a Mozilla open source project in Windows. There are a lots of irrelevant #define for the UNIX build env causing the source code very unreadable. I want to eliminate the irrelevant #define from the source code. The project uses Mozilla specific build scripts (automake, configure, Makefile, python scripts, and etc) to supply the symbol definitions to the compiler dynamically. Also each source file add its own #define at different #ifdef branches making manually pre-determining the complete list of symbols for a specific build impractical.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看
View
=> 中的宏和常量
列表类视图
菜单。Check out
Macros and Constants
list in theView
=>Class View
menu.