Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 532 Bytes

README.md

File metadata and controls

23 lines (19 loc) · 532 Bytes

SimpleMipsWebServer

[WIP]

To install the required packages . assuming you're on Linux and a distro that uses apt

sudo apt install gcc-mips-linux-gnu binutils-mips-linux-gnu qemu-user qemu-user-static

To run the server

make && qemu-mips ./main

To debug the server

make && qemu-mips -g 1234 ./main
gdb-multiarch --ex 'target remote :1234' --ex 'file ./main'

or if you're using GEF you can

gdb-multiarch --ex 'gef-remote --qemu-user --qemu-binary ./main 127.0.0.1 1234'