This guide explains how to set up Citra on macOS by either downloading a pre-compiled version or building it yourself from source.
MacOS
File Name | Citra MacOS Universal |
File Size | 59.6MB |
Version | r608383e |
Developer | Citra Team |
Release Date | 29 September 2024 |
MacOS
File Name | Citra MacOS Universal |
File Size | 59.7MB |
Version | 2104 Nightly |
Developer | Citra Team |
Release Date | 4 March 2024 |
Install the necessary tools and dependencies:
brew install cmake
Set Up the Build Environment
mkdir build
cd build
Generate Build Files with CMake
cmake ..
Compile the Emulator
make -j4
build/bin/
directory. This version is non-portable and will only work on your machine.
make bundle
build/bundle/
folder.If you’re working on an Apple Silicon Mac or need to cross-compile, here are the key adjustments:
cmake .. -DCMAKE_OSX_ARCHITECTURES="arm64"
To target x86_64 from ARM, use:
cmake .. -DCMAKE_OSX_ARCHITECTURES="x86_64"
By following these instructions, you can successfully install or build Citra on macOS, whether you’re using a pre-compiled version or compiling it yourself!