The `--recursive` option automatically clones the required Git submodules too.
### Building unicorn:
```
cd externals
git clone https://github.com/yuzu-emu/unicorn
cd unicorn
UNICORN_ARCHS=aarch64 ./make.sh
export UNICORNDIR=$(pwd)
cd ../..
```
For platforms which use python3 by default, you manually have to configure `UNICORN_QEMU_FLAGS` before running `./make.sh`. Example: `UNICORN_QEMU_FLAGS="--python=/usr/bin/python2" UNICORN_ARCHS=aarch64 ./make.sh`
### Building yuzu in Debug Mode (Slow):
**Using gcc:**
```
mkdir build && cd build
cmake ../ -DUSE_SYSTEM_CURL=1
cmake ../
make
sudo make install
```
@ -73,7 +56,7 @@ mkdir build && cd build
cmake -DCMAKE_CXX_COMPILER=clang++-3.8 \
-DCMAKE_C_COMPILER=clang-3.8 \
-DCMAKE_CXX_FLAGS="-O2 -g -stdlib=libc++" \
-DUSE_SYSTEM_CURL=1 ..
..
make
sudo make install (currently doesn't work, needs to be fixed)