commit 0678bee5788acd08d62219f4fc857589e2703197
parent a2962bb1ec4f14197d8c6901fb27ee44a439cd15
Author: Michael Forney <mforney@mforney.org>
Date: Tue, 16 Mar 2021 18:21:07 -0700
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).
Diffstat:
1 file changed, 1 insertion(+), 6 deletions(-)
diff --git 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 &&