From bbca6de3d2aff5f407031f76977e538b2e04790b Mon Sep 17 00:00:00 2001 From: Eirik Aavitsland Date: Thu, 11 Jun 2015 14:33:58 +0200 Subject: 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 --- conf/local.conf.sample | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'conf') 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 @@ # These two options control how much parallelism BitBake should use. The first # option determines how many tasks bitbake should run in parallel: # -BB_NUMBER_THREADS ?= "4" -# # Default to setting automatically based on cpu count -#BB_NUMBER_THREADS ?= "${@oe.utils.cpu_count()}" +BB_NUMBER_THREADS ?= "${@oe.utils.cpu_count()}" # # The second option controls how many processes make should run in parallel when # running compile tasks: # -PARALLEL_MAKE ?= "-j 4" -# # Default to setting automatically based on cpu count -#PARALLEL_MAKE ?= "-j ${@oe.utils.cpu_count()}" +PARALLEL_MAKE ?= "-j ${@oe.utils.cpu_count()}" # # For a quad-core machine, BB_NUMBER_THREADS = "4", PARALLEL_MAKE = "-j 4" would # be appropriate for example. -- cgit v1.2.3-54-g00ecf