summaryrefslogtreecommitdiff
path: root/config/global/build-behave.in
blob: 7f8a854a85baa14505afa746b5bba1326948f70d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# 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.

config CONFIG_SHELL_ASH
    bool
    prompt "Use 'ash' as CONFIG_SHELL"
    default n
    help
      Use /bin/ash as the shell used by ./configure scripts.
      
      ./configure scripts make intensive use of calling a sub-shell, and the
      traditional bash is slow, whereas ash is faster.
      
      Saying 'y' here should be safe enough, but some components may not
      accept using a shell other than bash (this is most probably true for
      old versions). If you have trouble, say 'n' here and see if it fixes it.