redhat 下编程的初学问题
//test.cxx
//redhat9 下编程
#include <iostream>;
int main(void)
{
return 0;
}
gcc text.cxx出错
是不是环境问题,出错吗?没有设置path的关系?
出错返回信息:
/tmp/ccqt6GzH.o(.text+0x36): In function `__static_initialization_and_destruction_0(int, int)':
: undefined reference to `std::ios_base::Init::Init[in-charge]()'
/tmp/ccqt6GzH.o(.text+0x65): In function `__tcf_0':
: undefined reference to `std::ios_base::Init::~Init [in-charge]()'
/tmp/ccqt6GzH.o(.eh_frame+0x11): undefined reference to `__gxx_personality_v0'
collect2: ld returned 1 exit status
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
int main(void)里面不能是VOID
#include <iostream>;
using namespace std;
int main(void)
{
return 0;
}
根本不必啊
为什么要INCLUDE IOSTREAM呢
int main()
{
return 0;
}
用 g++ test.cxx