config/debug/ltrace.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Wed Feb 17 23:50:49 2010 +0100 (2010-02-17)
changeset 1810 e44f67656c5f
parent 1685 ecccce88fc71
child 1811 35cf5e2f110a
permissions -rw-r--r--
complibs: hide companion libraries for target entry

The companion libraries on the target are required only for internal use by
binutils and gdb. The user should not have to know about this, so hide the
option.
yann@245
     1
# ltrace
yann@245
     2
yann@916
     3
config DEBUG_ltrace
yann@916
     4
    select TOOL_libelf
yann@245
     5
    help
yann@977
     6
      ltrace is a program that simply runs the specified command until it exits.
yann@977
     7
      It intercepts and records the dynamic library calls which are called by
yann@977
     8
      the executed process and the signals which are received by that process.
yann@977
     9
      It can also intercept and print the system calls executed by the program.
yann@245
    10
yann@245
    11
choice
yann@245
    12
    bool
yann@245
    13
    prompt "ltrace version"
yann@1535
    14
# Don't remove next line
yann@1535
    15
# CT_INSERT_VERSION_BELOW
yann@245
    16
jocke@1685
    17
config LTRACE_V_0_5_3
jocke@1685
    18
    bool
yann@1786
    19
    prompt "0.5.3"
jocke@1685
    20
    select LTRACE_0_5_3_or_later
jocke@1685
    21
yann@1534
    22
config LTRACE_V_0_5_2
yann@245
    23
    bool
yann@1534
    24
    prompt "0.5.2"
yann@1036
    25
yann@1534
    26
config LTRACE_V_0_5
yann@1437
    27
    bool
yann@1615
    28
    prompt "0.5 (OBSOLETE)"
yann@1615
    29
    depends on OBSOLETE
yann@1534
    30
yann@1534
    31
config LTRACE_V_0_4
yann@1534
    32
    bool
yann@1615
    33
    prompt "0.4 (OBSOLETE)"
yann@1615
    34
    depends on OBSOLETE
yann@1437
    35
yann@245
    36
endchoice
yann@245
    37
yann@245
    38
config LTRACE_VERSION
yann@245
    39
    string
yann@1535
    40
# Don't remove next line
yann@1535
    41
# CT_INSERT_VERSION_STRING_BELOW
jocke@1685
    42
    default "0.5.3" if LTRACE_V_0_5_3
yann@1534
    43
    default "0.5.2" if LTRACE_V_0_5_2
yann@1534
    44
    default "0.5.1" if LTRACE_V_0_5_1
yann@1534
    45
    default "0.5" if LTRACE_V_0_5
yann@245
    46
    default "0.4" if LTRACE_V_0_4
jocke@1685
    47
jocke@1685
    48
config LTRACE_0_5_3_or_later
jocke@1685
    49
    bool
jocke@1685
    50
    default n