Build system: use SPDX identifiers
[urcu.git] / extras / abi / dump_abi.sh
CommitLineData
c0ecb6ea 1#!/bin/bash
d001c886
MJ
2
3# SPDX-FileCopyrightText: 2021 Michael Jeanson <mjeanson@efficios.com>
4#
c0ecb6ea
MJ
5# SPDX-License-Identifier: GPL-2.0-only
6
7set -eu
8
9INDIR=$1
10OUTDIR=$2
11
12ARGS=(
13 "--annotate" # Add comments to the xml output
14 "--no-corpus-path" # Do not put the path in the abi-corpus
15)
16
17for lib in "${INDIR}"/liburcu*.so.?
18do
19 abidw "${ARGS[@]}" --out-file "${OUTDIR}/$(basename "$lib").xml" "$lib"
20
21 # Clean the full paths
22 sed -i "s#$(pwd)/##g" "${OUTDIR}/$(basename "$lib").xml"
23done
24
This page took 0.027477 seconds and 4 git commands to generate.