1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:38:11 +00:00

Toolchain: Build the x86_64 target in addition to i386 in BuildQemu.sh

This commit is contained in:
Idan Horowitz 2021-06-26 14:33:37 +03:00 committed by Andreas Kling
parent 9683b10aec
commit 5b909a94e7

View file

@ -64,7 +64,7 @@ echo Using $UI_LIB based UI
pushd "$DIR/Build/$ARCH"
pushd qemu
"$DIR"/Tarballs/$QEMU_VERSION/configure --prefix="$PREFIX" \
--target-list=i386-softmmu \
--target-list=i386-softmmu,x86_64-softmmu \
--enable-$UI_LIB || exit 1
make -j "$MAKEJOBS" || exit 1
make install || exit 1