Build system: implement REUSE with SPDX identifiers
[lttng-ust.git] / extras / abi / README.md
CommitLineData
e03d7c66
MJ
1<!--
2SPDX-FileCopyrightText: 2023 EfficiOS, Inc.
3
4SPDX-License-Identifier: CC-BY-4.0
5-->
6
7This directory contains the serialized ABI definitions for a typical build of
8the lttng-ust libraries. This information is extracted using
9[libabigail](https://sourceware.org/libabigail/).
10
11The artefacts used to generate these were built with `CFLAGS="-O0 -ggdb"` and
12all optional configure switches enabled.
13
14You can compare the serialized ABI with a shared object to check for breaking
15changes. For example, here we compare an in-tree built version of
16`liblttng-ust.so` with the serialized ABI of stable-2.13 :
17
18```
19abidiff \
20 extras/abi/2.13/x86_64-pc-linux-gnu/liblttng-ust.so.1.xml \
21 src/lib/lttng-ust/.libs/liblttng-ust.so
22```
This page took 0.022776 seconds and 4 git commands to generate.