Using Distcc between Ubuntu Gentoo

2024-03-11 07:38
文章标签 ubuntu using distcc gentoo

本文主要是介绍Using Distcc between Ubuntu Gentoo,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

distcc 是linux分布式编译工具,可以大大提高编译速度。

下面就是在两台机子上进行的distcc的配置,一台是gentoo,另一台是ubuntu

Section 1 - Setting up Distcc on gentoo.

a) Install distcc and distcc-config


Code:
emerge distcc
emerge distcc-config
*If distcc-config is masked then

Code:
echo "sys-devel/distcc-config ~x86" >> /etc/portage/package.keywords
b) Configure distcc

Code:
vi /etc/conf.d/distccd
DISTCCD_OPTS="${DISTCCD_OPTS} --allow 192.168.0.0/24"
Modify the above line to suite your subnet. I assume your doing this on a lan.

Code:
distcc-config --set-hosts "192.168.0.77 192.168.0.36 192.168.0.10"
Modify the above line to include the distcc helper ip addresses.

c) Configure gentoo

Code:
vi /etc/make.conf
FEATURES="distcc"
d) Start distcc

Code:
/etc/init.d/distccd start
e) Finally, check which version of gcc your gentoo is running.

Code:
gcc -v
Section 2 - Configure the helpers

a) Install distcc

Code:
sudo apt-get install distcc
b) Configure distcc

Code:
vi /etc/defaults/distcc
STARTDISTCC="false"
ALLOWEDNETS="192.168.0.0/24"
Change the STARTDISTCC="false"
to
STARTDISTCC="true"

Change the allowednets network id to correspond with your local lan.

c) Check which version of gcc you are running


gcc -v

If you have the same version of gcc as your gentoo install, then you can simply run:
Code:
/etc/init.d/distcc start
If you do not, then follow on with the next step

d) Install required gcc and g++


Example, to install gcc 3.3
Code:
sudo apt-get install gcc-3.3 g++-3.3
e) Create a distcc binary directory with links
From here on in, the version will be refered to $version, please substitute this with your version number of gcc

Code:
mkdir -p /usr/lib/distcc/$version   <-------Make this ther version
cd /usr/lib/distcc/$version
ln -s /usr/bin/gcc-$version gcc
ln -s /usr/bin/g++-$version g++
ln -s /usr/bin/cc cc
ln -s /usr/bin/c++ c++
d) Set and export your new distcc path

Code:
PATH="/usr/lib/distcc/$version:$PATH"
export PATH
e) Crank up distcc
Code:
/etc/init.d/distcc start
And emerge merily away

这篇关于Using Distcc between Ubuntu Gentoo的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/797116

相关文章

pico2 开发环境搭建-基于ubuntu

pico2 开发环境搭建-基于ubuntu 安装编译工具链下载sdk 和example编译example 安装编译工具链 sudo apt install cmake gcc-arm-none-eabi libnewlib-arm-none-eabi libstdc++-arm-none-eabi-newlib 注意cmake的版本,需要在3.17 以上 下载sdk 和ex

在Ubuntu 20.04上安装Nginx的方法

前些天发现了一个巨牛的人工智能学习网站,通俗易懂,风趣幽默,忍不住分享一下给大家。点击跳转到网站。 简介 Nginx 是世界上最流行的 Web 服务器之一,负责托管互联网上一些最大和流量最高的网站。它是一个轻量级选择,可以用作 Web 服务器或反向代理。 在本指南中,我们将讨论如何在 Ubuntu 20.04 服务器上安装 Nginx,调整防火墙,管理 Nginx 进程,并设置服务器块以从单

虚拟机ubuntu配置opencv和opencv_contrib

前期准备  1.下载opencv和opencv_contrib源码 opencv-4.6.0:https://opencv.org/releases/ opencv_contrib-4.6.0:https://github.com/opencv/opencv_contrib 在ubuntu直接下载或者在window上下好传到虚拟机里都可以 自己找个地方把他们解压,个人习惯在home下新建一

解决ubuntu系统无法与FinalShell无法连接问题

问题 解决方案 先下载ubuntu网络工具 sudo apt install net-tools 输入密码 下载完成后进入管理员模式查看密码 sudo -i hostname -I 查看IP 得到ip地址后再继续安装 openssh-server 插件 sudo apt-get install openssh-server 问题解决 尝试连接Fina

hector_quadrotor编译总结 | ubuntu 16.04 ros-kinetic版本

hector_quadrotor编译总结 | ubuntu 16.04 ros-kinetic版本 基于Ubuntu 16.04 LTS系统所用ROS版本为 Kinetic hector_quadrotor ROS包主要用于四旋翼无人机的建模、控制和仿真。 1.安装依赖库 所需系统及依赖库 Ubuntu 16.04|ros-kinetic|Gazebo|gazebo_ros_pkgs|ge

hector_quadrotor编译总结 | ubuntu 14.04 ros-indigo版本

hector_quadrotor编译总结 | ubuntu 14.04 ros-indigo版本 基于Ubuntu 14.04 LTS系统所用ROS版本为 Indigo hector_quadrotor ROS包主要用于四旋翼无人机的建模、控制和仿真。 备注:两种安装方式可选:install the binary packages | install the source files

[轻笔记]ubuntu shell脚本切换conda环境

source /home/yourhostname/anaconda3/etc/profile.d/conda.sh # 关键!!!conda activate env_name

[轻笔记] ubuntu Shell脚本实现监视指定进程的运行状态,并能在程序崩溃后重启动该程序

根据网上博客实现,发现只能监测进程离线,然后对其进行重启;然而,脚本无法打印程序正常状态的信息。自己通过不断修改测试,发现问题主要在重启程序的命令上(需要让重启的程序在后台运行,不然会影响监视脚本进程,使其无法正常工作)。具体程序如下: #!/bin/bashwhile [ 1 ] ; dosleep 3if [ $(ps -ef|grep exe_name|grep -v grep|

SSH连接虚拟机中的Ubuntu 12.0.4

摘要:主要是解决不能使用ssh远程Ubuntu的问题、使用的远程工具是putty、也可以使用xshell、ubunut12.0.4是装在虚拟机中的、不过这个应该没有什么影响。 一:问题的出现 前两天使用VMware装了一个ubuntu12.0.4之后、因为常常使用命令行、又喜欢在虚拟机与实体机中切来切去、感觉很不方便、就想在xp中远程ubuntu、遇到了点小意外、经过一会调试解决成功、把

Ubuntu下搭建基于apache2的gerrit+gitweb服务器

说明:Ubuntu版本12.04   1. 配置gerrit管理帐号 1 sudo adduser gerrit   增加sudo权限: 1 sudo usermod -a -G sudo gerrit   切换到gerrit账号: 1 sudo su gerrit     2. 安装java 1 2