diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-07-13 12:22:34 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-07-13 12:22:34 +0000 |
commit | e4a493abc91398b20324f9751ea23bae4b6f9572 (patch) | |
tree | 7ed51147707b1316f9612313747a366181f6372f /config/debug/ltrace.in | |
parent | c6025fb66ab49c7980abe5c75e3a6b5a9b32b172 (diff) | |
download | crosstool-ng-e4a493abc91398b20324f9751ea23bae4b6f9572.tar.gz crosstool-ng-e4a493abc91398b20324f9751ea23bae4b6f9572.tar.bz2 crosstool-ng-e4a493abc91398b20324f9751ea23bae4b6f9572.zip |
Add ltrace (and libelf) utilities.
Marked as BROKEN for others to debug that if they need it.
Diffstat (limited to 'config/debug/ltrace.in')
-rw-r--r-- | config/debug/ltrace.in | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/config/debug/ltrace.in b/config/debug/ltrace.in new file mode 100644 index 00000000..f9448ee8 --- /dev/null +++ b/config/debug/ltrace.in @@ -0,0 +1,41 @@ +# ltrace + +menuconfig LTRACE + bool + prompt "ltrace" + default n + depends on BROKEN + select LIBELF + help + ltrace is currently BROKEN! It depends on libelf, and I don't + know how to configure/compile that so that ltrace can successfully + use it. I you manage to build ltrace (and libelf!), please be so + kind as to tell me! Thank you! + +if LTRACE + +choice + bool + prompt "ltrace version" + +config LTRACE_V_0_3_36 + bool + prompt "0.3.36" + depends on OBSOLETE + +config LTRACE_V_0_4 + bool + prompt "0.4" + +# CT_INSERT_VERSION_ABOVE +# Don't remove above line! +endchoice + +config LTRACE_VERSION + string + default "0.3.36" if LTRACE_V_0_3_36 + default "0.4" if LTRACE_V_0_4 +# CT_INSERT_VERSION_STRING_ABOVE +# # Don't remove above line! + +endif |