From 9f2ca93297a8840240af172e287e135ae4e0fd5e Mon Sep 17 00:00:00 2001 From: Vitor K Date: Thu, 13 May 2021 20:20:22 -0300 Subject: [PATCH] Add note about building on ARM --- Building-for-macOS.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Building-for-macOS.md b/Building-for-macOS.md index 36cc9a3..b9f9047 100644 --- a/Building-for-macOS.md +++ b/Building-for-macOS.md @@ -42,4 +42,11 @@ make -j4 A `citra-qt.app` application bundle will now be present under `build/bin/`. Note that this is non-portable and only works on your machine. -For portability of the appbundle between machines please refer to [this script](https://github.com/citra-emu/citra/blob/master/.travis/macos/upload.sh). \ No newline at end of file +For portability of the appbundle between machines please refer to [this script](https://github.com/citra-emu/citra/blob/master/.travis/macos/upload.sh). + +### About building on Apple Silicon machines + +To build Citra targetting MacOS on ARM, the process is largely the same. +A few things to note are: +* Make sure the Homebrew version you have installed is the ARM version +* When running the cmake command, you'll want to use this command instead `cmake .. -DCMAKE_OSX_ARCHITECTURES="arm64" -DCMAKE_BUILD_TYPE=Release` \ No newline at end of file