diff options
author | MerryMage <MerryMage@users.noreply.github.com> | 2018-01-27 15:36:38 +0000 |
---|---|---|
committer | MerryMage <MerryMage@users.noreply.github.com> | 2018-01-27 15:36:38 +0000 |
commit | 6755c0d1cfb61e752cee7c2eb062fd09b63246f0 (patch) | |
tree | 460f25767bed58f10765c88b0ff0b9a751a5b0de /.travis/macos/build.sh | |
parent | d904b0db588ac4683ec846d584bccba979c441dd (diff) |
travis: Remove CMAKE_OSX_ARCHITECTURES argument
Unicorn only builds a x86_64 library, without a x86_64h slice. We can't link against
x86_64-only in this manner for static libraries.
Diffstat (limited to '.travis/macos/build.sh')
-rwxr-xr-x | .travis/macos/build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis/macos/build.sh b/.travis/macos/build.sh index 177e8ac3b..1d0d120ac 100755 --- a/.travis/macos/build.sh +++ b/.travis/macos/build.sh @@ -8,7 +8,7 @@ export UNICORNDIR=$(pwd)/externals/unicorn mkdir build && cd build cmake --version -cmake .. -DYUZU_BUILD_UNICORN=ON -DCMAKE_OSX_ARCHITECTURES="x86_64;x86_64h" -DCMAKE_BUILD_TYPE=Release +cmake .. -DYUZU_BUILD_UNICORN=ON -DCMAKE_BUILD_TYPE=Release make -j4 ctest -VV -C Release |