预处理头文件时是否有显示预处理器选项?

发布于 2024-12-10 15:56:24 字数 317 浏览 0 评论 0原文

翻阅MSDN,我会说不;不过,我想在放弃之前我应该​​在这里问一下。

Visual Studios 是否有一个在包含头文件时显示的预处理器选项?具体来说,我正在寻找类似于下面链接中描述的 /verbose:lib 的内容。

http://msdn.microsoft.com/en -US/library/wdsk6as6%28v=VS.80%29.aspx

Looking through the MSDN, I would say no; however, I thought I would ask here before I give up.

Is there a preprocessor option for Visual Studios that displays when a header file is included? Specifically, I'm looking for something similar to /verbose:lib described in the link below.

http://msdn.microsoft.com/en-US/library/wdsk6as6%28v=VS.80%29.aspx

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

往日 2024-12-17 15:56:24

开关 /showInincludes (列出包含文件)就是您要查找的内容,如 MSDN。以下是该开关生成的输出示例:

给定文件 ma​​in.c,包括:

#include "foo.h"

和文件 foo.h,包括:

#include "bar.h"

生成的输出为:

Note: including file: d:\temp\foo.h
Note: including file:  d:\temp\bar.h

The switch /showIncludes (List Include Files) is what you are looking for, as documented in MSDN. Here is a sample of the output produced by that switch:

Given the file main.c, consisting of:

#include "foo.h"

and the file foo.h, consisting of:

#include "bar.h"

The output produced is:

Note: including file: d:\temp\foo.h
Note: including file:  d:\temp\bar.h
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文