Hi,
I am using the option to use a custom build command on the linux target (fedora). The build command is running a makefile with make in a given folder on the target. That part works fine.
But if I try to pass arguments to my make command to use distcc it fails with this error:
It fails if I try to use distcc with errors like this:
1>EXEC : distcc[26515] warning : failed to distribute BaseLayer/Send2DispSvr.cpp to 127.0.0.1, running locally instead
or
1>EXEC : distcc[26670] (dcc_build_somewhere) warning : failed to distribute, running locally instead
build command: make
build arguments: -j 40 CXX=’distcc g++’
If I open SmarTTY using the button next to the build command in the VisualGDB settings, and type
make -j 40 CXX=’distcc g++’, distcc works as expected.
What’s different? is the ssh connection not done in the same way?
Thanks!