GCC 和 cerr 流

发布于 2024-12-10 15:11:54 字数 94 浏览 0 评论 0原文

我想编写程序来使用 gcc 测试另一个程序。我想使用 gcc 编译 *.cpp 文件,如果编译时出错,我想知道它。

GCC 向 cerr 流提供了一些东西?

I want to write program to test another programs using gcc. And I want to compile *.cpp file using gcc and if when on compiling was error i want to know about it.

GCC gives into cerr stream something?

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

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

发布评论

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

评论(2

苍白女子 2024-12-17 15:11:54

是的,GCC 将警告和错误输出到标准错误流。

Yes, GCC outputs warnings and errors to standard error stream.

小傻瓜 2024-12-17 15:11:54

您是否使用g++(而不是gcc)来编译您的C++ 代码?你链接了标准C++库吗?

尝试将 -v 选项传递给 g++ 以了解它在做什么。

Did you use g++ (not gcc) to compile your C++ code? Did you link the standard C++ library?

Try passing the -v option to g++ to understand what it is doing.

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