diff options
Diffstat (limited to 'meta-yocto/conf/local.conf.sample.extended')
-rw-r--r-- | meta-yocto/conf/local.conf.sample.extended | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/meta-yocto/conf/local.conf.sample.extended b/meta-yocto/conf/local.conf.sample.extended index b156319163..89b80a6eed 100644 --- a/meta-yocto/conf/local.conf.sample.extended +++ b/meta-yocto/conf/local.conf.sample.extended | |||
@@ -2,6 +2,29 @@ | |||
2 | # certain recipes. | 2 | # certain recipes. |
3 | #BBMASK = "" | 3 | #BBMASK = "" |
4 | 4 | ||
5 | # | ||
6 | # Parallelism Options | ||
7 | # | ||
8 | # These two options control how much parallelism BitBake should use. The first | ||
9 | # option determines how many tasks bitbake should run in parallel: | ||
10 | # | ||
11 | #BB_NUMBER_THREADS ?= "4" | ||
12 | # | ||
13 | # Default to setting automatically based on cpu count | ||
14 | #BB_NUMBER_THREADS ?= "${@oe.utils.cpu_count()}" | ||
15 | # | ||
16 | # The second option controls how many processes make should run in parallel when | ||
17 | # running compile tasks: | ||
18 | # | ||
19 | #PARALLEL_MAKE ?= "-j 4" | ||
20 | # | ||
21 | # Default to setting automatically based on cpu count | ||
22 | #PARALLEL_MAKE ?= "-j ${@oe.utils.cpu_count()}" | ||
23 | # | ||
24 | # For a quad-core machine, BB_NUMBER_THREADS = "4", PARALLEL_MAKE = "-j 4" would | ||
25 | # be appropriate for example. | ||
26 | |||
27 | |||
5 | # eglibc configurability is used to reduce minimal image's size. | 28 | # eglibc configurability is used to reduce minimal image's size. |
6 | # the all supported eglibc options are listed in DISTRO_FEATURES_LIBC | 29 | # the all supported eglibc options are listed in DISTRO_FEATURES_LIBC |
7 | # and disabled by default. Uncomment and copy the DISTRO_FEATURES_LIBC | 30 | # and disabled by default. Uncomment and copy the DISTRO_FEATURES_LIBC |