From 1613d0ea91c78f5c798d77c048addf0c0e1ff885 Mon Sep 17 00:00:00 2001 From: James Rowe Date: Tue, 16 Jan 2018 20:06:40 -0700 Subject: [PATCH] Don't build dev builds as a fat binary (causes issues when linking against unicorn because nothing is simple in life) --- Building-for-macOS.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Building-for-macOS.md b/Building-for-macOS.md index dc9d7c4..de9cb79 100644 --- a/Building-for-macOS.md +++ b/Building-for-macOS.md @@ -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 ```