2017-03-06 3 views
0

Je reçois une erreur de distcc. J'utilise le paquet des repos. Voici ma configurationDistcc .distcc/zeroconf/hosts ne contenait aucun hôte

$ cat /etc/default/distcc | grep -v \# 
STARTDISTCC="true" 
ALLOWEDNETS="127.0.0.0/16 10.0.0.0/8" 
LISTENER="0.0.0.0" 
NICE="10" 
JOBS="3" 
ZEROCONF="true" 

$ cat /etc/distcc/hosts | grep -v \# 
+zeroconf 

$ dpkg -l | grep distcc 
ii distcc  3.1-6 amd64 simple distributed compiler client and server 
ii distcc-pump 3.1-6 amd64 pump mode for distcc a distributed compiler client and server 

$ cat ~/.distcc/zeroconf/hosts 
10.16.114.52:3632/16 
$ ifconfig 
    ... 
      inet addr:10.16.114.52 Bcast:10.16.115.255 Mask:255.255.252.0 
    ... 

Quand je lance un tas de compilations (1000 fichiers C I générés) comme,

distcc gcc -o 41.o -c 41.c 

Je reçois l'erreur,

distcc[26927] (dcc_parse_hosts) Warning: /home/amacdonald/.distcc/zeroconf/hosts contained no hosts; can't distribute work 
distcc[26927] (dcc_zeroconf_add_hosts) CRITICAL! failed to parse host file. 

distcc[26927] (dcc_build_somewhere) Warning: failed to distribute, running locally instead 
distcc[26929] (dcc_parse_hosts) Warning: /home/amacdonald/.distcc/zeroconf/hosts contained no hosts; can't distribute work 
distcc[26929] (dcc_zeroconf_add_hosts) CRITICAL! failed to parse host file. 

Répondre

-1

Vous avez besoin d'un hôtes fichier avec la liste des machines qui exécutent distcc. Utilisez ce chemin:

~/.distcc/hosts 

Par exemple:

10.0.0.1 10.0.0.2 10.0.0.42 
+2

Je pensais que zeroconf devrait prendre soin de cela automatiquement –