QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 738|回复: 5

这是什么错误啊?只是一个hello world啊

[复制链接]
发表于 2003-6-10 22:27:33 | 显示全部楼层 |阅读模式
程序很简单
[code:1]
$ cat hello.cpp
#include <iostream>
using namespace std;
int main()
{
  cout<<"hello world"<<endl;
  return 0;
}

[/code:1]

下面是错误信息

$ gcc hello.cpp
/tmp/cc97HOxw.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/cc97HOxw.o(.text+0x21): In function `main':
: undefined reference to `std::cout'
/tmp/cc97HOxw.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/cc97HOxw.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/cc97HOxw.o(.text+0x5c): In function `__static_initialization_and_destruction_0(int, int)':
: undefined reference to `std::ios_base::Init::Init[in-charge]()'
/tmp/cc97HOxw.o(.text+0x8b): In function `__tcf_0':
: undefined reference to `std::ios_base::Init::~Init [in-charge]()'
/tmp/cc97HOxw.o(.eh_frame+0x11): undefined reference to `__gxx_personality_v0'
collect2: ld returned 1 exit status

这是怎么回事啊??
发表于 2003-6-11 11:03:07 | 显示全部楼层
用g++来编译啊
回复

使用道具 举报

发表于 2003-6-12 14:27:50 | 显示全部楼层
c++嘛,我只知道在windoze下,linux下不知道.
我想没一本入门的书第一个都是HelloWorld
回复

使用道具 举报

发表于 2003-6-12 23:47:31 | 显示全部楼层
[code:1]

#include <iostream>
#include <string>
using namespace std;
int main(void)
{
  cout << "hello world" << endl;
  return 0;
}
[/code:1]

关键是增加 string 头文件

g++ -o temp temp.cc
./temp
回复

使用道具 举报

发表于 2003-6-13 15:09:51 | 显示全部楼层
编译器用的不对 你让他怎么链上库啊
回复

使用道具 举报

发表于 2003-6-14 14:33:05 | 显示全部楼层
$g++ -o hello hello.cpp
$./hello
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-11-15 16:44 , Processed in 0.054673 second(s), 15 queries .

© 2021 Powered by Discuz! X3.5.

快速回复 返回顶部 返回列表