75720db391
The Xtensa architecture had been removed because it required special handling and depended on additional directories and files that became obsolete over time. This change is more aligned to other architectures. [Thomas: rebased on top of the "arch: improve definition of gcc mtune, mcpu, etc." patch]. Signed-off-by: Chris Zankel <chris@zankel.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13 lines
477 B
Plaintext
13 lines
477 B
Plaintext
config BR2_PACKAGE_LTRACE
|
|
bool "ltrace"
|
|
depends on !(BR2_avr32 || BR2_mips || BR2_mipsel || BR2_sh || BR2_sh64)
|
|
depends on !BR2_xtensa
|
|
select BR2_PACKAGE_LIBELF
|
|
help
|
|
Debugging program which runs a specified command until it exits.
|
|
While the command is executing, ltrace intercepts and records
|
|
the dynamic library calls which are called by the executed
|
|
process and the signals received by that process.
|
|
|
|
http://packages.debian.org/unstable/utils/ltrace.html
|