Skip to content

Commit

Permalink
fix:Correcting the way of deleting the qemu-build file (#75)
Browse files Browse the repository at this point in the history
Signed-off-by: yishangzhang <[email protected]>
  • Loading branch information
yishangzhang authored May 30, 2023
1 parent f61fea9 commit a0dd931
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Fedora-35/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ RUN dnf \
cd qemu && \
./configure --target-list=x86_64-softmmu,arm-softmmu,aarch64-softmmu,loongarch64-softmmu --enable-gtk && \
make install -j $(nproc) && \
rm -rf qemu-build && \
cd .. && \
rm -rf qemu && \
dnf \
--assumeyes \
remove \
Expand Down
1 change: 1 addition & 0 deletions Fedora-35/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ These images include:
- nasm 2.15.05
- Python 3.10
- Qemu 8.0.0 (x86, arm ,aarch64, loongarch)

3 changes: 2 additions & 1 deletion Fedora-37/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,8 @@ RUN dnf \
cd qemu && \
./configure --target-list=x86_64-softmmu,arm-softmmu,aarch64-softmmu,loongarch64-softmmu --enable-gtk && \
make install -j $(nproc) && \
rm -rf qemu-build && \
cd .. && \
rm -rf qemu && \
dnf \
--assumeyes \
remove \
Expand Down
1 change: 1 addition & 0 deletions Ubuntu-20/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ RUN apt-get update && apt-get install --yes --no-install-recommends \
tar -xf qemu-7.1.0.tar.xz --strip-components=1 && \
./configure --target-list=x86_64-softmmu,arm-softmmu,aarch64-softmmu,riscv32-softmmu,riscv32-linux-user,riscv64-linux-user,riscv64-softmmu && \
make install -j $(nproc) && \
cd .. && \
rm -rf qemu-build && \
apt remove --yes \
ninja-build
Expand Down
1 change: 1 addition & 0 deletions Ubuntu-22/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ RUN apt-get update && apt-get install --yes --no-install-recommends \
tar -xf qemu-7.1.0.tar.xz --strip-components=1 && \
./configure --target-list=x86_64-softmmu,arm-softmmu,aarch64-softmmu,riscv32-softmmu,riscv32-linux-user,riscv64-linux-user,riscv64-softmmu && \
make install -j $(nproc) && \
cd .. && \
rm -rf qemu-build && \
apt remove --yes \
ninja-build
Expand Down

0 comments on commit a0dd931

Please sign in to comment.