1
1
mirror of https://github.com/rui314/mold.git synced 2024-10-05 00:57:08 +03:00
mold/test/elf/reloc-rodata.sh
2021-09-08 19:13:18 +09:00

24 lines
457 B
Bash
Executable File

#!/bin/bash
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 -fno-PIC -c -o $t/a.o -xc -
#include <stdio.h>
int foo;
int * const bar = &foo;
int main() {
printf("%d\n", *bar);
}
EOF
! clang -fuse-ld=$mold -o $t/exe $t/a.o -pie >& $t/log
grep -Pq 'relocation against symbol .+ can not be used; recompile with -fPIC' $t/log
echo OK