Don't build dev builds as a fat binary (causes issues when linking against unicorn because nothing is simple in life)

James Rowe 2018-01-16 20:06:40 -07:00
parent b3045b0d63
commit 1613d0ea91
1 changed files with 1 additions and 3 deletions

@ -30,11 +30,9 @@ Now you can generate makefiles for the build:
export MACOSX_DEPLOYMENT_TARGET=10.9
mkdir build
cd build
cmake .. -DCMAKE_OSX_ARCHITECTURES="x86_64;x86_64h" -DCMAKE_BUILD_TYPE=Release
cmake .. -DCMAKE_BUILD_TYPE=Release
```
This builds a fat binary that has slices targeting early and late x64 machines.
### Building yuzu
```