2007-07-13 12:22:34 +00:00
|
|
|
# ltrace
|
2011-05-08 17:02:44 +00:00
|
|
|
|
|
|
|
## depends on ! BACKEND
|
|
|
|
##
|
|
|
|
## select LIBELF_TARGET
|
|
|
|
##
|
|
|
|
## help ltrace is a program that simply runs the specified command until it exits.
|
|
|
|
## help It intercepts and records the dynamic library calls which are called by
|
|
|
|
## help the executed process and the signals which are received by that process.
|
|
|
|
## help It can also intercept and print the system calls executed by the program.
|
2007-07-13 12:22:34 +00:00
|
|
|
|
|
|
|
choice
|
|
|
|
bool
|
|
|
|
prompt "ltrace version"
|
2009-09-13 16:38:06 +00:00
|
|
|
# Don't remove next line
|
|
|
|
# CT_INSERT_VERSION_BELOW
|
2007-07-13 12:22:34 +00:00
|
|
|
|
2010-01-03 15:46:58 +00:00
|
|
|
config LTRACE_V_0_5_3
|
|
|
|
bool
|
2010-01-31 11:43:23 +00:00
|
|
|
prompt "0.5.3"
|
2010-01-03 15:46:58 +00:00
|
|
|
select LTRACE_0_5_3_or_later
|
|
|
|
|
2009-09-13 15:51:33 +00:00
|
|
|
config LTRACE_V_0_5_2
|
2008-11-04 18:52:59 +00:00
|
|
|
bool
|
2009-09-13 15:51:33 +00:00
|
|
|
prompt "0.5.2"
|
2008-11-04 18:52:59 +00:00
|
|
|
|
2007-07-13 12:22:34 +00:00
|
|
|
endchoice
|
|
|
|
|
|
|
|
config LTRACE_VERSION
|
|
|
|
string
|
2009-09-13 16:38:06 +00:00
|
|
|
# Don't remove next line
|
|
|
|
# CT_INSERT_VERSION_STRING_BELOW
|
2010-01-03 15:46:58 +00:00
|
|
|
default "0.5.3" if LTRACE_V_0_5_3
|
2009-08-02 21:33:36 +00:00
|
|
|
default "0.5.2" if LTRACE_V_0_5_2
|
2010-01-03 15:46:58 +00:00
|
|
|
|
|
|
|
config LTRACE_0_5_3_or_later
|
|
|
|
bool
|