带有C++未定义引用的Distcc



我在配置distcc以编译C++文件时遇到问题。我用C++做了一个标准的小程序"Hello,World",并试图让distcc在本地编译它(在我喜欢更大的项目之前),但我遇到了"未定义的引用"错误。

我的程序名为"hello.cpp":

#include <iostream>
int main(){
  std::cout << "Hello World in c++" << std::endl;
  return 0;
}

我的命令:

$ distcc hello.cpp

终端输出:

/tmp/cc5rZwhV.o: In function `main': <br>
hello.cpp:(.text+0xa): undefined reference to `std::cout' <br>
hello.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*)' <br>
hello.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> >&)' <br>
hello.cpp:(.text+0x1c): undefined reference to `std::ostream::operator<<(std::ostream& (*)(std::ostream&))' <br>
/tmp/cc5rZwhV.o: In function `__static_initialization_and_destruction_0(int, int)': <br>
hello.cpp:(.text+0x4a): undefined reference to `std::ios_base::Init::Init()' <br>
hello.cpp:(.text+0x59): undefined reference to `std::ios_base::Init::~Init()' <br>
collect2: error: ld returned 1 exit status <br>
distcc[21053] ERROR: compile hello.cpp on localhost failed <br>

其他信息:

这个程序用g++和C++编译得很好。使用printf用C编写的类似程序也可用于distcc。

$ distcc --version:输出

distcc 3.2rc1 x86_64-unknown-linux-gnu
  (protocols 1, 2 and 3) (default port 3632)
  built Jul  7 2014 13:18:34
....(copyright stuff)

-lstdc++添加到链接器命令行中(即,将libstdc++显式添加到链接库中,通常g++会为您这样做)。

当你在做的时候,也可以试试icecc。我个人更喜欢它。

相关内容

  • 没有找到相关文章

最新更新