harfbuzz/src/check-symbols.sh

45 lines
1.1 KiB
Bash
Raw Permalink Normal View History

#!/bin/sh
LC_ALL=C
export LC_ALL
test -z "$srcdir" && srcdir=.
2018-01-05 10:12:20 +01:00
test -z "$libs" && libs=.libs
stat=0
2013-09-17 03:49:56 +02:00
if which nm 2>/dev/null >/dev/null; then
:
else
echo "check-symbols.sh: 'nm' not found; skipping test"
exit 77
fi
2013-09-17 03:49:56 +02:00
echo "Checking that we are not exposing internal symbols"
tested=false
2014-08-14 19:33:37 +02:00
for suffix in so dylib; do
2018-01-04 07:41:34 +01:00
so=$libs/libharfbuzz.$suffix
2014-08-14 19:33:37 +02:00
if ! test -f "$so"; then continue; fi
EXPORTED_SYMBOLS="`nm "$so" | grep ' [BCDGINRSTVW] .' | grep -v ' _fini\>\| _init\>\| _fdata\>\| _ftext\>\| _fbss\>\| __bss_start\>\| __bss_start__\>\| __bss_end__\>\| _edata\>\| _end\>\| _bss_end__\>\| __end__\>\| __gcov_flush\>\| ___gcov_flush\>\| llvm_\| _llvm_' | cut -d' ' -f3`"
2014-10-02 00:18:25 +02:00
2013-09-17 03:49:56 +02:00
prefix=`basename "$so" | sed 's/libharfbuzz/hb/; s/-/_/g; s/[.].*//'`
2014-10-02 00:18:25 +02:00
# On mac, C symbols are prefixed with _
2014-08-14 19:33:37 +02:00
if test $suffix = dylib; then prefix="_$prefix"; fi
2013-09-17 03:49:56 +02:00
echo "Processing $so"
if echo "$EXPORTED_SYMBOLS" | grep -v "^${prefix}_"; then
echo "Ouch, internal symbols exposed"
stat=1
fi
2013-09-17 03:49:56 +02:00
tested=true
done
if ! $tested; then
2013-09-17 03:49:56 +02:00
echo "check-symbols.sh: no shared library found; skipping test"
exit 77
fi
exit $stat