diff options
author | Nico Weber <thakis@chromium.org> | 2021-08-28 12:56:14 -0400 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-08-28 21:51:30 +0100 |
commit | a900792921977eb21729530617c7f917081b3613 (patch) | |
tree | 43ac82bf6f036c840d9b7d5750bb883809408ba9 /Toolchain | |
parent | 72de228695f3b689825768a2cf60fe98b9c8c65d (diff) | |
download | serenity-a900792921977eb21729530617c7f917081b3613.zip |
Toolchain: Also build aarch64-softmmu in BuildQemu.sh
Diffstat (limited to 'Toolchain')
-rwxr-xr-x | Toolchain/BuildQemu.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Toolchain/BuildQemu.sh b/Toolchain/BuildQemu.sh index 04ef56a568..c2426bfb36 100755 --- a/Toolchain/BuildQemu.sh +++ b/Toolchain/BuildQemu.sh @@ -60,7 +60,7 @@ echo Using $UI_LIB based UI pushd "$DIR/Build/qemu" "$DIR"/Tarballs/$QEMU_VERSION/configure --prefix="$PREFIX" \ - --target-list=i386-softmmu,x86_64-softmmu \ + --target-list=aarch64-softmmu,i386-softmmu,x86_64-softmmu \ --enable-$UI_LIB || exit 1 make -j "$MAKEJOBS" || exit 1 make install || exit 1 |