2021-07-07 14:38:48 +03:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cd $(dirname $0)
|
2021-07-21 08:49:02 +03:00
|
|
|
mold=`pwd`/../mold
|
2021-07-07 14:38:48 +03:00
|
|
|
echo -n "Testing $(basename -s .sh $0) ... "
|
|
|
|
t=$(pwd)/tmp/$(basename -s .sh $0)
|
|
|
|
mkdir -p $t
|
|
|
|
|
|
|
|
cat <<EOF | cc -fPIC -c -o $t/a.o -xc -
|
|
|
|
extern int foo;
|
|
|
|
EOF
|
|
|
|
|
|
|
|
cat <<EOF | cc -fPIC -c -o $t/b.o -xc -
|
|
|
|
__attribute__((visibility("protected"))) int foo;
|
|
|
|
EOF
|
|
|
|
|
2021-07-19 18:21:12 +03:00
|
|
|
clang -fuse-ld=$mold -shared -o $t/c.so $t/a.o $t/b.o -Wl,-strip-all
|
2021-07-07 14:38:48 +03:00
|
|
|
readelf --symbols $t/c.so | grep -Pq 'PROTECTED\b.*\bfoo\b'
|
|
|
|
|
|
|
|
echo OK
|