lvc / abi-compliance-checker

A tool for checking backward API/ABI compatibility of a C/C++ library
https://lvc.github.io/abi-compliance-checker/
GNU Lesser General Public License v2.1
621 stars 76 forks source link

clang support #110

Open simonrenger opened 3 years ago

simonrenger commented 3 years ago

Hi, I am using clang for my projects so I am wondering if the checker supports clang

linuxhw commented 3 years ago

Hi,

Only via abi-dumper: https://github.com/lvc/abi-compliance-checker#usage

You can compile your binaries by clang (enable debug-info), dump ABIs by abi-dumper and compare ABI dumps by abi-compliance-checker.

simonrenger commented 3 years ago

Thanks has anyone test this also with MSVC clang comping option? That should also work then right?