Basilisk II and SheepShaver Macintosh emulators
Go to file
2021-08-01 10:06:15 +09:00
BasiliskII fix for SDL 2.0.14 2021-08-01 09:55:43 +09:00
cxmon remove stray non-ascii chars at start of mon_cmd.cpp 2017-12-10 11:27:16 -05:00
SheepShaver reverted vm_alloc.* 2021-06-24 14:27:39 +09:00
.gitignore Add entitlement for Hardened Runtime 2019-07-07 01:36:58 +09:00
README.md Update README.md 2021-08-01 10:06:15 +09:00

BasiliskII

macOS     x86_64 JIT / arm64 non-JIT
Linux x86 x86_64 JIT
MinGW x86        JIT

SheepShaver

macOS     x86_64 JIT / arm64 non-JIT
Linux x86 x86_64 JIT
MinGW x86        JIT

How To Build

These builds need to be installed SDL2.0.14+ framework/library.

BasiliskII

macOS

preparation:

Download gmp-6.2.1.tar.xz from https://gmplib.org.

$ cd ~/Downloads
$ tar xf gmp-6.2.1.tar.xz
$ cd gmp-6.2.1
$ ./configure --disable-shared
$ make
$ make check
$ sudo make install

Download mpfr-4.1.0.tar.xz from https://www.mpfr.org.

$ cd ~/Downloads
$ tar xf mpfr-4.1.0.tar.xz
$ cd mpfr-4.1.0
$ ./configure --disable-shared
$ make
$ make check
$ sudo make install

On an Intel Mac, change the configure command as follows:

CFLAGS="-arch arm64" CXXFLAGS="$CFLAGS" ./configure -host=aarch64-apple-darwin --disable-shared 

(from https://github.com/kanjitalk755/macemu/pull/96)

build:

  1. Open BasiliskII/src/MacOSX/BasiliskII.xcodeproj
  2. Set Build Configuration to Release
  3. Build

or same as Linux (x86_64 only)

Linux(x86/x86_64)
$ cd macemu/BasiliskII/src/Unix
$ ./autogen.sh
$ make
MinGW32/MSYS2
$ 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

or same as Linux (x86_64 only)

Linux(x86/x86_64)
$ cd macemu/SheepShaver/src/Unix
$ ./autogen.sh
$ make
MinGW32/MSYS2
$ cd macemu/SheepShaver
$ make links
$ cd src/Windows
$ ../Unix/autogen.sh
$ make

https://github.com/kanjitalk755/macemu/blob/master/SheepShaver/doc/Linux/gnome_keybindings.txt

(from https://github.com/kanjitalk755/macemu/issues/59)