mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-19 09:10:42 +01:00
25 lines
469 B
Bash
Executable file
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
|
|
|