fix: remove 32-bit macOS build target and update CI to only build 64-bit
Remove the i386 architecture from the libuv xcodebuild command in util/build_libuv.py to eliminate deprecation warnings from XCode. Update the Travis CI configuration to drop the ci_32 build target, leaving only ci_64 for macOS builds. Also add XCBuildData cache directory to .gitignore.
This commit is contained in:
+1
-1
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user