我试图为一个新项目( im )设置一个小型的2系统distcc编译集群,但由于某种原因,我无法让集群中的第二台服务器进行编译。
arm-eabi-gcc文件工作,如果我试图运行它在上述服务器上,我得到了正常的,没有输入文件错误,但distcc有其他想法。
从其日志文件中提取:
distccd[13005] (dcc_execvp) ERROR: failed to exec arm-eabi-gcc: No such file or directory
distccd[13002] (dcc_job_summary) client: xxx.xxx.xxx.xxx:32890 COMPILE_ERROR exit:110 sig:0 core:0 ret:0 time:1103ms arm-eabi-gcc arch/arm/vfp/vfpdouble.c
distccd[13003] (dcc_pump_readwrite) ERROR: unexpected eof on fd5
distccd[13003] (dcc_job_summary) client: xxx.xxx.xxx.xxx:32891 CLI_DISCONN exit:0 sig:0 core:0 ret:107 time:429ms
distccd[12998] (dcc_pump_readwrite) ERROR: unexpected eof on fd5
distccd[12998] (dcc_job_summary) client: xxx.xxx.xxx.xxx:32888 CLI_DISCONN exit:0 sig:0 core:0 ret:107 time:2499ms
distccd[13001] (dcc_pump_readwrite) ERROR: unexpected eof on fd5
distccd[13001] (dcc_job_summary) client: xxx.xxx.xxx.xxx:32889 CLI_DISCONN exit:0 sig:0 core:0 ret:107 time:2512ms有什么好主意吗?
编辑:我可以很高兴地使用distcc编译x86和x86_64,而不是出于某种原因使用arm。
发布于 2011-11-04 12:50:41
交叉编译器必须
安装
)。
根据您的系统设置(distcc作为守护进程,或者在inetd下),实现这一目标的最简单方法可能是将二进制文件符号链接到/usr/local/bin中,以供distcc主机使用。
https://stackoverflow.com/questions/8003442
复制相似问题