如何保存到文本 g++或 C++ 中的 gcc 编译器状态?

发布于 2024-10-15 07:45:13 字数 55 浏览 1 评论 0原文

我想将 C++ 编译器状态保存到文本文件中。我正在使用 Windows。

谢谢。

I want to save to a text file the C++ compiler status. I'm using Windows.

Thanks.

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

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

发布评论

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

评论(1

早乙女 2024-10-22 07:45:13

使用重定向运算符“>”将输出重定向到文件。
您可能希望使用 STDERR 流进行重定向,因为大多数编译器都会在此流上输出编译错误,因此您应该尝试“2>”重定向。

有关 Windows 重定向的更多详细信息,请参阅以下链接:
http://technet.microsoft.com/en-us/library/bb490982.aspx

redirect the output to a file using the redirection operator '>'.
You may want to use the STDERR stream for redirection as most of the compilers output the compilation errors on this stream, so you should try the '2>' redirection.

refer the below link for more details on redirection on Windows:
http://technet.microsoft.com/en-us/library/bb490982.aspx

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