如何在 Visual Studio C 中处理所有 #include 指令2005年?
我想看看 Microsoft Visual Studio C++ 编译时如何处理我的 #include 文件。 我记得,有一个编译选项可以内联所有 #includes 和 #define 行,但我找不到它。 我使用 MSVC 2005 sp1。
I want to see how my #include files be processed when Microsoft Visual Studio C++ compile it.
As I remember, there is a compile option to inline all #includes and #define lines but I can't find it.
I use MSVC 2005 sp1.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在寻找的选项位于项目属性下,“C/C++”、“预处理器”,然后将“生成预处理文件”更改为“带行号”或“不带行号”,无论您想要什么。
The option you are looking for is under your project properties, "C/C++", "Preprocessor" then change "Generate Preprocessed File" to "With Line Numbers" or "Without Line Numbers", whatever you want.