GCC 和 cerr 流
我想编写程序来使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,GCC 将警告和错误输出到标准错误流。
Yes, GCC outputs warnings and errors to standard error stream.
您是否使用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.