1
1
mirror of https://github.com/rui314/mold.git synced 2024-09-21 09:57:18 +03:00
mold/test/elf/aarch64-hello-static.sh
2021-09-08 19:13:18 +09:00

32 lines
714 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
[ $(uname -m) = x86_64 ] || { echo skipped; exit; }
echo 'int main() {}' | aarch64-linux-gnu-gcc -o $t/exe -xc - >& /dev/null \
|| { echo skipped; exit; }
cat <<EOF | aarch64-linux-gnu-gcc -o $t/a.o -c -g -xc -
#include <stdio.h>
int main() {
printf("Hello world\n");
return 0;
}
EOF
aarch64-linux-gnu-gcc -B`dirname $mold` -o $t/exe $t/a.o -static
readelf -p .comment $t/exe | grep -qw mold
readelf -a $t/exe > $t/log
grep -Pq 'Machine:\s+AArch64' $t/log
qemu-aarch64 -L /usr/aarch64-linux-gnu $t/exe | grep -q 'Hello world'
echo OK