Skip to content

Commit

Permalink
feat(qemu-aarch64): add qemu-aarch64-virt install to Dockerfile
Browse files Browse the repository at this point in the history
Signed-off-by: Diogo21Costa <[email protected]>
  • Loading branch information
Diogo21Costa authored and josecm committed Nov 9, 2023
1 parent d13edbb commit f586596
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,13 @@ RUN git clone https://github.com/qemu/qemu.git /opt/qemu-riscv64-virt --depth 1
cd /opt/qemu-riscv64-virt/ && ./configure --target-list=riscv64-softmmu --enable-slirp && \
make -j$(nproc) && \
make install

# Add qemu-aarch64-virt
RUN git clone https://github.com/qemu/qemu.git /opt/qemu-aarch64-virt --depth 1 --branch v7.2.0 && \
cd /opt/qemu-aarch64-virt && ./configure --target-list=aarch64-softmmu --enable-slirp && \
make -j$(nproc) && \
make install

# setup environment
ENV PATH=$PATH:/opt/aarch64-toolchain/bin
ENV PATH=$PATH:/opt/aarch32-toolchain/bin
Expand Down

0 comments on commit f586596

Please sign in to comment.