1
1
mirror of https://github.com/rui314/mold.git synced 2024-11-15 14:36:25 +03:00
mold/test/pltgot.sh
2021-07-21 16:27:29 +09:00

33 lines
566 B
Bash
Executable File

#!/bin/bash
set -e
cd $(dirname $0)
mold=`pwd`/../mold
echo -n "Testing $(basename -s .sh $0) ... "
t=$(pwd)/tmp/$(basename -s .sh $0)
mkdir -p $t
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
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