config/debug/ltrace.in
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Sun Jan 05 19:44:45 2014 +0100 (2014-01-05)
changeset 3277 ead33a889ef9
parent 2484 d1a8c2ae7946
child 3289 defadbff9afd
permissions -rw-r--r--
cc/gcc: bump Linaro versions

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
     1 # ltrace
     2 
     3 ## depends on ! BACKEND
     4 ##
     5 ## select LIBELF_TARGET
     6 ##
     7 ## help ltrace is a program that simply runs the specified command until it exits.
     8 ## help It intercepts and records the dynamic library calls which are called by
     9 ## help the executed process and the signals which are received by that process.
    10 ## help It can also intercept and print the system calls executed by the program.
    11 
    12 choice
    13     bool
    14     prompt "ltrace version"
    15 # Don't remove next line
    16 # CT_INSERT_VERSION_BELOW
    17 
    18 config LTRACE_V_0_5_3
    19     bool
    20     prompt "0.5.3"
    21     select LTRACE_0_5_3_or_later
    22 
    23 config LTRACE_V_0_5_2
    24     bool
    25     prompt "0.5.2"
    26 
    27 endchoice
    28 
    29 config LTRACE_VERSION
    30     string
    31 # Don't remove next line
    32 # CT_INSERT_VERSION_STRING_BELOW
    33     default "0.5.3" if LTRACE_V_0_5_3
    34     default "0.5.2" if LTRACE_V_0_5_2
    35 
    36 config LTRACE_0_5_3_or_later
    37     bool