8000 GitHub - wujingfeng2009/abi-dumper: Dump ABI of an ELF object containing DWARF debug info
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

wujingfeng2009/abi-dumper

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

56 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NAME:
  ABI Dumper — a tool to dump ABI of an ELF object containing DWARF debug info.
  
  The tool is intended to be used with ABI Compliance Checker tool for tracking
  ABI changes of a C/C++ library or kernel module.
  
  The tool is developed by Andrey Ponomarenko: https://abi-laboratory.pro/

INSTALL:
  sudo make install prefix=/usr

REQUIRES:
  Perl 5
  Elfutils (eu-readelf)
  Vtable Dumper >= 1.1 (https://github.com/lvc/vtable-dumper)
  Universal Ctags      (https://github.com/universal-ctags/ctags)

USAGE:
  abi-dumper libTest.so -o ABI.dump
  abi-dumper Module.ko.debug

EXAMPLES:
  abi-dumper lib/libssh.so.3
  abi-dumper drm/nouveau/nouveau.ko.debug

NOTE:
  Input objects should be compiled with -g -Og additional options to contain DWARF debug info.

FILTER PUBLIC ABI:
  abi-dumper libTest.so -public-headers PATH
  PATH — path to the install tree of a library

ABI CHECK:
  abi-dumper libTest.so.0 -o ABIv0.dump
  abi-dumper libTest.so.1 -o ABIv1.dump
  abi-compliance-checker -l libTest -old ABIv0.dump -new ABIv1.dump

COMPATIBILITY:
  ABI Compliance Checker >= 1.99.24 (https://github.com/lvc/abi-compliance-checker)

ADV. USAGE:
  For advanced usage, see output of --help option.

About

Dump ABI of an ELF object containing DWARF debug info

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Perl 85.7%
  • Roff 14.2%
  • Makefile 0.1%
0