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 27 28 29 30 31
|
#!/bin/bash
. $(dirname $0)/common.inc
cat <<'EOF' > $t/a.ver
{
local:
*;
global:
xyz;
foo*bar*[abc]x;
};
EOF
cat <<EOF | $CXX -fPIC -c -o $t/b.o -xc -
void xyz() {}
void foobarzx() {}
void foobarcx() {}
void foo123bar456bx() {}
void foo123bar456c() {}
void foo123bar456x() {}
EOF
$CC -B. -shared -Wl,--version-script=$t/a.ver -o $t/c.so $t/b.o
readelf --dyn-syms $t/c.so > $t/log
grep ' xyz' $t/log
not grep ' foobarzx' $t/log
grep ' foobarcx' $t/log
grep ' foo123bar456bx' $t/log
not grep ' foo123bar456c' $t/log
not grep ' foo123bar456x' $t/log
|