Last active
February 25, 2022 14:58
-
-
Save cobalt2727/f3d6397ad0b5c9f484e15defbe05d7b6 to your computer and use it in GitHub Desktop.
Dolphin Emulator build script for those fancy new M1 Macs
This file contains 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
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