abi-compliance-checker
tool to compare ABI compatibility of shared C/C++ library versions
Install
- All systems
-
curl cmd.cat/abi-compliance-checker.sh
- Debian
-
apt-get install abi-compliance-checker
- Ubuntu
-
apt-get install abi-compliance-checker
- Alpine
-
apk add abi-compliance-checker
- Kali Linux
-
apt-get install abi-compliance-checker
- Fedora
-
dnf install abi-compliance-checker
- Windows (WSL2)
-
sudo apt-get update
sudo apt-get install abi-compliance-checker
- Raspbian
-
apt-get install abi-compliance-checker
- Dockerfile
- dockerfile.run/abi-compliance-checker
- Docker
-
docker run cmd.cat/abi-compliance-checker abi-compliance-checker
powered by Commando
abi-compliance-checker
tool to compare ABI compatibility of shared C/C++ library versions
abi-compliance-checker can be used to help reduce the possibility of an application crashing when the shared libraries it links against have changed. Signatures and data type definitions from two separate versions of a library are compared by examining the shared objects (.so) files themselves, and by analysing the header files (.h) provided for the two versions of the library and their dependencies. Shared library developers trying to strive for binary compatibility between releases may also use this tool to detect if an any accidental application binary interface (ABI) changes have been introduced. The checker may also be used for assessing binary compatibility between different Linux distributions.