summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-07-13 12:22:34 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-07-13 12:22:34 (GMT)
commite4a493abc91398b20324f9751ea23bae4b6f9572 (patch)
tree7ed51147707b1316f9612313747a366181f6372f /tools
parentc6025fb66ab49c7980abe5c75e3a6b5a9b32b172 (diff)
Add ltrace (and libelf) utilities.
Marked as BROKEN for others to debug that if they need it.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/addToolVersion.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/addToolVersion.sh b/tools/addToolVersion.sh
index 941a486..08b3bb9 100755
--- a/tools/addToolVersion.sh
+++ b/tools/addToolVersion.sh
@@ -8,7 +8,7 @@ doHelp() {
Usage: ${myname} <tool> [option] <version>
'tool' in one of:
--gcc, --binutils, --glibc, --uClibc, --linux,
- --gdb, --dmalloc, --duma, --strace
+ --gdb, --dmalloc, --duma, --strace, --ltrace, --libelf
Valid options for all tools:
--experimental, -x
@@ -57,6 +57,8 @@ while [ $i -le $# ]; do
--dmalloc) cat=DMALLOC; tool=dmalloc; tool_prefix=debug/ tool_suffix=;;
--duma) cat=DUMA; tool=duma; tool_prefix=debug/ tool_suffix=;;
--strace) cat=STRACE; tool=strace; tool_prefix=debug/ tool_suffix=;;
+ --ltrace) cat=LTRACE; tool=ltrace; tool_prefix=debug/ tool_suffix=;;
+ --libelf) cat=LIBELF; tool=libelf; tool_prefix=tools/ tool_suffix=;;
# Tools options:
-x|--experimental) EXP=1; OBS=;;
-o|--obsolete) OBS=1; EXP=;;