#!/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 < 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