有一些方法可以使用 g++ 将错误日志打印到外部文件。 C++编译器? (C++)

发布于 2024-12-04 07:32:13 字数 209 浏览 0 评论 0原文

我正在尝试在 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 技术交流群。

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

发布评论

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

评论(3

墨落成白 2024-12-11 07:32:13

您需要重定向 stderr,但它依赖于 shell。

例如,在 shbash 上,您可以使用:

g++ file 2> error.log

cshtcsh 上,它将是:

( g++ file ) >& error.log

You need to redirect stderr, but it is shell dependant.

For example on sh and bash, you can use:

g++ file 2> error.log

On csh and tcsh it would be:

( g++ file ) >& error.log
陌上青苔 2024-12-11 07:32:13
g++ *.cpp > log_file.txt 2>&1

首先,> 允许我们将标准输出重定向到日志文件。然后通过使用 2>&1 我们将错误输出重定向到标准输出。通过这样做,我们将每个输出重定向到 log_file.txt。

g++ *.cpp > log_file.txt 2>&1

First the > allows us to redirect the standard output to the log file. Then by using the 2>&1 we redirect the error output to the standard output. By doing so, we redirect every output to the log_file.txt.

水染的天色ゝ 2024-12-11 07:32:13
g++ *.h *.cpp 2> error_log.txt

注意“2”,它代表 stderr。

g++ *.h *.cpp 2> error_log.txt

Notice the '2' It represents stderr.

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