有一些方法可以使用 g++ 将错误日志打印到外部文件。 C++编译器? (C++)
我正在尝试在 Windows 上使用 g++ C++ 编译器编译我的代码,编译器返回一些错误。好的,像往常一样。但它打印了太多错误,以至于控制台一直走到最后,我看不到错误日志的第一行。我的问题是:有什么方法可以将错误日志打印到外部文件,以便我可以读取完整的错误日志?
IE
g++ *.h *.cpp > error_log.txt
i'm trying to compile my code with g++ C++ compiler on Windows and the compiler is returning some errors. Ok, as usual. But it's printing so much errors that the console just goes down to the end and I can't see the first lines of error log. My question is: there are any way to print the error log to an external file so I can read the complete error log?
i.e.
g++ *.h *.cpp > error_log.txt
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要重定向
stderr
,但它依赖于 shell。例如,在
sh
和bash
上,您可以使用:在
csh
和tcsh
上,它将是:You need to redirect
stderr
, but it is shell dependant.For example on
sh
andbash
, you can use:On
csh
andtcsh
it would be:首先,
>
允许我们将标准输出重定向到日志文件。然后通过使用2>&1
我们将错误输出重定向到标准输出。通过这样做,我们将每个输出重定向到 log_file.txt。First the
>
allows us to redirect the standard output to the log file. Then by using the2>&1
we redirect the error output to the standard output. By doing so, we redirect every output to the log_file.txt.注意“2”,它代表 stderr。
Notice the '2' It represents stderr.