NetworkManager/tools/check-exports.sh

25 lines
469 B
Bash
Executable file

#!/bin/sh
LC_ALL=C
export LC_ALL
stat=0
so=$1
def=$2
# Have to prefix with a tab and suffix with a ';' to match .ver file format
get_syms='( objdump -t "$so" | grep "^[^ ]* [^l.*]*[.]"; objdump -t "$so" | grep "[.]hidden.*"; ) | sed "s/.* //" | sed "s/^/\t/" | sed "s/$/;/"'
echo $so: checking exported symbols against $def
{
echo "{"
echo "global:"
eval $get_syms | sort -u
echo "local:"
echo " *;"
echo "};"
} | diff -u "$def" - >&2 || stat=1
exit $stat