1
0
forked from Mirror/wren

Merge pull request #612 from iwillspeak/osx-buildfixes

Disable 32 bit macOS Build
This commit is contained in:
Sven Bergström
2019-02-11 23:33:05 -08:00
committed by GitHub
3 changed files with 5 additions and 2 deletions

3
.gitignore vendored
View File

@ -39,3 +39,6 @@ ipch/
*.user
*.userosscache
*.sln.docstates
# macOS XCode build cache
deps/libuv/build/XCBuildData/

View File

@ -6,7 +6,7 @@ compiler:
- gcc
- clang
env:
- WREN_OPTIONS="" CI_ARCHS="ci_32 ci_64"
- WREN_OPTIONS="" CI_ARCHS="ci_64"
- WREN_OPTIONS="-DWREN_NAN_TAGGING=0" CI_ARCHS="ci_64"
# Automatically build and deploy docs.

View File

@ -26,7 +26,7 @@ def build_libuv_mac():
run([
"xcodebuild",
# Build a 32-bit + 64-bit universal binary:
"ARCHS=i386 x86_64", "ONLY_ACTIVE_ARCH=NO",
"ARCHS=x86_64", "ONLY_ACTIVE_ARCH=NO",
"BUILD_DIR=out",
"-project", LIB_UV_DIR + "/uv.xcodeproj",
"-configuration", "Release",