如何保存到文本 g++或 C++ 中的 gcc 编译器状态?
我想将 C++ 编译器状态保存到文本文件中。我正在使用 Windows。
谢谢。
I want to save to a text file the C++ compiler status. I'm using Windows.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用重定向运算符“>”将输出重定向到文件。
您可能希望使用 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