如何使 Visual Studio 的构建变得非常冗长?

发布于 2024-09-15 21:12:38 字数 156 浏览 5 评论 0原文

我需要掌握 Visual Studio 二进制文件在构建过程中使用的每个标志和每个开关。我尝试使用 vcbuild 获得详细输出,但我做不到。

我需要做什么才能看到 Visual Studio 为我执行的所有操作?无需在构建窗口中获取输出。任何地方都可以。

I need to get a hold of every flag, every switch used in the build process by the Visual Studio binaries. I tried to obtain a verbose output by using vcbuild, but I wasn't able.

What do I have to do to see everything performed by Visual Studio for me? It's not necessary to obtain the output in the build window. Anywhere would be fine.

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

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

发布评论

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

评论(5

ぺ禁宫浮华殁 2024-09-22 21:12:38

菜单工具选项项目和解决方案构建和运行MSBuild项目构建输出详细信息< /em>:诊断

Menu ToolsOptionsProjects and SolutionsBuild and RunMSBuild project build output verbosity: Diagnostic

看春风乍起 2024-09-22 21:12:38
  1. 打开项目属性对话框,然后选择

    配置属性C/C++常规

  2. 抑制启动横幅的设置更改为< /p>

  3. cl命令行将显示在输出窗口中.

  1. Open the project properties dialog, then choose

    Configuration PropertiesC/C++General

  2. Change the setting for Suppress Startup Banner to No

  3. The cl command line(s) will be shown in the output window.

硬不硬你别怂 2024-09-22 21:12:38

Visual Studio 2008:

转到菜单工具选项,然后项目和解决方案构建和运行部分。您有一个用于详细说明的组合框。

C++ 编译器选项(项目属性):

  • 预处理器 - 生成预处理
    用于查看翻译单元的文件
    由预处理器生成
  • 高级 - 显示包含 - 显示
    编译器中包含的文件名
    输出

Visual Studio 2008:

Go to menu ToolsOptions then Project and SolutionsBuild and Run section. You have a combo box for verbosity.

C++ compiler option (project properties):

  • Preprocessor - Generate Preprocessed
    File for seeing the translation unit
    as generated by preprocessor
  • Advanced - Show includes - display
    included file names at compiler
    output
趴在窗边数星星i 2024-09-22 21:12:38

如果您正在运行 MSBuild,则可以设置 /v:diag 标志。

If you're running MSBuild, you can set the /v:diag flag.

稀香 2024-09-22 21:12:38

在 Visual Studio 中,转到您的项目并右键单击它并选择属性。在链接器中有一个命令行选项。在那里您拥有所有选项,并且可以添加自定义选项。添加 /VERBOSE ,链接 Visual Studio 时将显示更多信息。

In Visual Studio go to your project and right click on it and select properties. In Linker there is a command line option. There you have all the options and you can add your custom ones. Add /VERBOSE and when linking Visual Studio will show a lot more information.

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