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 path which points to distcc. distcc will schedule the tasks to all known hosts. -jn will create n6 instances of make. It works fine. But now I want to use distcc with bitbake. I know how to use -jn with bitbake. Just use export PARALLEL_MAKE=-jn But how to use export PATH=~/distcc/bin:$PATH with