我正在尝试通过以下方式分发使用带有杀菌器的clang的distcc构建: clang++-12 -fsanitize-blacklist=/path/to/the/blacklist.txt ...distcc当前失败,并显示以下输出: remote compilation of <file.cpp> failed, retrying locally 和在保留的临时文件中 export DISTCC_VERBOSE=1 # To see the paths of the tmp files
我在配置distcc以编译C++文件时遇到了问题。我在C++中做了一个标准的小C++,并试图让distcc在本地编译它(在我喜欢一个更大的项目之前),但是我得到了“未定义的引用”错误。include <iostream>
std::cout << "Hello World in c++" << std::endl;}$ distccundefined reference to `std::ios_base::Init
我试图为一个新项目( im )设置一个小型的2系统distcc编译集群,但由于某种原因,我无法让集群中的第二台服务器进行编译。arm-eabi-gcc文件工作,如果我试图运行它在上述服务器上,我得到了正常的,没有输入文件错误,但distcc有其他想法。编辑:我可以很高兴地使用distcc编译x86和x86_64,而不是出于某种原因使用arm。