From 0678bee5788acd08d62219f4fc857589e2703197 Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Tue, 16 Mar 2021 18:21:07 -0700 Subject: Revert "arm64: try qemu-system-aarch64" This reverts commit be3a67a7f5079f30b0ccc696d549fd03a2dbbad1. qemu-system-aarch64 is a full system emulator and is not suitable for running the qbe test suite (at least without a kernel and root filesystem). --- tools/test.sh | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'tools') diff --git a/tools/test.sh b/tools/test.sh index 3bf7e95..937974b 100755 --- a/tools/test.sh +++ b/tools/test.sh @@ -20,15 +20,10 @@ testcc() { init() { case "$TARGET" in arm64) - qemucmd=qemu-system-aarch64 - if ! $qemucmd -version >/dev/null 2>&1 - then - qemucmd=qemu-aarch64 - fi for p in aarch64-linux-musl aarch64-linux-gnu do cc="$p-gcc -no-pie" - qemu="$qemucmd -L /usr/$p" + qemu="qemu-aarch64 -L /usr/$p" if $cc -v >/dev/null 2>&1 && $qemu -version >/dev/null 2>&1 && -- cgit 1.4.1