diff options
| author | 2018-01-21 13:57:14 +0000 | |
|---|---|---|
| committer | 2018-01-21 13:59:43 +0000 | |
| commit | add8d40f3f0295f3af5f5f945fcf770ace3eaca3 (patch) | |
| tree | 0be830f62b67c7896dff931279067d70bdc4e133 | |
| parent | CMakeLists: Do not look for system Unicorn by default (diff) | |
| download | yuzu-add8d40f3f0295f3af5f5f945fcf770ace3eaca3.tar.gz yuzu-add8d40f3f0295f3af5f5f945fcf770ace3eaca3.tar.xz yuzu-add8d40f3f0295f3af5f5f945fcf770ace3eaca3.zip | |
CMakeLists: Fix unicorn build for macOS developers with x86_64-only systems
Some of us do not have any i386 libraries required to build x86-32 universal libraries.
| -rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 4ecae84b3..5e904a53f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
| @@ -250,7 +250,7 @@ if (YUZU_USE_BUNDLED_UNICORN) | |||
| 250 | find_package(PythonInterp 2.7 REQUIRED) | 250 | find_package(PythonInterp 2.7 REQUIRED) |
| 251 | 251 | ||
| 252 | add_custom_command(OUTPUT ${LIBUNICORN_LIBRARY} | 252 | add_custom_command(OUTPUT ${LIBUNICORN_LIBRARY} |
| 253 | COMMAND ${CMAKE_COMMAND} -E env UNICORN_ARCHS="aarch64" PYTHON="${PYTHON_EXECUTABLE}" /bin/sh make.sh | 253 | COMMAND ${CMAKE_COMMAND} -E env UNICORN_ARCHS="aarch64" PYTHON="${PYTHON_EXECUTABLE}" /bin/sh make.sh macos-universal-no |
| 254 | WORKING_DIRECTORY ${UNICORN_PREFIX} | 254 | WORKING_DIRECTORY ${UNICORN_PREFIX} |
| 255 | ) | 255 | ) |
| 256 | # ALL makes this custom target build every time | 256 | # ALL makes this custom target build every time |