mirror of
https://github.com/rui314/mold.git
synced 2024-11-15 14:36:25 +03:00
32 lines
695 B
Bash
Executable File
32 lines
695 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
|
|
|
|
[ $(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
|