config/debug/strace.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Jan 01 22:54:37 2012 +0100 (2012-01-01)
changeset 2830 c3ff88a0c788
parent 2444 896cb0d36c1a
child 2868 d87832299709
permissions -rw-r--r--
cc/gcc: copy file with 'cp -v', it rotates the progress bar

Installing the gcc test-suite can take a bit of time, so the
progress bar is currently not rotating because there is no
output during the copy. For an unsuspecting user, it could
mean the process hung.

With 'cp -v', the progress bar now rotates.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
     1 # strace
     2 
     3 ## depends on ! BACKEND
     4 
     5 choice
     6     bool
     7     prompt "strace version"
     8 # Don't remove next line
     9 # CT_INSERT_VERSION_BELOW
    10 
    11 config STRACE_V_4_6
    12     bool
    13     prompt "4.6 (EXPERIMENTAL)"
    14     depends on EXPERIMENTAL
    15 
    16 config STRACE_V_4_5_20
    17     bool
    18     prompt "4.5.20 (EXPERIMENTAL)"
    19     depends on EXPERIMENTAL
    20 
    21 config STRACE_V_4_5_19
    22     bool
    23     prompt "4.5.19"
    24 
    25 config STRACE_V_4_5_18
    26     bool
    27     prompt "4.5.18"
    28 
    29 config STRACE_V_4_5_17
    30     bool
    31     prompt "4.5.17 (OBSOLETE)"
    32     depends on OBSOLETE
    33 
    34 config STRACE_V_4_5_16
    35     bool
    36     prompt "4.5.16 (OBSOLETE)"
    37     depends on OBSOLETE
    38 
    39 config STRACE_V_4_5_15
    40     bool
    41     prompt "4.5.15 (OBSOLETE)"
    42     depends on OBSOLETE
    43 
    44 endchoice
    45 
    46 config STRACE_VERSION
    47     string
    48 # Don't remove next line
    49 # CT_INSERT_VERSION_STRING_BELOW
    50     default "4.6" if STRACE_V_4_6
    51     default "4.5.20" if STRACE_V_4_5_20
    52     default "4.5.19" if STRACE_V_4_5_19
    53     default "4.5.18" if STRACE_V_4_5_18
    54     default "4.5.17" if STRACE_V_4_5_17
    55     default "4.5.16" if STRACE_V_4_5_16
    56     default "4.5.15" if STRACE_V_4_5_15