A program to distribute builds of C, C++, Objective C or Objective C++ code across several machines on a network

learn more… | top users | synonyms

0
votes
0answers
38 views

distcc like framework for Windows

We are running some heavy computations that can take a lot of time (even days). We have an architecture similar to that of a compiler (compiler + linker): many blocks of data that need to be ...
0
votes
1answer
64 views

Distributed compilation of CUDA C application (like distcc, but with support for nvcc compiler)

Is there a tool to speed up and distribute compilation of GPGPU programs using CUDA C (where nvcc compiler is part of compilation chain), i.e. something like distcc + ccache (or derivatives and ...
0
votes
1answer
74 views

Distributed compile with bitbake

Do you got any idea how to build an oe project with distributed bitbake compile? I've thinked about distcc. export PATH=~/distcc/bin:$PATH make -jn CC=linux-gcc make will call linux-gcc from my ...
4
votes
1answer
147 views

Is there a distcc-like tool for GHC?

Are there any tools like distcc for GHC? Or other more primitive tricks for doing distributed compilation? I realize GHC is extremely version sensitive. Is this impractical since GHC doesn't yet ...
5
votes
0answers
222 views

Are there public distcc servers? [closed]

I have started using distcc, and I was wondering whether there were public distcc servers, that anyone could use?
0
votes
1answer
72 views

Can I change gnu make parallelism factor on the fly?

I want to run my make with -j8 if I'm not using distcc, but -j40 if distcc is enabled. If I don't figure out whether or not I can use distcc until deep in the execution of the makefile, is there a ...
2
votes
1answer
313 views

scons with distcc?

What's the correct way of using scons with distcc? The obvious way of using CC="distcc g++" or CXX doesn't work. Did anyone ever succeed in combining the two? Thanks!
0
votes
1answer
633 views

distcc and arm cross compile

im trying to setup a small 2 system distcc compile cluster for a new project im working on but for some reason i cant get the second server in the cluster to compile. the arm-eabi-gcc file works if i ...
1
vote
1answer
159 views

How to get ccache to not pass the full path to the compiler to distcc

(This is different to the question ccache and absolute path as I want only the command path to not be expanded on the ccache host machine) When using ccache and distcc together ccache is expanding ...
12
votes
3answers
948 views

Is it possible to use distcc for building iPhone device builds?

As far as I can tell, the moment I switch any of my projects from Simulator to Device build configuration, the build is no longer distributed, but built locally. So, is there any kind of magic ...
4
votes
1answer
450 views

Exactly what does the phases of distcc mean? Am I already using pump mode? And how do I use pump mode in Cygwin?

From what I have read being able to use pump mode with distcc requires that you encapsulate make in the pump script. However, I do not have it in my path and I can not find not find it as a package or ...
1
vote
1answer
253 views

Can iPhone device builds be built using distcc for distributed builds? [closed]

It looks like device builds can't be built on our compile farm using distcc. Note that I'm not talking about Distribution Builds, provisioning profiles and all of that. On an otherwise excellently ...
0
votes
1answer
243 views

Is it possible to use distccmon-text to see which distcc hosts are up and ready to work?

When I run distccmon-text 1 it creates a new empty line one time per second even though I (should) have one distcc daemon up and running. Is it possible to list the host nodes in my ~/.distcc/hosts ...
0
votes
1answer
270 views

distributing jobs across servers with DISTCC

I was implementing distcc for my project in ERICSSON and have reached the later stages. The problem I am facing now is an error in the build while distcc tries to distribute it on another server. The ...
0
votes
1answer
73 views

Installation of distcc 3.1 on Sun Solaris

I am trying to install distcc 3.1 on one of the Sun Solaris platform. After extracting the files to a folder I run configure (script which basically checks the required configuration). This script ...
0
votes
1answer
131 views

How do I compile a crosscompiler targeting Linux x64 on a Windows host?

I am planning on harvesting my gaming HTPCs spare cycles for compiling my software using distcc, but I will need to set up a cross compiler. The problem is that Google is sadly lacking in relevant ...
9
votes
2answers
1k views

Xcode distributed build failure

I am trying to do distributed builds with Xcode, but I see this error while building from my build server (Build Sever is the host, dev machine is the client). When I try to do this the other way, I ...
4
votes
1answer
2k views

Cross compile x86_64 on i686 system on Ubuntu with distcc

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 ...