From 30b4e68e1111ab870fddd627c56b83e9cd709632 Mon Sep 17 00:00:00 2001 From: Randall Winkhart Date: Sun, 1 Feb 2026 20:52:30 -0500 Subject: [PATCH] Use GOOS=ios for iOS --- xcode/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xcode/Makefile b/xcode/Makefile index 64500eb..1e10114 100644 --- a/xcode/Makefile +++ b/xcode/Makefile @@ -6,7 +6,7 @@ clean: ios-hw: clean mkdir -p $(BUILD_DIR) CGO_ENABLED=1 \ - GOOS=darwin \ + GOOS=ios \ GOARCH=arm64 \ GOARM64=v8.3,crypto \ SDK=iphoneos \ @@ -19,7 +19,7 @@ ios-hw: clean ios-sim: clean mkdir -p $(BUILD_DIR) CGO_ENABLED=1 \ - GOOS=darwin \ + GOOS=ios \ GOARCH=arm64 \ GOARM64=v8.4,crypto \ SDK=iphonesimulator \