config/global/ct-behave.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Fri Jul 25 14:08:03 2008 +0000 (2008-07-25)
changeset 722 37968404e9b9
parent 445 17aa08b441f2
child 725 d2c46e039cd8
permissions -rw-r--r--
When dumping the DokuWiki table of samples, don't leave the kernel headers version empty if using a custom headers set., and say so.

/trunk/scripts/showSamples.sh | 6 5 1 0 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
     1 # Options specific to crosstool-NG overall behavior
     2 
     3 comment "crosstool-NG behavior"
     4 
     5 config OBSOLETE
     6     bool
     7     prompt "Use obsolete features"
     8     default n
     9     help
    10       If you set this to Y, you will be able to select obsolete features.
    11 
    12       Such obsolete features are the use of old kernel headers, old
    13       gcc versions, etc...
    14 
    15 config EXPERIMENTAL
    16     bool
    17     prompt "Try features marked as EXPERIMENTAL"
    18     default n
    19     help
    20       If you set this to Y, then you will be able to try very experimental
    21       features.
    22 
    23       Experimental features can be one of:
    24         - working, in which case you should tell me it is!
    25         - buggy, in which case you could try patching and send me the result
    26         - unfinished, in which case you could try hacking it and send me the result
    27         - non-existant, in which case you could also try hacking it in and send me
    28           the result
    29 
    30 config BROKEN
    31     bool
    32     prompt "Try broken stuff"
    33     default n
    34     depends on EXPERIMENTAL
    35     help
    36       Select this if you want to _debug_ broken stuff.
    37 
    38 config DEBUG_CT
    39     bool
    40     prompt "Debug crosstool-NG"
    41     default n
    42     help
    43       Say 'y' here to get some debugging options
    44 
    45 if DEBUG_CT
    46 
    47 config DEBUG_CT_PAUSE_STEPS
    48     bool
    49     prompt "Pause between every steps"
    50     default n
    51     help
    52       Say 'y' if you intend to attend the build, and want to investigate
    53       the result of each steps before running the next one.
    54 
    55 config DEBUG_CT_SAVE_STEPS
    56     bool
    57     prompt "Save intermediate steps"
    58     default n
    59     help
    60       If you say 'y' here, then you will be able to restart crosstool-NG at
    61       any step.
    62 
    63       It is not currently possible to restart at any of the debug facility.
    64       They are treated as a whole.
    65 
    66       See docs/overview.txt for the list of steps.
    67 
    68 config DEBUG_CT_SAVE_STEPS_GZIP
    69     bool
    70     prompt "gzip saved states"
    71     default y
    72     depends on DEBUG_CT_SAVE_STEPS
    73     help
    74       If you are tight on space, then you can ask to gzip the saved states
    75       tarballs. On the other hand, this takes some longer time...
    76 
    77       To lose as less time as possible, the gzip process is done with a low
    78       compression ratio (-3), which gives roughly 70% gain in size. Going
    79       further doesn't gain much, and takes far more time (believe me, I've
    80       got figures here! :-) ).
    81 
    82 endif