This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author aponomarenko
Recipients aponomarenko, ncoghlan
Date 2014-04-03.10:41:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1396521716.63.0.646140228406.issue21142@psf.upfronthosting.co.za>
In-reply-to
Content
There are just three simple steps to setup ABI checker:

1. Create ABI dump of the _reference_ version (see instructions [1]) and commit it to the source tree (ABI-ref.dump):

$> abi-compliance-checker -l python -dump descriptor.xml -dump-path ABI-ref.dump

2. Create ABI dump of the _current_ version (ABI-cur.dump)
3. Compare these ABI dumps:

$> abi-compliance-checker -l python -old ABI-ref.dump -new ABI-cur.dump -report-path abi-report.html

To skip analysis of symbols with leading underscore pass this additional option to the tool when comparing ABI dumps: --skip-internal="\A_"

For more information see [2].

[1] https://mail.python.org/pipermail/python-dev/2014-April/133754.html
[2] http://ispras.linuxbase.org/index.php/ABI_compliance_checker
History
Date User Action Args
2014-04-03 10:41:56aponomarenkosetrecipients: + aponomarenko, ncoghlan
2014-04-03 10:41:56aponomarenkosetmessageid: <1396521716.63.0.646140228406.issue21142@psf.upfronthosting.co.za>
2014-04-03 10:41:56aponomarenkolinkissue21142 messages
2014-04-03 10:41:55aponomarenkocreate