Skip to content

Instantly share code, notes, and snippets.

@cobalt2727
Last active February 25, 2022 14:58
Show Gist options
  • Save cobalt2727/f3d6397ad0b5c9f484e15defbe05d7b6 to your computer and use it in GitHub Desktop.
Save cobalt2727/f3d6397ad0b5c9f484e15defbe05d7b6 to your computer and use it in GitHub Desktop.
Dolphin Emulator build script for those fancy new M1 Macs
echo "Enter your password when prompted, and answer any yes/no prompts."
echo "Scripter: https://github.com/cobalt2727/"
echo "Credits: https://www.reddit.com/r/macgaming/comments/kxpx86/instructions_to_build_dolphin_emulator_mac_m1/"
echo "This may take some time, so be patient..."
sleep 10
sudo /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew install git
brew install qt
brew install cmake
brew install SDL2
cd Downloads
git clone https://github.com/skylersaleh/dolphin
cd dolphin
git pull
mkdir build
cd build
echo "The build is starting - I don't actually own a Mac so I don't know how long this will take ngl"
sleep 2
../BuildMacOSUniversalBinary.py
echo "Done! Open Downloads in Finder,"
echo "then navigate to dolphin/build/arm/Binaries and your"
echo "Dolphin build should be there. To update, ideally you should"
echo "just be able to re-run this script without any changes. Enjoy!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment