1
1
mirror of https://github.com/rui314/mold.git synced 2024-10-05 00:57:08 +03:00
mold/test/elf/pltgot.sh

43 lines
743 B
Bash
Raw Normal View History

2021-02-26 14:56:01 +03:00
#!/bin/bash
export LC_ALL=C
2021-02-26 14:56:01 +03:00
set -e
CC="${CC:-cc}"
CXX="${CXX:-c++}"
GCC="${GCC:-gcc}"
GXX="${GXX:-g++}"
OBJDUMP="${OBJDUMP:-objdump}"
MACHINE="${MACHINE:-$(uname -m)}"
2022-01-24 04:21:08 +03:00
testname=$(basename "$0" .sh)
echo -n "Testing $testname ... "
cd "$(dirname "$0")"/../..
mold="$(pwd)/mold"
2022-01-07 12:06:53 +03:00
t=out/test/elf/$testname
mkdir -p $t
2021-02-26 14:56:01 +03:00
[ $MACHINE = x86_64 ] || { echo skipped; exit; }
2021-08-23 07:44:38 +03:00
2022-01-07 12:06:53 +03:00
cat <<EOF | $CC -fPIC -shared -o $t/a.so -x assembler -
2021-02-26 14:56:01 +03:00
.globl ext1, ext2
ext1:
nop
ext2:
nop
EOF
2022-01-07 12:06:53 +03:00
cat <<EOF | $CC -c -o $t/b.o -x assembler -
2021-02-26 14:56:01 +03:00
.globl _start
_start:
call ext1@PLT
call ext2@PLT
mov ext2@GOTPCREL(%rip), %rax
ret
EOF
2022-01-07 12:06:53 +03:00
"$mold" --pie -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
2021-02-26 14:56:01 +03:00
2022-01-24 04:21:08 +03:00
grep -Eq '1020:.*jmp.*# 2000 <ext2>' $t/log
2021-02-26 14:56:01 +03:00
echo OK