summaryrefslogtreecommitdiffstats
path: root/src/spdk/dpdk/devtools/gen-abi.sh
blob: c44b0e228a920b350e09ad412dcd9796291c9dd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/sh -e
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2019 Red Hat, Inc.

if [ $# != 1 ]; then
	echo "Usage: $0 installdir"
	exit 1
fi

installdir=$1
if [ ! -d $installdir ]; then
	echo "Error: install directory '$installdir' does not exist."
	exit 1
fi

dumpdir=$installdir/dump
rm -rf $dumpdir
mkdir -p $dumpdir
for f in $(find $installdir -name "*.so.*"); do
	if test -L $f; then
		continue
	fi

	libname=$(basename $f)
	abidw --out-file $dumpdir/${libname%.so*}.dump $f
done