I am attempting to setup a small build cluster at home using distcc. There are two x64 systems and 1 i686 systems. All systems are running Ubuntu 10.10 and are up to date. The system that is initiating the build is x64. Distcc works fine between the two x64 systems but all build tasks sent to the i686 system fail.
So far:
- I have installed the multilib package for g++ on that system. I am able to cross-compile to x64 locally using
g++ -m64
- Changed the link in
/usr/lib/distcc/g++
to point to a script that explicity sets the-m64
parameter.
Any suggestions?