config/debug/ltrace.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 1535 073d351bdcd3
child 1615 50b25816f5bb
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 # ltrace
     2 
     3 config DEBUG_ltrace
     4     select TOOL_libelf
     5     help
     6       ltrace is a program that simply runs the specified command until it exits.
     7       It intercepts and records the dynamic library calls which are called by
     8       the executed process and the signals which are received by that process.
     9       It can also intercept and print the system calls executed by the program.
    10 
    11 choice
    12     bool
    13     prompt "ltrace version"
    14 # Don't remove next line
    15 # CT_INSERT_VERSION_BELOW
    16 
    17 config LTRACE_V_0_5_2
    18     bool
    19     prompt "0.5.2"
    20 
    21 config LTRACE_V_0_5_1
    22     bool
    23     prompt "0.5.1 (EXPERIMENTAL)"
    24     depends on EXPERIMENTAL
    25 
    26 config LTRACE_V_0_5
    27     bool
    28     prompt "0.5"
    29 
    30 config LTRACE_V_0_4
    31     bool
    32     prompt "0.4"
    33 
    34 endchoice
    35 
    36 config LTRACE_VERSION
    37     string
    38 # Don't remove next line
    39 # CT_INSERT_VERSION_STRING_BELOW
    40     default "0.5.2" if LTRACE_V_0_5_2
    41     default "0.5.1" if LTRACE_V_0_5_1
    42     default "0.5" if LTRACE_V_0_5
    43     default "0.4" if LTRACE_V_0_4