RH 9.0 C++编译出问题,帮忙!!

发布于 2022-10-01 15:24:12 字数 3275 浏览 14 评论 0

最近刚装了RH 9.0,以前都没有用过

今天试试C++编译却出错了

文件名:ctest.cpp

#include <iostream.h>;
                                                                                
int main()
{
        cout<<"yes"<<endl;
        return 0;
}

# cc ctest.cpp
In file included from /usr/include/c++/3.2.2/backward/iostream.h:31,
                 from ctest.cpp:1:
/usr/include/c++/3.2.2/backward/backward_warning.h:32:2: warning: #warning This
file includes at least one deprecated or antiquated header. Please consider using one of the 32 headers found in section 17.4.1.2 of the C++ standard. Examples
include substituting the <X>; header for the <X.h>; header for C++ includes, or <sstream>; instead of the deprecated header <strstream.h>;. To disable this warning
use -Wno-deprecated.
/tmp/ccBmTp05.o(.text+0x14): In function `main':
: undefined reference to `std::basic_ostream<char, std::char_traits<char>; >;& std::endl<char, std::char_traits<char>; >;(std::basic_ostream<char, std::char_traits<char>; >;&'
/tmp/ccBmTp05.o(.text+0x21): In function `main':
: undefined reference to `std::cout'
/tmp/ccBmTp05.o(.text+0x26): In function `main':
: undefined reference to `std::basic_ostream<char, std::char_traits<char>; >;& std:perator<< <std::char_traits<char>; >;(std::basic_ostream<char, std::char_traits<char>; >;&, char const*)'
/tmp/ccBmTp05.o(.text+0x2f): In function `main':
: undefined reference to `std::basic_ostream<char, std::char_traits<char>; >;:perator<<(std::basic_ostream<char, std::char_traits<char>; >;& (*)(std::basic_ostream<char, std::char_traits<char>; >;&)'
/tmp/ccBmTp05.o(.text+0x5c): In function `__static_initialization_and_destruction_0(int, int)':
: undefined reference to `std::ios_base::Init::Init[in-charge]()'
/tmp/ccBmTp05.o(.text+0x8b): In function `__tcf_0':
: undefined reference to `std::ios_base::Init::~Init [in-charge]()'
/tmp/ccBmTp05.o(.eh_frame+0x11): undefined reference to `__gxx_personality_v0'
collect2: ld returned 1 exit status

这到底是怎么回事啊?

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

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

发布评论

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

评论(3

深爱不及久伴 2022-10-08 15:24:12

Step 1:

纸短情长 2022-10-08 15:24:12

Step 2:

故人的歌 2022-10-08 15:24:12

#include <iostream>;
using namespace std;

不要用#include <iostream.h>;编译就OK了

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