From 58300142d20ffd187c51867f2b592494cc4d1b98 Mon Sep 17 00:00:00 2001 From: Mehrdad Hessar Date: Tue, 11 May 2021 11:57:06 -0700 Subject: [PATCH 1/2] add python lib --- docker/install/ubuntu_install_qemu.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker/install/ubuntu_install_qemu.sh b/docker/install/ubuntu_install_qemu.sh index 3dee7d86626f..22d0c2d8b292 100755 --- a/docker/install/ubuntu_install_qemu.sh +++ b/docker/install/ubuntu_install_qemu.sh @@ -47,3 +47,6 @@ cd qemu-5.1.0 ./configure --target-list=aarch64-softmmu,arm-softmmu,i386-softmmu,riscv32-softmmu,riscv64-softmmu,x86_64-softmmu make -j2 sudo make install + +# For debugging with qemu +apt-get install libpython3.8 From f467788ffce37f45b91d157c031c6e33c9fc995e Mon Sep 17 00:00:00 2001 From: Mehrdad Hessar Date: Tue, 11 May 2021 14:25:37 -0700 Subject: [PATCH 2/2] fix --- docker/install/ubuntu_install_qemu.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/install/ubuntu_install_qemu.sh b/docker/install/ubuntu_install_qemu.sh index 22d0c2d8b292..0adc81b207d7 100755 --- a/docker/install/ubuntu_install_qemu.sh +++ b/docker/install/ubuntu_install_qemu.sh @@ -49,4 +49,4 @@ make -j2 sudo make install # For debugging with qemu -apt-get install libpython3.8 +apt-get -y install libpython3.8