• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1
2Copyright (C) 2013-2016 Andrey Ponomarenko's ABI Laboratory
3All rights reserved.
4
5
6RELEASE INFORMATION
7
8Project:           ABI Dumper
9Version:           0.99.17
10Date:              2016-08-15
11
12
13This file explains how to install and setup environment
14for the tool in your computer.
15
16
17Content:
18
19   1. Requirements for Linux and FreeBSD
20   2. Configure and Install
21   3. Usage
22
23
241. REQUIREMENTS FOR LINUX AND FREEBSD
25=====================================
26
27   1. Perl 5 (5.8 or newer)
28   2. Elfutils (eu-readelf)
29   3. Vtable-Dumper (1.1 or newer)
30   4. Binutils (objdump)
31   5. Universal Ctags
32
33
34
352. CONFIGURE AND INSTALL
36========================
37
38   This command will install an abi-dumper program in the
39   PREFIX/bin system directory:
40
41     sudo make install prefix=PREFIX [/usr, /usr/local, ...]
42
432.1 Remove
44
45     sudo make uninstall prefix=PREFIX
46
47
48
493. USAGE
50========
51
52   Dump ABI of a library:
53
54     abi-dumper libTest.so -o ABI.dump
55
56   Dump ABI of a kernel module:
57
58     abi-dumper Module.ko.debug -o ABI.dump
59
60   For advanced usage, see output of --help option
61
62
63
64Enjoy!
65