如何在Linux中编译c ++程序?

我创建了一个hi.cpp文件,并且我写了下面给出的命令:

#include <iostream>
using namespace std;
int main ()
{
  cout << "Hello World! ";
  cout << "I'm a C++ program";
  return 0;
}

然后使用以下命令将它运行在RHEL 6机器中

gcc hi.cpp

我得到了一些错误,如下所示:

[chankey@localhost ~]$ gcc hi.cpp
/tmp/cc32bnmR.o: In function `main':
hi.cpp:(.text+0xa): undefined reference to `std::cout'
hi.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> >&, const char*)'
hi.cpp:(.text+0x19): undefined reference to `std::cout'
hi.cpp:(.text+0x1e): 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> >&, const char*)'
/tmp/cc32bnmR.o: In function `__static_initialization_and_destruction_0(int, int)':
hi.cpp:(.text+0x4c): undefined reference to `std::ios_base::Init::Init()'
hi.cpp:(.text+0x51): undefined reference to `std::ios_base::Init::~Init()'
/tmp/cc32bnmR.o:(.eh_frame+0x12): undefined reference to `__gxx_personality_v0'
collect2: ld returned 1 exit status
[chankey@localhost ~]$ 

这些错误表示什么? 我的代码是正确的,那么为什么我会得到错误?


使用g ++

g++ -o hi hi.cpp

g ++用于C ++,gcc用于C,但使用-libstdc ++可以编译c ++,大多数人不会这样做。


正如其他答案所说,使用g ++而不是gcc

或者使用make: make hi


你必须使用g ++(正如其他答案中提到的那样)。 最重要的是,您可以考虑在命令行中提供一些很好的选项(这可以帮助您避免制作不合格的代码):

g++   -O4    -Wall hi.cpp -o hi.out
     ^^^^^   ^^^^^^
  optimize  related to coding mistakes

有关更多详细信息,请参阅man g++ | less man g++ | less

链接地址: http://www.djcxy.com/p/85747.html

上一篇: How to compile a c++ program in Linux?

下一篇: "g++" and "c++" compiler