百度问答linux Ubuntu 下用GCC编译“HELLO WORLD “出现错误。如下所示

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了百度问答linux Ubuntu 下用GCC编译“HELLO WORLD “出现错误。如下所示相关的知识,希望对你有一定的参考价值。

#include<iostream>
using namespace std;
int main()

cout<<"HELLO WORLD"<<endl;
return 0;


结果如下:
ymy@ymy-ubuntu:~/ctest$ gcc -o shi shi.cpp
/tmp/ccG7Dx59.o: In function `main':
shi.cpp:(.text+0xa): undefined reference to `std::cout'
shi.cpp:(.text+0xf): undefined reference to `std::basic_ostream<char, std::char_traits<char> >& std::operator<< <std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> >&, char const*)'
shi.cpp:(.text+0x14): 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> >&)'
shi.cpp:(.text+0x1c): undefined reference to `std::ostream::operator<<(std::ostream& (*)(std::ostream&))'
/tmp/ccG7Dx59.o: In function `__static_initialization_and_destruction_0(int, int)':
shi.cpp:(.text+0x4a): undefined reference to `std::ios_base::Init::Init()'
shi.cpp:(.text+0x59): undefined reference to `std::ios_base::Init::~Init()'
collect2: error: ld returned 1 exit status
ymy@ymy-ubuntu:~/ctest$
这是为什么?

这个是C++程序,因此你需要安装g++编译器才行
安装:sudo apt-get install g++
编译:g++ shi.cpp -o hello就会编译一个hello的可执行文件~~~
参考技术A 1楼对的。需要安装g++包。
你最好安装 build-essential,这样编译环境基本都全了。
参考技术B gcc是C语言编译器,不是C++编译器。

以上是关于百度问答linux Ubuntu 下用GCC编译“HELLO WORLD “出现错误。如下所示的主要内容,如果未能解决你的问题,请参考以下文章

关于在linux下用gcc编译头文件

关于在linux下用gcc编译头文件的问题。

Linux下用gcc编译C++文件时,所添加的库是默认在哪个目录下的?我用的是Ubuntu12.10的系统。

在Linux下用gcc编译hello world

在cygwin下用gcc编译一个程序的详细步骤,求详解

Linux下用交叉编译器编译报错缺少Libc.so.6【求教】