我在配置distcc来编译C++文件时遇到麻烦。我在C++中做了一个标准的小"Hello, World" program,并且试图让distcc在本地编译它(在我开始花一个更大的项目之前),但是我遇到了“ undefined reference ”错误。
我的程序叫做“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
。我个人更喜欢它。
关于c++ - 带C++的Distcc未定义引用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34381381/