Fix check-symbols on OS X
This commit is contained in:
parent
522b1cc526
commit
8c6bd34d38
|
@ -17,14 +17,14 @@ fi
|
||||||
tested=false
|
tested=false
|
||||||
for suffix in so dylib; do
|
for suffix in so dylib; do
|
||||||
so=.libs/libharfbuzz.$suffix
|
so=.libs/libharfbuzz.$suffix
|
||||||
if test -f "$so"; then
|
if ! test -f "$so"; then continue; fi
|
||||||
echo "Checking that we are not linking to libstdc++"
|
|
||||||
if ldd $so | grep 'libstdc[+][+]'; then
|
echo "Checking that we are not linking to libstdc++"
|
||||||
echo "Ouch, linked to libstdc++"
|
if ldd $so | grep 'libstdc[+][+]'; then
|
||||||
stat=1
|
echo "Ouch, linked to libstdc++"
|
||||||
fi
|
stat=1
|
||||||
tested=true
|
|
||||||
fi
|
fi
|
||||||
|
tested=true
|
||||||
done
|
done
|
||||||
if ! $tested; then
|
if ! $tested; then
|
||||||
echo "check-libstdc++.sh: libharfbuzz shared library not found; skipping test"
|
echo "check-libstdc++.sh: libharfbuzz shared library not found; skipping test"
|
||||||
|
|
|
@ -16,11 +16,17 @@ fi
|
||||||
|
|
||||||
echo "Checking that we are not exposing internal symbols"
|
echo "Checking that we are not exposing internal symbols"
|
||||||
tested=false
|
tested=false
|
||||||
for so in `ls .libs/lib*.so .libs/lib*.dylib 2>/dev/null` ; do
|
for suffix in so dylib; do
|
||||||
|
so=.libs/libharfbuzz.$suffix
|
||||||
|
if ! test -f "$so"; then continue; fi
|
||||||
|
prefix=
|
||||||
|
|
||||||
EXPORTED_SYMBOLS="`nm "$so" | grep ' [BCDGINRSTVW] ' | grep -v ' _fini\>\| _init\>\| _fdata\>\| _ftext\>\| _fbss\>\| __bss_start\>\| __bss_start__\>\| __bss_end__\>\| _edata\>\| _end\>\| _bss_end__\>\| __end__\>' | cut -d' ' -f3`"
|
EXPORTED_SYMBOLS="`nm "$so" | grep ' [BCDGINRSTVW] ' | grep -v ' _fini\>\| _init\>\| _fdata\>\| _ftext\>\| _fbss\>\| __bss_start\>\| __bss_start__\>\| __bss_end__\>\| _edata\>\| _end\>\| _bss_end__\>\| __end__\>' | cut -d' ' -f3`"
|
||||||
prefix=`basename "$so" | sed 's/libharfbuzz/hb/; s/-/_/g; s/[.].*//'`
|
prefix=`basename "$so" | sed 's/libharfbuzz/hb/; s/-/_/g; s/[.].*//'`
|
||||||
|
|
||||||
|
# Ob mac, C symbols are prefixed with _
|
||||||
|
if test $suffix = dylib; then prefix="_$prefix"; fi
|
||||||
|
|
||||||
echo "Processing $so"
|
echo "Processing $so"
|
||||||
if echo "$EXPORTED_SYMBOLS" | grep -v "^${prefix}_"; then
|
if echo "$EXPORTED_SYMBOLS" | grep -v "^${prefix}_"; then
|
||||||
echo "Ouch, internal symbols exposed"
|
echo "Ouch, internal symbols exposed"
|
||||||
|
|
Loading…
Reference in New Issue