From b103290f077ed460b4b3ec36bf61e1861dc3f328 Mon Sep 17 00:00:00 2001 From: Merry Date: Sun, 14 Jan 2018 11:27:24 +0000 Subject: [PATCH] Updated Building for macOS (markdown) --- Building-for-macOS.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/Building-for-macOS.md b/Building-for-macOS.md index 12f12c0..73f7299 100644 --- a/Building-for-macOS.md +++ b/Building-for-macOS.md @@ -4,7 +4,7 @@ It's recommended that you use [homebrew](http://brew.sh/) to install dependencie You'll need to download and install the following to build yuzu: * [pkg-config](https://www.freedesktop.org/wiki/Software/pkg-config/) (`brew install pkgconfig`) -* [SDL2](https://www.libsdl.org/download-2.0.php) (`brew install sdl2`, or download [this dmg](https://www.libsdl.org/release/SDL2-2.0.4.dmg)) +* [SDL2](https://www.libsdl.org/download-2.0.php) (`brew install sdl2`) * [Qt5](https://www.qt.io/download/) (`brew install qt5`) (**Note:** If you have Qt4 installed, then you will need to remove it before building. `brew unlink qt4`) * [CMake](https://cmake.org/) (`brew install cmake`) * A recent version of Xcode and the Xcode command line tools @@ -17,6 +17,17 @@ cd yuzu git submodule update --init --recursive ``` +### Building unicorn: + +``` +pushd externals +git clone https://github.com/yuzu-emu/unicorn +cd unicorn +UNICORN_ARCHS=aarch64 ./make.sh macos-universal-no +export UNICORNDIR=$(pwd) +popd +``` + ### Using CMake: First of all, you have to tell CMake where your Qt5 is installed (add this line to ~/.profile if you want to make this permanent.):