File Name | Citra MacOS Universal |
File Size | 59.6MB |
Version | r608383e |
Developer | |
Release Date | 29 September 2024 |
Download |
File Name | Citra MacOS Universal |
File Size | 59.7MB |
Version | 2104 Nightly |
Developer | Citra Team |
Release Date | 4 March 2024 |
Download |
After the download, extract the file.
Upon first launch you will receive an error as shown below. To bypass and open Citra, simply click on “Show in Finder” and control-click open. You have successfully installed Citra on MAC!
It’s recommended that you use homebrew to install dependencies. You’ll need to download and install the following to build Citra:
brew install cmake)Create a build folder and generate makefiles for the build:
mkdir build
cd build
cmake ..
make -j4A citra-qt.app application bundle will now be present under build/bin/. Note that this is non-portable and only works on your machine. You can create distributable bundles as well by running make bundle and checking the output in build/bundle/.
To build Citra targeting macOS on ARM, the process is largely the same. A few things to note are:
cmake .. -DCMAKE_OSX_ARCHITECTURES="arm64"
cmake .. -DCMAKE_OSX_ARCHITECTURES="x86_64"