Skip to content

Instantly share code, notes, and snippets.

@legumbre
Created May 31, 2013 15:53
Show Gist options
  • Save legumbre/5685957 to your computer and use it in GitHub Desktop.
Save legumbre/5685957 to your computer and use it in GitHub Desktop.
building qemu-z80 on the mac
# compiling qemu-z80 on MacOS X
# - explicitly tell configure tu use gcc-4.2 since gcc now defaults to llvm-gcc
# - disable docs to enable installing from an out-of-tree build
./configure '--cc=gcc-4.2' '--prefix=/Users/leo/dev/qemu-z80/dist' '--target-list=z80-softmmu' '--disable-sdl' '--disable-kvm' '--disable-xen' '--disable-vnc-tls' '--disable-vnc-sasl' '--disable-curl' '--disable-bluez' '--disable-vde' '--disable-nptl' '--disable-kvm' '--disable-linux-user' '--disable-pthread' '--disable-docs'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment