config/debug/strace.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Dec 19 12:44:21 2009 +0100 (2009-12-19)
branch1.5
changeset 1706 5360c810222d
parent 1534 d4ddf19a1968
child 1603 e0ef539e23d9
permissions -rw-r--r--
scripts: check for, and warn about an unset CT_PREFIX_DIR

The user shall provide a directory to install the toolchain into.
If he/she does not, this is an error, and shall be detected properly,
rather than relying on failure down the road.

Thanks to "Pedro I. Sanchez" <psanchez@colcan.ca> for pointing out
the issue:
http://sourceware.org/ml/crossgcc/2009-12/msg00011.html
(transplanted from e94f4ffddd1d07b3841160db71694cd19fda6b03)
     1 # strace
     2 
     3 config DEBUG_strace
     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_5_18
    12     bool
    13     prompt "4.5.18 (EXPERIMENTAL)"
    14     depends on EXPERIMENTAL
    15 
    16 config STRACE_V_4_5_17
    17     bool
    18     prompt "4.5.17"
    19 
    20 config STRACE_V_4_5_16
    21     bool
    22     prompt "4.5.16"
    23 
    24 config STRACE_V_4_5_15
    25     bool
    26     prompt "4.5.15"
    27 
    28 config STRACE_V_4_5_14
    29     bool
    30     prompt "4.5.14 (OBSOLETE)"
    31     depends on OBSOLETE
    32 
    33 config STRACE_V_4_5
    34     bool
    35     prompt "4.5 (OBSOLETE)"
    36     depends on OBSOLETE
    37 
    38 endchoice
    39 
    40 config STRACE_VERSION
    41     string
    42 # Don't remove next line
    43 # CT_INSERT_VERSION_STRING_BELOW
    44     default "4.5.18" if STRACE_V_4_5_18
    45     default "4.5.17" if STRACE_V_4_5_17
    46     default "4.5.16" if STRACE_V_4_5_16
    47     default "4.5.15" if STRACE_V_4_5_15
    48     default "4.5.14" if STRACE_V_4_5_14
    49     default "4.5" if STRACE_V_4_5