diff options
author | Marco Cutecchia <marco.cutecchia@outlook.it> | 2023-04-08 22:04:11 +0200 |
---|---|---|
committer | Brian Gianforcaro <b.gianfo@gmail.com> | 2023-04-08 14:12:29 -0700 |
commit | 401946947c4037125820e6ad1e383bb86ea9f5bd (patch) | |
tree | 05064ca2267249709c46850d9615344d7254d2ff /Toolchain | |
parent | 4555e3b8d246c406342bf605c7c28d497cc6c014 (diff) | |
download | serenity-401946947c4037125820e6ad1e383bb86ea9f5bd.zip |
Toolchain: Stop building QEMU with i386 support
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 025ea87d54..ae1520ac1d 100755 --- a/Toolchain/BuildQemu.sh +++ b/Toolchain/BuildQemu.sh @@ -62,7 +62,7 @@ echo Using $UI_LIB based UI pushd "$DIR/Build/qemu" "$DIR"/Tarballs/$QEMU_VERSION/configure --prefix="$PREFIX" \ - --target-list=aarch64-softmmu,i386-softmmu,x86_64-softmmu \ + --target-list=aarch64-softmmu,x86_64-softmmu \ --enable-$UI_LIB || exit 1 make -j "$MAKEJOBS" || exit 1 make install || exit 1 |