1
1
mirror of https://github.com/rui314/mold.git synced 2024-10-26 13:10:46 +03:00
mold/test/elf/export-dynamic.sh
2022-10-11 12:46:56 +08:00

24 lines
430 B
Bash
Executable File

#!/bin/bash
. $(dirname $0)/common.inc
cat <<EOF | $CC -o $t/a.o -c -x assembler -
.text
.globl foo
.hidden foo
foo:
nop
.globl bar
bar:
nop
.globl _start
_start:
nop
EOF
$CC -shared -fPIC -o $t/b.so -xc /dev/null
./mold -o $t/exe $t/a.o $t/b.so --export-dynamic
readelf --dyn-syms $t/exe > $t/log
grep -Eq 'NOTYPE\s+GLOBAL DEFAULT\s+[0-9]+ bar' $t/log
grep -Eq 'NOTYPE\s+GLOBAL DEFAULT\s+[0-9]+ _start' $t/log