README revision cdade1c23720e66f945ceda1c476c5217d2e5f6c
1                                ltrace
2
3                       A Dynamic Library Tracer
4
5         Copyright 1997-2006 Juan Cespedes <cespedes@debian.org>
6
7
8Contents
9--------
10 0. Authors
11 1. Introduction
12 2. Where can I find it
13 3. How does it work
14 4. Where does it work
15 5. Bugs
16 6. License
17
18
190. Authors
20----------
21ltrace has been developed mainly by Juan Cespedes <cespedes@debian.org>,
22but he has received many contributions from other people.  The following
23people have contributed significantly to this project:
24
25* Pat Beirne <pbeirne@home.com> (ARM port)
26* Roman Hodek <Roman.Hodek@informatik.uni-erlangen.de> (m68k port)
27* Morten Eriksen <mortene@sim.no> (misc fixes)
28* Silvio Cesare <silvio@big.net.au> (ELF hacking)
29* Timothy Fesig <slate@us.ibm.com> (S390 port)
30* Anton Blanchard <anton@samba.org> (Powerpc port)
31* Jakub Jelinek <jakub@redhat.com> (SPARC port, support for libelf, many fixes)
32* Jakub Bogusz <qboosh@pld-linux.org> (alpha port)
33* SuSE (amd64 port)
34* Ian Wienand <ianw@gelato.unsw.edu.au> (IA64 port)
35
361. Introduction
37---------------
38ltrace is a debugging tool, similar to strace, but it traces library
39calls instead of system calls.
40
412. Where can I find it
42----------------------
43
44http://ltrace.alioth.debian.org
45
463. How does it work
47-------------------
48Using software breakpoints, just like gdb.
49
504. Where does it work
51---------------------
52
53It works with ELF based Linux systems running on i386, m68k, S/390,
54ARM, PowerPC, PowerPC64, IA64, AMD64, SPARC and Alpha processors.
55
56It is part of at least Debian GNU/Linux, RedHat, SuSE and Mandrake.
57
585. Bugs
59-------
60Too many to list here :).  If you like to submit a bug report, or a
61feature request, either do that against the Debian `ltrace' package,
62or mail ltrace-devel@lists.alioth.debian.org.
63
64This file is very incomplete and out-of-date.
65
666. License
67----------
68    Copyright (C) 1997-2006 Juan Cespedes <cespedes@debian.org>
69
70    This program is free software; you can redistribute it and/or modify
71    it under the terms of the GNU General Public License as published by
72    the Free Software Foundation; either version 2 of the License, or
73    (at your option) any later version.
74
75    This program is distributed in the hope that it will be useful,
76    but WITHOUT ANY WARRANTY; without even the implied warranty of
77    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
78    GNU General Public License for more details.
79
80    You should have received a copy of the GNU General Public License
81    along with this program; if not, write to the Free Software
82    Foundation, Inc., 59 Temple Place - Suite 330, Boston,
83    MA 02111-1307, USA.
84
85