Basilisk II and SheepShaver Macintosh emulators
Go to file
kanjitalk755 a8bb4790df
Merge pull request #12 from spolsley/mutex_test
SDL mutex deadlock and video fix, try 2
2019-02-27 15:09:06 +09:00
BasiliskII deadlock and video fix comments tidied 2019-02-26 21:02:57 -06:00
cxmon remove stray non-ascii chars at start of mon_cmd.cpp 2017-12-10 11:27:16 -05:00
SheepShaver SDL2.framework relative path -> absolute path 2019-02-25 18:39:25 +09:00
.gitignore added gitignore settings for Jetbrains' IDEs 2017-08-01 18:07:23 -04:00
.travis.yml Add Travis CI configuration file and README.md status. 2017-12-28 20:06:35 -05:00
README.md introduce my repo 2018-07-01 22:50:33 +09:00

BasiliskII

macOS 64-bit ---
Linux 32-bit JIT
MinGW 32-bit JIT

SheepShaver

macOS 64-bit JIT
Linux 32-bit JIT
MinGW 32-bit ---

How To Build

These builds need to be installed SDL2 framework/library.

BasiliskII

macOS
  1. Open BasiliskII/src/MacOSX/BasiliskII.xcodeproj
  2. Set Build Configuration to Release
  3. Build
Linux(x86)
$ cd macemu/BasiliskII/src/Unix
$ ./autogen.sh
$ make
MinGW32/MSYS
$ cd macemu/BasiliskII/src/Windows
$ ../Unix/autogen.sh
$ make

SheepShaver

macOS
  1. Open SheepShaver/src/MacOSX/SheepShaver_Xcode8.xcodeproj
  2. Set Build Configuration to Release
  3. Build
Linux(x86)
$ cd macemu/SheepShaver
$ make links
$ cd src/Unix
$ ./autogen.sh
$ make
MinGW32/MSYS
$ cd macemu/SheepShaver
$ make links
$ cd src/Windows
$ ../Unix/autogen.sh
$ make