I want to try RISC-V Julia on my laptop which have x86-64 architecture. How to run RISC-V Julia on other architectures also?
You can use QEMU (that’s what also Docker uses under the hood to run containers built for foreign architectures)
2 Likes
Which of the following QEMU would be good for my old 2GB RAM laptop? Will it support RISC-V ?
- qemu-base
- qemu-desktop
- qemu-full
It seems that you would need qemu-system-riscv
https://archlinux.org/packages/extra/x86_64/qemu-system-riscv/
As I understand it, qemu in system mode requires an operating system. So, since you want to use qemu with so little RAM, it may be better to run qemu in user mode. To do so, it appears that it needs to qemu-user-static
or qemu-user
.
https://archlinux.org/packages/extra/x86_64/qemu-user-static/
https://archlinux.org/packages/extra/x86_64/qemu-user/
This blog post may help you.
So you mean that i should choose : 1. qemu-base ?