aboutsummaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
Diffstat (limited to 'README')
-rw-r--r--README30
1 files changed, 15 insertions, 15 deletions
diff --git a/README b/README
index f0600a7..28392fb 100644
--- a/README
+++ b/README
@@ -17,6 +17,21 @@ REQUIRES:
Ctags
ABI Dumper (0.99.14 or newer)
+USAGE (WITH ABI DUMPER):
+
+ 1. Library should be compiled with "-g -Og" GCC options
+ to contain DWARF debug info
+
+ 2. Create ABI dumps for both library versions
+ using the ABI Dumper (https://github.com/lvc/abi-dumper) tool:
+
+ abi-dumper OLD.so -o ABI-0.dump -lver 0
+ abi-dumper NEW.so -o ABI-1.dump -lver 1
+
+ 3. Compare ABI dumps to create report:
+
+ abi-compliance-checker -l NAME -old ABI-0.dump -new ABI-1.dump
+
USAGE (ORIGINAL):
abi-compliance-checker -lib NAME -old OLD.xml -new NEW.xml
@@ -34,20 +49,5 @@ USAGE (ORIGINAL):
/path/to/libraries/
</libs>
-USAGE WITH ABI DUMPER:
-
- 1. Library should be compiled with "-g -Og" GCC options
- to contain DWARF debug info
-
- 2. Create ABI dumps for both library versions
- using the ABI Dumper (https://github.com/lvc/abi-dumper) tool:
-
- abi-dumper OLD.so -o ABI-0.dump -lver 0
- abi-dumper NEW.so -o ABI-1.dump -lver 1
-
- 3. Compare ABI dumps to create report:
-
- abi-compliance-checker -l NAME -old ABI-0.dump -new ABI-1.dump
-
ADV. USAGE:
For advanced usage, see doc/index.html or output of -help option.