diff options
-rw-r--r-- | conf/local.conf.sample | 8 |
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 | # |
42 | BB_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()}" | 43 | BB_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 | # |
50 | PARALLEL_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()}" | 49 | PARALLEL_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. |