1
1
mirror of https://github.com/rui314/mold.git synced 2024-10-04 16:48:04 +03:00
mold/test/elf/dynamic-list.sh
Rui Ueyama 7b3c640472 Fix --dynamic-list
Previously, symbols were not exported from an executable even if
they are specified so by a dynamic list.
2021-12-25 13:38:24 +09:00

33 lines
596 B
Bash
Executable File

#!/bin/bash
export LANG=
set -e
cd $(dirname $0)
mold=`pwd`/../../mold
echo -n "Testing $(basename -s .sh $0) ... "
t=$(pwd)/../../out/test/elf/$(basename -s .sh $0)
mkdir -p $t
cat <<EOF | cc -o $t/a.o -c -xc -
void foo() {}
void bar() {}
int main() {}
EOF
clang -fuse-ld=$mold -o $t/exe $t/a.o
readelf --dyn-syms $t/exe > $t/log
! grep -q ' foo$' $t/log || false
! grep -q ' bar$' $t/log || false
cat <<EOF > $t/dyn
{ foo; bar; };
EOF
clang -fuse-ld=$mold -o $t/exe $t/a.o -Wl,-dynamic-list=$t/dyn
readelf --dyn-syms $t/exe > $t/log
grep -q ' foo$' $t/log
grep -q ' bar$' $t/log
echo OK