Last active
July 3, 2019 13:47
-
-
Save theodric/a23ebffc5bb824b3aab50058c0d7bccf to your computer and use it in GitHub Desktop.
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
| DEBIAN | |
| #get latest tarball and unpack | |
| http://vice-emu.sourceforge.net/index.html#download | |
| #install depends | |
| apt install libsdl1.2-dev | |
| #build with SDL UI enabled | |
| ./configure --enable-ethernet --enable-sdlui --with-png --enable-rs232 [ --without-x ] | |
| make | |
| sudo make install | |
| macOS doesn't work | |
| brew install zlib lzlib sdl2 sdl | |
| # opt: symlink sdl2-config to sdl-config | |
| export LDFLAGS="-L/usr/local/opt/zlib/lib" | |
| export CPPFLAGS="-I/usr/local/opt/zlib/include" | |
| ./autogen.sh | |
| ./configure --enable-ethernet --enable-sdlui --with-png --enable-rs232 --without-x | |
| make -j9 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment