From a92b0d39e8c20983ddade1b2c941ae1796939f3c Mon Sep 17 00:00:00 2001 From: Jackson Coxson Date: Wed, 9 Jul 2025 21:38:21 -0600 Subject: [PATCH] Use correct cargo flag for apple build --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index 4b13461..c80cac0 100644 --- a/justfile +++ b/justfile @@ -28,7 +28,7 @@ xcframework: apple-build apple-build: # requires a Mac # iOS device build BINDGEN_EXTRA_CLANG_ARGS="--sysroot=$(xcrun --sdk iphoneos --show-sdk-path)" \ - cargo build --release --target aarch64-apple-ios --feature obfuscate + cargo build --release --target aarch64-apple-ios --features obfuscate # iOS Simulator (arm64) BINDGEN_EXTRA_CLANG_ARGS="--sysroot=$(xcrun --sdk iphonesimulator --show-sdk-path)" \