From d6532ae1d997a31884a67c51ec2bc75756242eed Mon Sep 17 00:00:00 2001 From: klarlund Date: Fri, 28 Mar 2008 02:48:48 +0000 Subject: Initial submission @6805748, not fully baked yet. --- INSTALL | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 INSTALL (limited to 'INSTALL') diff --git a/INSTALL b/INSTALL new file mode 100644 index 0000000..800e3c3 --- /dev/null +++ b/INSTALL @@ -0,0 +1,39 @@ + +To build: the simple way is to just do + + run_all_autoconf.sh # invokes autoconf and autoheader using + # version info in the file version.sh + configure # creates distcc/config.h and makefiles + make # build + +but the recommended way is to build in a different directory tree +than the source tree: + + run_all_autoconf.sh + mkdir obj + cd obj + ../configure + make + +Either of these methods will: + + - compile distcc + - compile Python C extensions + +To test: + + make check + +To test installation using your own machine as a distcc compilation server: + + - start daemon (in one window): + + distcc/distccd --wizard --allow 127.0.0.1 + + - compile (in another): + + DISTCC_POTENTIAL_HOSTS=127.0.0.1 pump BUILDCOMMAND + +See the shell script pump in this directory. + + -- cgit v1.2.1