makefile - Compiling gnuradio on Raspberry pi using distcc -


i want compile gnuradio on raspberry pi fresh copy of raspbian wheezy. have setup of distcc i7 offload work rpi. works simple test file when use

$gcc -c hello.c 

i can see task done in log of other computer. but, when want build gnuradio , invoke 'make' command, distcc doesn't produce output in verbose mode.

trying

$distcc make 

produces this:

distcc[5464] (dcc_scan_args) compiler apparently called not compile 

and continues building on localhost.

is there way around ?

do have $distcc_hosts set in shell you're calling make from? have specified -j multiple jobs? result of which gcc , echo $cc?

if follow directions here can see gcc, cc, etc. symlinked /usr/local/bin references /usr/bin/distcc, added beginning of path make find first.

it can helpful export distcc_verbose=1 provide more output. there's more thorough documentation on this rpi stackexchange answer.


Comments

Popular posts from this blog

python - Subclassed QStyledItemDelegate ignores Stylesheet -

java - HttpClient 3.1 Connection pooling vs HttpClient 4.3.2 -

SQL: Divide the sum of values in one table with the count of rows in another -