1
1
mirror of https://github.com/rui314/mold.git synced 2024-11-13 09:39:13 +03:00
mold/test/elf/pltgot.sh

35 lines
638 B
Bash
Raw Normal View History

2021-02-26 14:56:01 +03:00
#!/bin/bash
set -e
2021-03-01 10:28:16 +03:00
cd $(dirname $0)
2021-09-08 13:11:48 +03:00
mold=`pwd`/../../mold
2021-02-26 14:56:01 +03:00
echo -n "Testing $(basename -s .sh $0) ... "
2021-09-08 13:11:48 +03:00
t=$(pwd)/../..//out/test/elf/$(basename -s .sh $0)
2021-02-26 14:56:01 +03:00
mkdir -p $t
2021-08-23 07:44:38 +03:00
[ $(uname -m) = x86_64 ] || { echo skipped; exit; }
2021-02-26 14:56:01 +03:00
cat <<EOF | clang -fPIC -shared -o $t/a.so -x assembler -
.globl ext1, ext2
ext1:
nop
ext2:
nop
EOF
cat <<EOF | clang -c -o $t/b.o -x assembler -
.globl _start
_start:
call ext1@PLT
call ext2@PLT
mov ext2@GOTPCREL(%rip), %rax
ret
EOF
$mold -o $t/exe $t/b.o $t/a.so
2021-02-26 14:56:01 +03:00
objdump -d -j .plt.got $t/exe > $t/log
grep -Pq '201020:\s+ff 25 da 0f 00 00\s+jmpq \*0xfda\(%rip\)\s+# 202000 <ext2>' $t/log
echo OK