summaryrefslogtreecommitdiffstats
path: root/conf
diff options
context:
space:
mode:
authorEirik Aavitsland <eirik.aavitsland@theqtcompany.com>2015-06-11 14:33:58 +0200
committerEirik Aavitsland <eirik.aavitsland@theqtcompany.com>2015-06-11 15:41:35 +0300
commitbbca6de3d2aff5f407031f76977e538b2e04790b (patch)
tree1f3df49000d12a328f7aead3f18864e259fdd76b /conf
parentaf74eaeda04ab4cbca42abc4bb4818a9b3df465e (diff)
downloadmeta-boot2qt-bbca6de3d2aff5f407031f76977e538b2e04790b.tar.gz
Use automatic parallelism options in local.conf.
Since all targets now use current poky version, we can get rid of the workaround for dora which needed hardcoded values. Change-Id: Ia720c1da3f75f66a78e3ea09bb86c1182b72fb6d Reviewed-by: Samuli Piippo <samuli.piippo@theqtcompany.com>
Diffstat (limited to 'conf')
-rw-r--r--conf/local.conf.sample8
1 files changed, 2 insertions, 6 deletions
diff --git a/conf/local.conf.sample b/conf/local.conf.sample
index 474db68..595aaae 100644
--- a/conf/local.conf.sample
+++ b/conf/local.conf.sample
@@ -39,18 +39,14 @@
39# These two options control how much parallelism BitBake should use. The first 39# These two options control how much parallelism BitBake should use. The first
40# option determines how many tasks bitbake should run in parallel: 40# option determines how many tasks bitbake should run in parallel:
41# 41#
42BB_NUMBER_THREADS ?= "4"
43#
44# Default to setting automatically based on cpu count 42# Default to setting automatically based on cpu count
45#BB_NUMBER_THREADS ?= "${@oe.utils.cpu_count()}" 43BB_NUMBER_THREADS ?= "${@oe.utils.cpu_count()}"
46# 44#
47# The second option controls how many processes make should run in parallel when 45# The second option controls how many processes make should run in parallel when
48# running compile tasks: 46# running compile tasks:
49# 47#
50PARALLEL_MAKE ?= "-j 4"
51#
52# Default to setting automatically based on cpu count 48# Default to setting automatically based on cpu count
53#PARALLEL_MAKE ?= "-j ${@oe.utils.cpu_count()}" 49PARALLEL_MAKE ?= "-j ${@oe.utils.cpu_count()}"
54# 50#
55# For a quad-core machine, BB_NUMBER_THREADS = "4", PARALLEL_MAKE = "-j 4" would 51# For a quad-core machine, BB_NUMBER_THREADS = "4", PARALLEL_MAKE = "-j 4" would
56# be appropriate for example. 52# be appropriate for example.