Joseph wrote:
Yes, it runs but in order to test it I need to compile something, the
argument is distcc [COMPILER] [compile options] -o OBJECT -c SOURCE
So in my example if I want to test it on 10.0.0.101 machine I would
enter:
distcc 10.0.0.103:3632  -o ?  -c ?

What do I put in place of OBJECT SOURCE?

Oh, being a C programmer, I don't really have a problem finding something to but in there. :P

try:

cat << EOF > hello.c
#include <stdlib.h>
#include <stdio.h>

int main(int argc, char *argv[]) {
        printf("Hello, World!\n");
        return EXIT_SUCCESS;
}
EOF

distcc -o hello.o -c hello.c

Or, you might find some useful source in the portage temporary directory. The above will compile *extremely* quickly.

--
Boyd Stephen Smith Jr.
--
gentoo-user@gentoo.org mailing list

Reply via email to