config/debug/ltrace.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Aug 30 19:33:48 2009 +0200 (2009-08-30)
changeset 1497 1b90f0b34c80
parent 1197 f379ee57b01e
child 1534 d4ddf19a1968
permissions -rw-r--r--
config: move down companion libraries sub-menu

Move the companion libraries sub-menu down the main menu.
That way, the user does not need to go back and forth in the menu
to change options set by the different components that select the
companion libraries (binutils, gcc, gdb).
     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 
    15 config LTRACE_V_0_4
    16     bool
    17     prompt "0.4"
    18 
    19 config LTRACE_V_0_5
    20     bool
    21     prompt "0.5"
    22 
    23 config LTRACE_V_0_5_1
    24     bool
    25     prompt "0.5.1  (EXPERIMENTAL)"
    26     depends on EXPERIMENTAL
    27 
    28 config LTRACE_V_0_5_2
    29     bool
    30     prompt "0.5.2"
    31 
    32 # CT_INSERT_VERSION_ABOVE
    33 # Don't remove above line!
    34 endchoice
    35 
    36 config LTRACE_VERSION
    37     string
    38     default "0.4" if LTRACE_V_0_4
    39     default "0.5" if LTRACE_V_0_5
    40     default "0.5.1" if LTRACE_V_0_5_1
    41     default "0.5.2" if LTRACE_V_0_5_2
    42 # CT_INSERT_VERSION_STRING_ABOVE
    43 # # Don't remove above line!