Ubuntu20.04配置distcc(联合编译/分布式编译)

目录

  • 安装distcc
  • 环境变量设置
  • 设置自启动
  • 设置编译参数
  • 监控编译情况(distccmon-gnome)

安装distcc

sudo apt update
sudo apt install ccache
sudo apt install distcc
sudo apt install distccmon-gnome
#distccmon-gnome为监控应用

环境变量设置

vim /etc/profile

添加如下:

export PATH=/usr/lib/distcc:$PATH
export DISTCC_HOSTS="localhost 192.168.52.3 192.168.52.15 192.168.52.195 192.160.52.130 192.168.52.21 192.168.52.17"

DISTCC_HOSTS中填写可以分配编译任务的主机的IP,有多少写多少,以空格分隔

设置自启动

vim /etc/rc.local

添加如下:

sudo distccd --daemon --user nobody -a 0.0.0.0/[0]

如果想让任意主机都可以使用当前主机的distcc服务,那么可以配置成0.0.0.0/0,但是这么做会存在一定的安全隐患,一般而言都是配置成特定子网及其掩码,例如:192.168.0.0/24

设置编译参数

以qt为例, 为pro添加编译参数(-j16 CXX=“distcc”)
Ubuntu20.04配置distcc(联合编译/分布式编译)_第1张图片
-j16为参与编译的核数
CXX="distcc"设置c++编译参数distcc,如果是C则为CC=“distcc”

监控编译情况(distccmon-gnome)

点击应用图标或是直接运行
在这里插入图片描述
成功进行联合编译,显示如下:
Ubuntu20.04配置distcc(联合编译/分布式编译)_第2张图片

你可能感兴趣的:(linux,linux,ubuntu,c++)