mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-24 23:16:42 +00:00
46 lines
1.1 KiB
Plaintext
46 lines
1.1 KiB
Plaintext
|
# Options related to how the build behaves
|
||
|
|
||
|
comment "Build behavior"
|
||
|
|
||
|
config PARALLEL_JOBS
|
||
|
int
|
||
|
prompt "Number of parallel jobs"
|
||
|
default 1
|
||
|
help
|
||
|
Number of jobs make will be allowed to run concurently.
|
||
|
Set this higher than the number of processors you have, but not too high.
|
||
|
A good rule of thumb is twice the number of processors you have.
|
||
|
|
||
|
Enter 1 (or 0) to have only one job at a time.
|
||
|
|
||
|
config LOAD
|
||
|
int
|
||
|
prompt "Maximum allowed load"
|
||
|
default 0
|
||
|
help
|
||
|
Specifies that no new jobs should be started if there are others jobs
|
||
|
running and the load average is at least this value.
|
||
|
|
||
|
Makes sense on SMP machines only.
|
||
|
|
||
|
Enter 0 to have no limit on the load average.
|
||
|
|
||
|
Note: only the integer part of the load is allowed here (you can't enter
|
||
|
0.75 for example).
|
||
|
|
||
|
config NICE
|
||
|
int
|
||
|
prompt "Nice level"
|
||
|
default 0
|
||
|
range 0 19
|
||
|
help
|
||
|
Renices the build process up.
|
||
|
|
||
|
config USE_PIPES
|
||
|
bool
|
||
|
prompt "Use -pipe"
|
||
|
default y
|
||
|
help
|
||
|
Use gcc's option -pipe to use pipes rather than temp files when building
|
||
|
the toolchain.
|