mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
Meta: Run qemu-system-aarch64 in aarch64 builds in run.sh
This commit is contained in:
parent
00c5e68b11
commit
230ea3754d
Notes:
sideshowbarker
2024-07-18 05:08:14 +09:00
Author: https://github.com/nico Commit: https://github.com/SerenityOS/serenity/commit/230ea3754d0 Pull-request: https://github.com/SerenityOS/serenity/pull/9666
1 changed files with 3 additions and 1 deletions
|
@ -58,7 +58,9 @@ if [ -z "$SERENITY_QEMU_BIN" ]; then
|
|||
QEMU_BINARY_SUFFIX=".exe"
|
||||
fi
|
||||
fi
|
||||
if [ "$SERENITY_ARCH" = "x86_64" ]; then
|
||||
if [ "$SERENITY_ARCH" = "aarch64" ]; then
|
||||
SERENITY_QEMU_BIN="${QEMU_BINARY_PREFIX}qemu-system-aarch64${QEMU_BINARY_SUFFIX}"
|
||||
elif [ "$SERENITY_ARCH" = "x86_64" ]; then
|
||||
SERENITY_QEMU_BIN="${QEMU_BINARY_PREFIX}qemu-system-x86_64${QEMU_BINARY_SUFFIX}"
|
||||
else
|
||||
SERENITY_QEMU_BIN="${QEMU_BINARY_PREFIX}qemu-system-i386${QEMU_BINARY_SUFFIX}"
|
||||
|
|
Loading…
Reference in a new issue