about summary refs log tree commit diff stats
path: root/core/ports.html
diff options
context:
space:
mode:
authorSilvino <silvino@bk.ru>2019-06-11 01:29:02 +0100
committerSilvino <silvino@bk.ru>2019-06-11 01:29:02 +0100
commitc1ec5af5868c0050dcb82167224affae7d684849 (patch)
tree5d644a2200caebc6a9282b71710b23e45a4e9809 /core/ports.html
parentfd50d963db28959f1cf652dbc3f6d24e31b63a17 (diff)
downloaddoc-c1ec5af5868c0050dcb82167224affae7d684849.tar.gz
core ports distcc reconfiguration
Diffstat (limited to 'core/ports.html')
-rw-r--r--core/ports.html32
1 files changed, 16 insertions, 16 deletions
diff --git a/core/ports.html b/core/ports.html
index 5350ee2..a977568 100644
--- a/core/ports.html
+++ b/core/ports.html
@@ -199,7 +199,17 @@
         </pre>
 
         <p>Configure pkgmk and define number of cores available,
-        in this example get dynamically Edit /etc/pkgmk.conf;</p>
+        in this example get dynamically Edit /etc/pkgmk.conf and
+        set ccaching directory and instructs to use distcc
+        backend;</p>
+
+        <pre>
+        # ccache settings
+        export PATH="/usr/lib/ccache/:$PATH"
+        export CCACHE_DIR="/usr/ports/ccache"
+        export CCACHE_PREFIX="distcc"
+        export CCACHE_COMPILERCHECK="%compiler% -dumpversion; crux"
+        </pre>
 
         <pre>
         ## local compile only
@@ -214,26 +224,16 @@
         export SCONSFLAGS="$MAKEFLAGS"
         </pre>
 
-        <p>Set ccaching directory and instructs to
-        use distcc backend;</p>
-
-        <pre>
-        # ccache settings
-        export PATH="/usr/lib/ccache/:$PATH"
-        export CCACHE_DIR="/usr/ports/ccache"
-        export CCACHE_PREFIX="distcc"
-        export CCACHE_COMPILERCHECK="%compiler% -dumpversion; crux"
-        </pre>
-
         <p>Set distcc hosts and respective number of
-        cpu cores to send work;</p>
+        cpu cores to send work, hosts names, exp; "worker" must
+        be configured on /etc/hosts.</p>
+
         <pre>
         export DISTCC_HOSTS="localhost/4 worker/4"
         export DISTCC_DIR="/urs/ports/distcc"
         </pre>
 
-        <p>Host name "worker" must be configured on
-        /etc/hosts. Configure distcc daemon, edit
+        <p>Configure distcc daemon, edit
         /etc/rc.d/distccd;</p>
 
         <pre>
@@ -257,7 +257,7 @@
         <a href="index.html">Core OS Index</a>
         <p>
         This is part of the Hive System Documentation.
-        Copyright (C) 2018
+        Copyright (C) 2019
         Hive Team.
         See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a>
         for copying conditions.</p>
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385