You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have completed docker image. firstly install docker by this command sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
i have install the gcc tool chain and spike, Now pull the docker image from docker hub. latif040/rvv_gcc_tool_chain:1.0
then check docker image by this command docker images
and finally run this command sudo docker run --rm -it latif040/rvv_gcc_tool_chain:1.0
now give the assembly file to docker image. firstly save the file in same directory(home/app) touch file name.s open the file in editor vim f1.s then to generate object file riscv32-unknown-elf-gcc -c -march=rv32imv -o f1.o f1.s and finally to get machine code riscv32-unknown-elf-objdump -d test.o | awk '{print $2}' | grep -E '^[0-9a-f]+$'
To Create a Docker Image and Container for Verification.
Image should have:
The text was updated successfully, but these errors were encountered: