Advertisement
metalx1000

Compile DOSbox with debugger

Jul 2nd, 2018
850
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.32 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. echo "====Installing needed files===="
  4. sudo apt install ncurses-dev make gcc
  5.  
  6. wget "http://http.debian.net/debian/pool/main/d/dosbox/dosbox_0.74.orig.tar.gz"
  7. tar xvf dosbox_0.74.orig.tar.gz
  8. rm dosbox_0.74.orig.tar.gz
  9. cd dosbox-0.74
  10. autogen.sh
  11. ./configure --enable-debug=heavy
  12. make
  13.  
  14. ./src/dosbox
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement