Created
May 31, 2013 15:53
-
-
Save legumbre/5685957 to your computer and use it in GitHub Desktop.
building qemu-z80 on the mac
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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